Home
last modified time | relevance | path

Searched refs:byte (Results 1 – 25 of 250) sorted by relevance

12345678910

/u-boot/arch/sh/lib/
A Dudivsi3_i4i.S314 .byte 0
315 .byte 1
316 .byte 0
449 .byte 0
452 .byte 0
458 .byte 0
470 .byte 0
494 .byte 0
495 .byte 8
542 .byte 0
[all …]
A Dashrsi3.S54 .byte ashrsi3_0-ashrsi3_table
55 .byte ashrsi3_1-ashrsi3_table
56 .byte ashrsi3_2-ashrsi3_table
57 .byte ashrsi3_3-ashrsi3_table
58 .byte ashrsi3_4-ashrsi3_table
59 .byte ashrsi3_5-ashrsi3_table
60 .byte ashrsi3_6-ashrsi3_table
61 .byte ashrsi3_7-ashrsi3_table
62 .byte ashrsi3_8-ashrsi3_table
63 .byte ashrsi3_9-ashrsi3_table
[all …]
A Dlshrsi3.S52 .byte __lshrsi3_0-__lshrsi3_table
53 .byte __lshrsi3_1-__lshrsi3_table
54 .byte __lshrsi3_2-__lshrsi3_table
55 .byte __lshrsi3_3-__lshrsi3_table
56 .byte __lshrsi3_4-__lshrsi3_table
57 .byte __lshrsi3_5-__lshrsi3_table
58 .byte __lshrsi3_6-__lshrsi3_table
59 .byte __lshrsi3_7-__lshrsi3_table
60 .byte __lshrsi3_8-__lshrsi3_table
61 .byte __lshrsi3_9-__lshrsi3_table
[all …]
A Dashlsi3.S52 .byte __ashlsi3_0-__ashlsi3_table
53 .byte __ashlsi3_1-__ashlsi3_table
54 .byte __ashlsi3_2-__ashlsi3_table
55 .byte __ashlsi3_3-__ashlsi3_table
56 .byte __ashlsi3_4-__ashlsi3_table
57 .byte __ashlsi3_5-__ashlsi3_table
58 .byte __ashlsi3_6-__ashlsi3_table
59 .byte __ashlsi3_7-__ashlsi3_table
60 .byte __ashlsi3_8-__ashlsi3_table
61 .byte __ashlsi3_9-__ashlsi3_table
[all …]
/u-boot/arch/x86/cpu/
A Dstart16.S83 .byte 0x00 /* base_middle */
84 .byte 0x00 /* access */
86 .byte 0x00 /* base_high */
91 .byte 0x00 /* base_middle */
92 .byte 0x00 /* access */
94 .byte 0x00 /* base_high */
105 .byte 0x00 /* base_middle */
106 .byte 0x9b /* access */
108 .byte 0x00 /* base_high */
120 .byte 0x93 /* access */
[all …]
A Dstart.S276 .byte 0x00 /* base_middle */
277 .byte 0x00 /* access */
279 .byte 0x00 /* base_high */
284 .byte 0x00 /* base_middle */
285 .byte 0x00 /* access */
287 .byte 0x00 /* base_high */
298 .byte 0x00 /* base_middle */
299 .byte 0x9b /* access */
301 .byte 0x00 /* base_high */
313 .byte 0x93 /* access */
[all …]
/u-boot/arch/arm/lib/
A Dcrt0_aarch64_efi.S41 .byte 0x02 /* MajorLinkerVersion */
42 .byte 0x14 /* MinorLinkerVersion */
93 .byte 0
94 .byte 0 /* end of 0 padding of section name */
109 .byte 0
110 .byte 0
111 .byte 0 /* end of 0 padding of section name */
126 .byte 0
127 .byte 0
128 .byte 0 /* end of 0 padding of section name */
A Dcrt0_arm_efi.S39 .byte 0x02 /* MajorLinkerVersion */
40 .byte 0x14 /* MinorLinkerVersion */
91 .byte 0
92 .byte 0 /* end of 0 padding of section name */
104 .byte 0
105 .byte 0
106 .byte 0 /* end of 0 padding of section name */
/u-boot/drivers/ddr/marvell/a38x/
A Dddr3_training_db.c97 u8 byte; in pattern_table_get_killer_word_4() local
117 return byte | (byte << 8) | (byte << 16) | (byte << 24); in pattern_table_get_killer_word_4()
616 return byte | (byte << 8) | (byte << 16) | (byte << 24); in pattern_table_get_killer_word()
651 byte = ~byte; in pattern_table_get_sso_full_xtalk_word()
653 return byte | (byte << 8) | (byte << 16) | (byte << 24); in pattern_table_get_sso_full_xtalk_word()
662 byte = 0; in pattern_table_get_sso_xtalk_free_word()
664 return byte | (byte << 8) | (byte << 16) | (byte << 24); in pattern_table_get_sso_xtalk_free_word()
688 byte = ~byte; in pattern_table_get_sso_full_xtalk_word16()
690 return byte | (byte << 8) | ((~byte) << 16) | ((~byte) << 24); in pattern_table_get_sso_full_xtalk_word16()
698 return (byte << 16) | (byte << 24); in pattern_table_get_sso_xtalk_free_word16()
[all …]
A Dmv_ddr_spd.c18 unsigned int byte, bit, start_cl; in mv_ddr_spd_supported_cls_calc() local
22 for (byte = 20; byte < 23; byte++) { in mv_ddr_spd_supported_cls_calc()
24 if (spd_data->all_bytes[byte] & (1 << bit)) in mv_ddr_spd_supported_cls_calc()
25 mv_ddr_spd_supported_cls[(byte - 20) * 8 + bit] = start_cl + (byte - 20) * 8 + bit; in mv_ddr_spd_supported_cls_calc()
27 mv_ddr_spd_supported_cls[(byte - 20) * 8 + bit] = 0; in mv_ddr_spd_supported_cls_calc()
31 for (byte = 23, bit = 0; bit < 6; bit++) { in mv_ddr_spd_supported_cls_calc()
32 if (spd_data->all_bytes[byte] & (1 << bit)) in mv_ddr_spd_supported_cls_calc()
33 mv_ddr_spd_supported_cls[(byte - 20) * 8 + bit] = start_cl + (byte - 20) * 8 + bit; in mv_ddr_spd_supported_cls_calc()
35 mv_ddr_spd_supported_cls[(byte - 20) * 8 + bit] = 0; in mv_ddr_spd_supported_cls_calc()
/u-boot/fs/yaffs2/
A Dyaffs_ecc.c152 unsigned byte; in yaffs_ecc_correct() local
155 bit = byte = 0; in yaffs_ecc_correct()
158 byte |= 0x80; in yaffs_ecc_correct()
160 byte |= 0x40; in yaffs_ecc_correct()
162 byte |= 0x20; in yaffs_ecc_correct()
164 byte |= 0x10; in yaffs_ecc_correct()
166 byte |= 0x08; in yaffs_ecc_correct()
168 byte |= 0x04; in yaffs_ecc_correct()
170 byte |= 0x02; in yaffs_ecc_correct()
172 byte |= 0x01; in yaffs_ecc_correct()
[all …]
/u-boot/drivers/misc/
A Dnpcm_otp.c366 u32 byte; in npcm_otp_majority_rule_ecc_encode() local
371 for (byte = 0; byte < decoded_size; byte++) { in npcm_otp_majority_rule_ecc_encode()
373 bit_val = (datain[byte] >> bit) & 0x01; in npcm_otp_majority_rule_ecc_encode()
376 dataout[byte] |= (1 << bit); in npcm_otp_majority_rule_ecc_encode()
380 dataout[byte] &= ~(1 << bit); in npcm_otp_majority_rule_ecc_encode()
403 u32 byte; in fuse_program_data() local
410 for (byte = 0; byte < size; byte++) { in fuse_program_data()
413 val = data[byte]; in fuse_program_data()
417 rc = npcm_otp_program_byte(arr, word + byte, data[byte]); in fuse_program_data()
423 npcm_otp_read_byte((u32)bank, byte, &val); in fuse_program_data()
[all …]
/u-boot/board/qualcomm/dragonboard820c/
A Dhead.S29 .byte 0x41 /* Magic number, "ARM\x64" */
30 .byte 0x52
31 .byte 0x4d
32 .byte 0x64
/u-boot/arch/arm/mach-nexell/include/mach/
A Dboot0.h30 .byte 'N' /* 0x1FC: "NSIH" signature */
31 .byte 'S'
32 .byte 'I'
33 .byte 'H'
/u-boot/tools/
A Dvybridimage.c40 static uint8_t vybridimage_sw_ecc(uint8_t byte) in vybridimage_sw_ecc() argument
42 uint8_t bit0 = (byte & (1 << 0)) ? 1 : 0; in vybridimage_sw_ecc()
43 uint8_t bit1 = (byte & (1 << 1)) ? 1 : 0; in vybridimage_sw_ecc()
44 uint8_t bit2 = (byte & (1 << 2)) ? 1 : 0; in vybridimage_sw_ecc()
45 uint8_t bit3 = (byte & (1 << 3)) ? 1 : 0; in vybridimage_sw_ecc()
46 uint8_t bit4 = (byte & (1 << 4)) ? 1 : 0; in vybridimage_sw_ecc()
47 uint8_t bit5 = (byte & (1 << 5)) ? 1 : 0; in vybridimage_sw_ecc()
48 uint8_t bit6 = (byte & (1 << 6)) ? 1 : 0; in vybridimage_sw_ecc()
49 uint8_t bit7 = (byte & (1 << 7)) ? 1 : 0; in vybridimage_sw_ecc()
/u-boot/board/socrates/
A Dnand.c16 static void sc_nand_write_byte(struct mtd_info *mtd, u_char byte);
37 static void sc_nand_write_byte(struct mtd_info *mtd, u_char byte) in sc_nand_write_byte() argument
39 sc_nand_write_buf(mtd, (const uchar *)&byte, sizeof(byte)); in sc_nand_write_byte()
66 u8 byte; in sc_nand_read_byte() local
67 sc_nand_read_buf(mtd, (uchar *)&byte, sizeof(byte)); in sc_nand_read_byte()
68 return byte; in sc_nand_read_byte()
/u-boot/arch/riscv/lib/
A Dcrt0_riscv_efi.S64 .byte 0x02 /* MajorLinkerVersion */
65 .byte 0x14 /* MinorLinkerVersion */
130 .byte 0
131 .byte 0 /* end of 0 padding of section name */
144 .byte 0
145 .byte 0
146 .byte 0 /* end of 0 padding of section name */
/u-boot/tools/binman/test/
A D180_section_pad.dts10 pad-byte = <0x26>;
14 /* Padding for the section uses the 0x26 pad byte */
18 /* Set the padding byte for entries, i.e. u-boot */
19 pad-byte = <0x21>;
A D088_extend_size.dts9 fill-byte = [61];
17 pad-byte = <0x62>;
29 fill-byte = [63];
39 fill-byte = [64];
A D181_section_align.dts10 pad-byte = <0x26>;
17 /* Padding for the section uses the 0x26 pad byte */
21 /* Set the padding byte for entries, i.e. u-boot */
22 pad-byte = <0x21>;
A D055_sections.dts10 pad-byte = <0x26>;
15 pad-byte = <0x21>;
22 pad-byte = <0x61>;
A D056_name_prefix.dts10 pad-byte = <0x26>;
16 pad-byte = <0x21>;
24 pad-byte = <0x61>;
A D060_fdt_update.dts9 pad-byte = <0x26>;
15 pad-byte = <0x21>;
23 pad-byte = <0x61>;
A D101_sections_offset.dts10 pad-byte = <0x26>;
16 pad-byte = <0x21>;
23 pad-byte = <0x61>;
/u-boot/doc/usage/cmd/
A Dcmp.rst17 four byte (32-bit) values. By appending .b, .w, .l, .q the size of the
21 compare 1 byte (8-bit) values
24 compare 2 byte (16-bit) values
27 compare 4 byte (32-bit) values
30 compare 8 byte (64-bit) values
83 byte at 0x01000006 (0x77) != byte at 0x00101006 (0x57)
84 Total of 6 byte(s) were the same

Completed in 43 milliseconds

12345678910