Searched defs:MSB (Results 1 - 6 of 6) sorted by relevance

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dutil.h34 #define MSB(x, bits) ((x) & TYPEOF(x)(~0ULL << (sizeof(x) * 8 - (bits)))) macro
/external/llvm/lib/Transforms/Utils/
H A DIntegerDivision.cpp164 ConstantInt *MSB; local
170 MSB = Builder.getInt64(63);
176 MSB = Builder.getInt32(31);
258 Value *Ret0_4 = Builder.CreateICmpUGT(SR, MSB);
260 Value *RetDividend = Builder.CreateICmpEQ(SR, MSB);
273 Value *Tmp2 = Builder.CreateSub(MSB, SR);
311 Value *Tmp6 = Builder.CreateLShr(Q_2, MSB);
316 Value *Tmp10 = Builder.CreateAShr(Tmp9, MSB);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp1300 unsigned &LSB, unsigned &MSB,
1343 // Make sure to clamp the MSB so that we preserve the semantics of the
1370 MSB = Srl_imm + (VT == MVT::i32 ? CountTrailingOnes_32(And_imm)
1375 // to clamp the MSB to make sure we don't shift in undefined bits instead of
1378 MSB = MSB > 31 ? 31 : MSB;
1385 unsigned &LSB, unsigned &MSB) {
1420 LSB = MSB = Srl_imm;
1429 unsigned &LSB, unsigned &MSB,
1298 isBitfieldExtractOpFromAnd(SelectionDAG *CurDAG, SDNode *N, unsigned &Opc, SDValue &Opd0, unsigned &LSB, unsigned &MSB, unsigned NumberOfIgnoredLowBits, bool BiggerPattern) argument
1384 isOneBitExtractOpFromShr(SDNode *N, unsigned &Opc, SDValue &Opd0, unsigned &LSB, unsigned &MSB) argument
1428 isBitfieldExtractOpFromShr(SDNode *N, unsigned &Opc, SDValue &Opd0, unsigned &LSB, unsigned &MSB, bool BiggerPattern) argument
1491 isBitfieldExtractOp(SelectionDAG *CurDAG, SDNode *N, unsigned &Opc, SDValue &Opd0, unsigned &LSB, unsigned &MSB, unsigned NumberOfIgnoredLowBits = 0, bool BiggerPattern = false) argument
1530 unsigned Opc, LSB, MSB; local
1599 getUsefulBitsFromBitfieldMoveOpd(SDValue Op, APInt &UsefulBits, uint64_t Imm, uint64_t MSB, unsigned Depth) argument
1630 uint64_t MSB = local
1668 uint64_t MSB = local
1930 unsigned LSB, MSB; local
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dbitvect.c118 static N_word MSB; /* = mask for most significant bit */ variable
368 MSB = (LSB << MODMASK);
725 mask = MSB;
888 himask = MSB;
1011 bitmask = MSB;
1013 while (not (mask AND MSB))
1033 if (empty) value = MSB;
1036 while (not (value AND MSB))
2322 carry_out = ((*addr AND MSB) != 0);
2360 if (carry_in) *addr |= MSB;
[all...]
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslimpl.h117 #define MSB(x) ((unsigned char) (((unsigned)(x)) >> 8)) macro
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8803 unsigned MSB = BitWidth - Imm.countLeadingZeros() - 1; local
8804 unsigned NewBW = NextPowerOf2(MSB - ShAmt);

Completed in 170 milliseconds