Home
last modified time | relevance | path

Searched refs:LSB (Results 1 – 25 of 57) sorted by relevance

123

/openbsd-src/lib/libcrypto/aes/asm/
H A Daes-mips.pl90 my ($MSB,$LSB)=(0,3); # automatically converted to little-endian
400 lwr $s0,0+$LSB($inp)
401 lwr $s1,4+$LSB($inp)
402 lwr $s2,8+$LSB($inp)
403 lwr $s3,12+$LSB($inp)
407 swr $s0,0+$LSB($out)
408 swr $s1,4+$LSB($out)
409 swr $s2,8+$LSB($out)
410 swr $s3,12+$LSB($out)
736 lwr $s0,0+$LSB($inp)
[all …]
/openbsd-src/regress/usr.bin/file/
H A Dt18.out1 t18.in: ELF 32-bit LSB executable, Intel 80386, version 1
/openbsd-src/usr.bin/file/magdir/
H A Dfonts17 0 lelong 00000004 X11 SNF font data, LSB first
25 >12 byte 0x02 \b, LSB first
H A Dolf32 >5 byte 1 LSB
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStringExtras.h196 inline bool tryGetHexFromNibbles(char MSB, char LSB, uint8_t &Hex) { in tryGetHexFromNibbles() argument
198 unsigned U2 = hexDigitValue(LSB); in tryGetHexFromNibbles()
208 inline uint8_t hexFromNibbles(char MSB, char LSB) { in hexFromNibbles() argument
210 bool GotHex = tryGetHexFromNibbles(MSB, LSB, Hex); in hexFromNibbles()
/openbsd-src/lib/libc/gdtoa/
H A Dgdtoaimp.h324 #define LSB 1 macro
362 #define LSB 1 macro
389 #define LSB 0x10000 macro
H A Dstrtod.c607 Lsb = LSB;
889 if (!(word1(&rv) & LSB))
/openbsd-src/lib/libcrypto/sha/asm/
H A Dsha1-mips.pl77 $LSB=3&~$MSB;
112 lwr @X[$j],$j*4+$LSB($inp)
285 lwr @X[0],$LSB($inp)
H A Dsha512-mips.pl115 $LSB = ($SZ-1)&~$MSB;
130 ${LD}r @X[1],`($i+1)*$SZ+$LSB`($inp)
311 ${LD}r @X[0],$LSB($inp)
/openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/MCTargetDesc/
H A DCSKYMCCodeEmitter.cpp54 const MCOperand &LSB = MI.getOperand(Idx + 1); in getImmOpValueMSBSize() local
55 assert(MSB.isImm() && LSB.isImm() && "Unexpected MO type."); in getImmOpValueMSBSize()
57 return MSB.getImm() - LSB.getImm(); in getImmOpValueMSBSize()
/openbsd-src/gnu/usr.bin/binutils/gdb/vx-share/
H A DvxWorks.h148 #define LSB(x) ((x) & 0xff) /* least signif byte of 2-byte integer*/ macro
/openbsd-src/gnu/usr.bin/gcc/gcc/config/stormy16/
H A Dstormy-abi16 from 0 being the LSB.
155 doubleword, counting the LSB as bit 0.
/openbsd-src/gnu/gcc/gcc/config/stormy16/
H A Dstormy-abi16 from 0 being the LSB.
155 doubleword, counting the LSB as bit 0.
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZInstrInfo.cpp1723 unsigned LSB, Length; in isRxSBGMask() local
1724 if (isShiftedMask_64(Mask, LSB, Length)) { in isRxSBGMask()
1725 Start = 63 - (LSB + Length - 1); in isRxSBGMask()
1726 End = 63 - LSB; in isRxSBGMask()
1732 if (isShiftedMask_64(Mask ^ allOnes(BitSize), LSB, Length)) { in isRxSBGMask()
1733 assert(LSB > 0 && "Bottom bit must be set"); in isRxSBGMask()
1734 assert(LSB + Length < BitSize && "Top bit must be set"); in isRxSBGMask()
1735 Start = 63 - (LSB - 1); in isRxSBGMask()
1736 End = 63 - (LSB + Length); in isRxSBGMask()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DDebugInfoFlags.def79 // Virtuality is a two-bit enum field in the LSB of the word.
/openbsd-src/regress/lib/libcrypto/aead/
H A Daes_128_gcm_tests.txt509 # 192 bytes plaintext, iv is chosen so that initial counter LSB is 0xFF
517 # 288 bytes plaintext, iv is chosen so that initial counter LSB is 0xFF
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/
H A DMachineIRBuilder.h1994 const SrcOp &LSB, const SrcOp &Width) { in buildSbfx() argument
1995 return buildInstr(TargetOpcode::G_SBFX, {Dst}, {Src, LSB, Width}); in buildSbfx()
2000 const SrcOp &LSB, const SrcOp &Width) { in buildUbfx() argument
2001 return buildInstr(TargetOpcode::G_UBFX, {Dst}, {Src, LSB, Width}); in buildUbfx()
/openbsd-src/gnu/llvm/llvm/lib/Target/ARM/
H A DARMISelDAGToDAG.cpp3369 unsigned LSB = Srl_imm; in tryV6T2BitfieldExtractOp() local
3373 if ((LSB + Width + 1) == N->getValueType(0).getSizeInBits()) { in tryV6T2BitfieldExtractOp()
3378 CurDAG->getTargetConstant(LSB, dl, MVT::i32), in tryV6T2BitfieldExtractOp()
3387 CurDAG->getTargetConstant(ARM_AM::getSORegOpc(ShOpcVal, LSB), dl, in tryV6T2BitfieldExtractOp()
3395 assert(LSB + Width + 1 <= 32 && "Shouldn't create an invalid ubfx"); in tryV6T2BitfieldExtractOp()
3397 CurDAG->getTargetConstant(LSB, dl, MVT::i32), in tryV6T2BitfieldExtractOp()
3416 int LSB = Srl_imm - Shl_imm; in tryV6T2BitfieldExtractOp() local
3417 if (LSB < 0) in tryV6T2BitfieldExtractOp()
3420 assert(LSB + Width + 1 <= 32 && "Shouldn't create an invalid ubfx"); in tryV6T2BitfieldExtractOp()
3422 CurDAG->getTargetConstant(LSB, dl, MVT::i32), in tryV6T2BitfieldExtractOp()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64InstPrinter.cpp220 int LSB = (BitWidth - ImmR) % BitWidth; in printInst() local
225 O << ", " << markup("<imm:") << "#" << LSB << markup(">") << ", " in printInst()
232 int LSB = (BitWidth - ImmR) % BitWidth; in printInst() local
239 O << ", " << markup("<imm:") << "#" << LSB << markup(">") << ", " in printInst()
245 int LSB = ImmR; in printInst() local
252 O << ", " << markup("<imm:") << "#" << LSB << markup(">") << ", " in printInst()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp2077 unsigned &LSB, unsigned &MSB, in isBitfieldExtractOpFromAnd() argument
2153 LSB = SrlImm; in isBitfieldExtractOpFromAnd()
2202 SDValue &Opd0, unsigned &LSB, in isSeveralBitsExtractOpFromShr() argument
2236 LSB = SrlImm; in isSeveralBitsExtractOpFromShr()
2557 uint64_t LSB = Imm; in getUsefulBitsFromBFM() local
2565 Mask <<= LSB; in getUsefulBitsFromBFM()
2574 uint64_t LSB = UsefulBits.getBitWidth() - Imm; in getUsefulBitsFromBFM() local
2578 OpUsefulBits <<= LSB; in getUsefulBitsFromBFM()
2583 Mask.lshrInPlace(LSB); in getUsefulBitsFromBFM()
2951 int LSB = countTrailingOnes(NotKnownZero); in tryBitfieldInsertOpFromOrAndImm() local
[all …]
/openbsd-src/gnu/gcc/gcc/config/avr/
H A Dlibgcc.S144 lsr r_arg1H ; gets LSB of multiplier
270 lsr r_arg1HH ; gets LSB of multiplier
/openbsd-src/gnu/usr.bin/gcc/gcc/config/avr/
H A Dlibgcc.S144 lsr r_arg1H ; gets LSB of multiplier
270 lsr r_arg1HH ; gets LSB of multiplier
/openbsd-src/sys/dev/pci/drm/amd/amdgpu/
H A Dumc_v6_1.c336 lsb = REG_GET_FIELD(err_addr, MCA_UMC_UMC0_MCUMC_ADDRT0, LSB); in umc_v6_1_query_error_address()
H A Dumc_v8_7.c356 lsb = REG_GET_FIELD(err_addr, MCA_UMC_UMC0_MCUMC_ADDRT0, LSB); in umc_v8_7_query_error_address()
/openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/
H A Dubsan_handlers.cpp167 uptr LSB = LeastSignificantSetBitIndex(RealPointer); in handleAlignmentAssumptionImpl() local
168 uptr ActualAlignment = uptr(1) << LSB; in handleAlignmentAssumptionImpl()

123