HomeSort by relevance Sort by last modified time
    Searched defs:NumBits (Results 1 - 22 of 22) sorted by null

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BitSet.cs 260 public int NumBits() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BitSet.cs 307 public int NumBits()
  /external/llvm/lib/Target/ARM/
Thumb1RegisterInfo.cpp 144 unsigned NumBits, unsigned Scale) {
146 unsigned Chunk = ((1 << NumBits) - 1) * Scale;
152 NumBits = 8;
154 Chunk = ((1 << NumBits) - 1) * Scale;
180 unsigned NumBits = 1;
188 NumBits = 7;
201 NumBits = 8;
210 NumBits = 8;
214 NumBits = 7;
218 NumBits = 8
    [all...]
ARMBaseRegisterInfo.cpp 608 unsigned NumBits = 0;
618 NumBits = 8;
621 NumBits = 12;
626 NumBits = 8;
631 NumBits = 12;
634 NumBits = 8;
637 NumBits = 5;
654 unsigned Mask = (1 << NumBits) - 1;
  /external/clang/lib/Lex/
PPExpressions.cpp 288 unsigned NumBits;
290 NumBits = TI.getIntWidth();
292 NumBits = TI.getWCharWidth();
294 NumBits = TI.getChar16Width();
296 NumBits = TI.getChar32Width();
298 NumBits = TI.getCharWidth();
301 llvm::APSInt Val(NumBits);
  /external/llvm/include/llvm/ADT/
BitVector.h 120 unsigned NumBits = 0;
123 NumBits += CountPopulation_32((uint32_t)Bits[i]);
125 NumBits += CountPopulation_64(Bits[i]);
128 return NumBits;
  /external/llvm/lib/AsmParser/
LLLexer.cpp 453 uint64_t NumBits = atoull(StartChar, CurPtr);
454 if (NumBits < IntegerType::MIN_INT_BITS ||
455 NumBits > IntegerType::MAX_INT_BITS) {
459 TyVal = IntegerType::get(Context, NumBits);
817 uint32_t numBits = ((Len * 64) / 19) + 2;
818 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
821 if (minBits > 0 && minBits < numBits)
826 if (activeBits > 0 && activeBits < numBits)
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 291 /// NumBits - The total size in bits of all of these blocks.
292 uint64_t NumBits;
308 : NumInstances(0), NumBits(0),
340 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
380 BlockStats.NumBits += BlockBitEnd-BlockBitStart;
562 PrintSize(Stats.NumBits);
564 double pct = (Stats.NumBits * 100.0) / BufferSizeBits;
568 PrintSize(Stats.NumBits/(double)Stats.NumInstances);
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 345 uint32_t Read(unsigned NumBits) {
346 assert(NumBits && NumBits <= 32 &&
350 if (BitsInCurWord >= NumBits) {
351 uint32_t R = uint32_t(CurWord) & (~0U >> (32-NumBits));
352 CurWord >>= NumBits;
353 BitsInCurWord -= NumBits;
381 // Extract NumBits-BitsInCurWord from what we just read.
382 unsigned BitsLeft = NumBits-BitsInCurWord;
398 uint64_t Read64(unsigned NumBits) {
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 482 unsigned NumBits = Ty->getPrimitiveSizeInBits();
485 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 &&
487 APInt StrVal(NumBits, 0);
488 APInt SingleChar(NumBits, 0);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 393 int NumBits = NewStoredVT.getSizeInBits();
394 int IncrementSize = NumBits / 8;
397 SDValue ShiftAmount = DAG.getConstant(NumBits,
517 unsigned NumBits = LoadedVT.getSizeInBits();
519 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
520 NumBits >>= 1;
523 unsigned IncrementSize = NumBits / 8;
555 SDValue ShiftAmount = DAG.getConstant(NumBits,
    [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 224 unsigned NumBits; // number of bits to filter
257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
404 unsigned NumBits) const;
495 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
502 Filter::Filter(FilterChooser &owner, unsigned startBit, unsigned numBits,
504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
505 assert(StartBit + NumBits - 1 < Owner->BitWidth);
518 bool ok = Owner->fieldFromInsn(Field, Insn, StartBit, NumBits);
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 160 static bool canFitInBitfield(int64_t Value, unsigned NumBits) {
161 // For example, with NumBits == 4, we permit Values from [-7 .. 15].
162 return (NumBits >= sizeof(Value) * 8) ||
163 (Value >> NumBits == 0) || (Value >> (NumBits-1) == -1);
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 195 uint64_t NumBits = Log2_32_Ceil(VE.getTypes().size()+1);
200 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
209 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
218 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
234 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
242 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 239 uint64_t NumBits = Log2_32_Ceil(VE.getTypes().size()+1);
244 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
253 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
262 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
278 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
286 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 73 unsigned NumBits = 0;
75 NumBits = TD.getPreferredAlignmentLog(GVar);
78 if (InBits > NumBits)
79 NumBits = InBits;
83 return NumBits;
87 // If the GVAlign is larger than NumBits, or if we are required to obey
88 // NumBits because the GV has an assigned section, obey it.
89 if (GVAlign > NumBits || GV->hasSection())
90 NumBits = GVAlign;
91 return NumBits;
    [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 459 function NumBits: Integer;
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 912 milliseconds