/freebsd/contrib/elftoolchain/libelftc/ |
H A D | elftc_bfd_find_target.3 | 69 .It Li elf32-big Ta ELF Ta MSB Ta 32 70 .It Li elf32-bigarm Ta ELF Ta MSB Ta 32 71 .It Li elf32-bigmips Ta ELF Ta MSB Ta 32 74 .It Li elf32-ia64-big Ta ELF Ta MSB Ta 32 78 .It Li elf32-powerpc Ta ELF Ta MSB Ta 32 79 .It Li elf32-powerpc-freebsd Ta ELF Ta MSB Ta 32 84 .It Li elf32-sh Ta ELF Ta MSB Ta 32 86 .It Li elf32-sh-nbsd Ta ELF Ta MSB Ta 32 88 .It Li elf32-shbig-linux Ta ELF Ta MSB Ta 32 90 .It Li elf32-sparc Ta ELF Ta MSB Ta 32 [all …]
|
/freebsd/sys/cam/scsi/ |
H A D | scsi_da.h | 466 uint8_t trk_z_1; /* tracks per zone (MSB) */ 468 uint8_t alt_sec_1; /* alternate sectors per zone (MSB) */ 470 uint8_t alt_trk_z_1; /* alternate tracks per zone (MSB) */ 472 uint8_t alt_trk_v_1; /* alternate tracks per volume (MSB) */ 474 uint8_t ph_sec_t_1; /* physical sectors per track (MSB) */ 476 uint8_t bytes_s_1; /* bytes per sector (MSB) */ 478 uint8_t interleave_1; /* interleave (MSB) */ 480 uint8_t trk_skew_1; /* track skew factor (MSB) */ 482 uint8_t cyl_skew_1; /* cylinder skew (MSB) */ 498 uint8_t ncyl_2; /* number of cylinders (MSB) */ [all …]
|
/freebsd/contrib/ntp/libparse/ |
H A D | ieee754io.c | 428 int msb; in put_ieee754() 495 msb = 63; in put_ieee754() 499 msb--; in put_ieee754() 504 msb = 31; in put_ieee754() 508 msb--; in put_ieee754() 516 if (msb >= 32) in put_ieee754() 518 mantissa_low = (outlfp.l_ui & ((1 << (msb - 32)) - 1)) << (mbits - (msb - 32)); in put_ieee754() 519 mantissa_low |= outlfp.l_uf >> (mbits - (msb - 32)); in put_ieee754() 523 mantissa_low = (outlfp.l_uf << (mbits - msb)) in put_ieee754() 415 int msb; put_ieee754() local [all...] |
/freebsd/sys/net/ |
H A D | sff8472.h | 176 * and MUST be read in a single read operation starting at the MSB 204 * byte 56 is MSB. Bit 0 of byte 211 * byte 60 is MSB. Bit 0 of byte 63 218 * 64 is MSB, bit 0 of byte 67 is 225 * 68 is MSB, bit 0 of byte 71 is 232 * 72 is MSB, bit 0 of byte 75 is 239 * byte 76 is MSB, bit 0 of byte 77 247 * MSB, bit 0 of byte 79 is 254 * power. Bit 7 of byte 80 is MSB, 263 * byte 82 is MSB, bit 0 of byte 83 [all …]
|
/freebsd/sys/contrib/dev/athk/ath10k/ |
H A D | hw.c | 218 .msb = 0x00000010, 224 .msb = 0x00000012, 230 .msb = 0x00000000, 272 .msb = 0x00000000, 278 .msb = 0x0000000f, 297 .msb = 0x0000000f, 350 .msb = 0x00000010, 356 .msb = 0x00000011, 362 .msb = 0x0000000f, 381 .msb = 0x00000003, [all …]
|
/freebsd/contrib/wpa/src/utils/ |
H A D | const_time.h | 27 * const_time_fill_msb - Fill all bits with MSB value 29 * Returns: Value with all the bits set to the MSB of the input val 33 /* Move the MSB to LSB and multiple by -1 to fill in all bits. */ in const_time_fill_msb() 42 /* Set MSB to 1 for 0 and fill rest of bits with the MSB value */ in const_time_is_zero()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYInstrFormats.td | 400 // Format< OP[6] | LSB[5] | RX[5] | SOP[6] | MSB[5] | RZ[5]> 403 : CSKY32Inst<AddrModeNone, 0x31, outs, ins, op #"\t$rz, $rx, $msb, $lsb", 407 bits<5> msb; 412 let Inst{9 - 5} = msb; // msb 417 : CSKY32Inst<AddrModeNone, 0x31, outs, ins, op #"\t$rz, $rx, $msb, $lsb", 421 bits<5> msb; 426 let Inst{9 - 5} = msb; 430 // Format< OP[6] | LSB[5] | RX[5] | SOP[6] | MSB[5] | RZ[5]> 432 class I_5_XZ_U2<bits<6> sop, bits<5> lsb, bits<5> msb, dag outs, dag ins, 440 let Inst{9 - 5} = msb; // msb [all …]
|
/freebsd/sys/dev/ata/ |
H A D | ata-lowlevel.c | 475 u_int8_t err = 0, lsb = 0, msb = 0; in ata_generic_reset() local 530 msb = ATA_IDX_INB(ch, ATA_CYL_MSB); in ata_generic_reset() 533 "stat0=0x%02x err=0x%02x lsb=0x%02x msb=0x%02x\n", in ata_generic_reset() 534 stat0, err, lsb, msb); in ata_generic_reset() 535 if (stat0 == err && lsb == err && msb == err && in ata_generic_reset() 540 if (lsb == ATAPI_MAGIC_LSB && msb == ATAPI_MAGIC_MSB) { in ata_generic_reset() 543 else if (lsb == 0 && msb == 0 && (stat0 & ATA_S_READY)) { in ata_generic_reset() 547 else if ((stat0 & 0x0f) && err == lsb && err == msb) { in ata_generic_reset() 563 msb = ATA_IDX_INB(ch, ATA_CYL_MSB); in ata_generic_reset() 566 "stat1=0x%02x err=0x%02x lsb=0x%02x msb=0x%02x\n", in ata_generic_reset() [all …]
|
/freebsd/sys/riscv/riscv/ |
H A D | elf_machdep.c | 160 gen_bitmask(int msb, int lsb) in gen_bitmask() argument 164 if (msb == sizeof(mask) * 8 - 1) in gen_bitmask() 167 mask = (1U << (msb + 1)) - 1; in gen_bitmask() 176 extract_bits(uint32_t x, int msb, int lsb) in extract_bits() argument 180 mask = gen_bitmask(msb, lsb); in extract_bits() 189 insert_bits(uint32_t d, uint32_t s, int msb, int lsb) in insert_bits() argument 193 mask = gen_bitmask(msb, lsb); in insert_bits() 221 * immediate value to be ajusted if the MSB of the 12bit immediate
|
/freebsd/sys/sys/ |
H A D | elf_common.h | 1132 #define R_IA_64_DIR32MSB 0x24 /* word32 MSB S + A */ 1134 #define R_IA_64_DIR64MSB 0x26 /* word64 MSB S + A */ 1138 #define R_IA_64_GPREL32MSB 0x2c /* word32 MSB @gprel(S + A) */ 1140 #define R_IA_64_GPREL64MSB 0x2e /* word64 MSB @gprel(S + A) */ 1146 #define R_IA_64_PLTOFF64MSB 0x3e /* word64 MSB @pltoff(S + A) */ 1149 #define R_IA_64_FPTR32MSB 0x44 /* word32 MSB @fptr(S + A) */ 1151 #define R_IA_64_FPTR64MSB 0x46 /* word64 MSB @fptr(S + A) */ 1157 #define R_IA_64_PCREL32MSB 0x4c /* word32 MSB S + A - P */ 1159 #define R_IA_64_PCREL64MSB 0x4e /* word64 MSB S + A - P */ 1163 #define R_IA_64_LTOFF_FPTR32MSB 0x54 /* word32 MSB @ltoff(@fptr(S + A)) */ [all …]
|
/freebsd/sys/contrib/alpine-hal/ |
H A D | al_hal_pbs_regs.h | 489 /* bar low address 16 MSB bits */ 500 /* bar low address 16 MSB bits */ 511 /* bar low address 16 MSB bits */ 522 /* bar low address 16 MSB bits */ 533 /* bar low address 16 MSB bits */ 544 /* bar low address 16 MSB bits */ 555 /* bar low address 16 MSB bits */ 566 /* bar low address 16 MSB bits */ 577 /* bar low address 16 MSB bits */ 588 /* bar low address 16 MSB bits */ [all …]
|
/freebsd/sys/x86/include/ |
H A D | segments.h | 67 unsigned sd_hilimit:4; /* segment extent (msb) */ 71 unsigned sd_hibase:8; /* segment base address (msb) */ 80 unsigned sd_hilimit:4; /* segment extent (msb) */ 85 unsigned sd_hibase:8; /* segment base address (msb) */ 107 unsigned gd_hioffset:16; /* gate offset (msb) */ 130 uint64_t gd_hioffset:48; /* gate offset (msb) */
|
/freebsd/sys/contrib/device-tree/Bindings/gpio/ |
H A D | netxbig-gpio-ext.txt | 6 - addr-gpios: GPIOs representing the address register (LSB -> MSB). 7 - data-gpios: GPIOs representing the data register (LSB -> MSB).
|
/freebsd/crypto/openssl/test/recipes/ |
H A D | 25-test_x509.t | 29 my $out_msb = "out-cyrillic.msb"; 33 my $msb = srctop_file(@certs, "cyrillic.msb"); 38 is(cmp_text($out_msb, $msb), 39 0, 'Comparing esc_msb output with cyrillic.msb');
|
H A D | 25-test_rusext.t | 23 my $out_msb = "grfc.msb"; 28 is(cmp_text($out_msb, srctop_file('test', 'recipes', '25-test_rusext_data', 'grfc.msb')),
|
H A D | 15-test_dsa.t | 33 tconversion( -type => 'msb', -prefix => 'dsa-msb-pub',
|
H A D | 15-test_rsa.t | 55 tconversion( -type => 'msb', -prefix => "$cmd-msb-pub",
|
/freebsd/sys/dev/ic/ |
H A D | i8253reg.h | 47 * are load msb (TMR_MR_MSB), load lsb (TMR_MR_LSB), or load lsb then 48 * msb (TMR_MR_BOTH). 77 #define TIMER_MSB 0x20 /* r/w counter MSB */
|
/freebsd/contrib/arm-optimized-routines/string/arm/ |
H A D | strcmp.S | 42 #define MSB 0x000000ff macro 56 #define MSB 0xff000000 macro 350 bic tmp1, data1, #MSB 367 bics syndrome, syndrome, #MSB 370 /* We can only get here if the MSB of data1 contains 0, so 445 bic data2, data2, #MSB
|
/freebsd/sys/dev/aic7xxx/ |
H A D | aic7xxx_93cx6.c | 62 * is preceded by an initial zero (leading 0, followed by 16-bits, MSB 168 /* Send the 6 or 8 bit address (MSB first, LSB last). */ in ahc_read_seeprom() 183 * register contents which begins with bit 15 (MSB) and ends in ahc_read_seeprom() 251 /* Send the 6 or 8 bit address (MSB first). */ in ahc_write_seeprom() 263 /* Write the 16 bit value, MSB first */ in ahc_write_seeprom()
|
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
H A D | ar9300_tx99_tgt.c | 53 /* 6 (LSB), 9, 12, 18 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 60 /* 24 (LSB), 36, 48, 54 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 69 /* 1L (LSB), reserved, 2L, 2S (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 76 /* 5.5L (LSB), 5.5S, 11L, 11S (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 85 /* 0/8/16 (LSB), 1-3/9-11/17-19, 4, 5 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 93 /* 6 (LSB), 7, 12, 13 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 110 /* HT20 22 (LSB), HT20 23, HT40 22, HT40 23 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 120 /* 0/8/16 (LSB), 1-3/9-11/17-19, 4, 5 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update() 128 /* 6 (LSB), 7, 12, 13 (MSB) */ in ar9300_tx99_tgt_channel_pwr_update()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 205 /// Store the binary representation of the two provided values, \p MSB and 206 /// \p LSB, that make up the nibbles of a hexadecimal digit. If \p MSB or \p LSB 209 inline bool tryGetHexFromNibbles(char MSB, char LSB, uint8_t &Hex) { in tryGetHexFromNibbles() argument 210 unsigned U1 = hexDigitValue(MSB); in tryGetHexFromNibbles() 219 /// Return the binary representation of the two provided values, \p MSB and 221 inline uint8_t hexFromNibbles(char MSB, char LSB) { in hexFromNibbles() argument 223 bool GotHex = tryGetHexFromNibbles(MSB, LSB, Hex); in hexFromNibbles() 225 assert(GotHex && "MSB and/or LSB do not correspond to hex digits"); in hexFromNibbles() 257 if (!tryGetHexFromNibbles(InputPtr[OutputIndex * 2 + 0], // MSB in tryGetFromHex()
|
/freebsd/stand/kshim/ |
H A D | sysinit.h | 41 #define SYSINIT_ENTRY(uniq, keyword, msb, lsb, g_type, g_name, debug) \ argument 51 .dw_msb_value = (msb), \
|
/freebsd/crypto/openssl/crypto/poly1305/asm/ |
H A D | poly1305-mips.pl | 77 # define MSB 0 80 # define MSB 7 105 ldl $in0,0+MSB($inp) 106 ldl $in1,8+MSB($inp) 222 ldl $in0,0+MSB($inp) # load input 223 ldl $in1,8+MSB($inp)
|
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/ |
H A D | ResourceManager.h | 146 /// The most significant bit of a mask (MSB) uniquely identifies a resource. 150 /// Resource | Mask | MSB | Group 162 /// That is because MSB(B) and MSB(C) are both contained within Group(D). 323 // (MSB) in the mask plus one (since we want to ignore the invalid resource 328 // Resource | Mask | MSB | Index
|