HomeSort by relevance Sort by last modified time
    Searched defs:NumBits (Results 1 - 25 of 25) 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 632 unsigned NumBits = 0;
642 NumBits = 8;
645 NumBits = 12;
650 NumBits = 8;
655 NumBits = 12;
658 NumBits = 8;
661 NumBits = 5;
678 unsigned Mask = (1 << NumBits) - 1;
  /external/clang/lib/Lex/
PPExpressions.cpp 293 unsigned NumBits;
295 NumBits = TI.getIntWidth();
297 NumBits = TI.getWCharWidth();
299 NumBits = TI.getChar16Width();
301 NumBits = TI.getChar32Width();
303 NumBits = TI.getCharWidth();
306 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);
822 uint32_t numBits = ((Len * 64) / 19) + 2;
823 APInt Tmp(numBits, StringRef(TokStart, Len), 10);
826 if (minBits > 0 && minBits < numBits)
831 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/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 35 int NumBits;
39 NumBits = 0;
41 public UInt32 GetRnd(int numBits)
44 if (NumBits > numBits)
46 result = Value & (((UInt32)1 << numBits) - 1);
47 Value >>= numBits;
48 NumBits -= numBits;
51 numBits -= NumBits;
    [all...]
  /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;
380 // Extract NumBits-BitsInCurWord from what we just read.
381 unsigned BitsLeft = NumBits-BitsInCurWord;
397 uint64_t Read64(unsigned NumBits) {
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 483 unsigned NumBits = Ty->getPrimitiveSizeInBits();
486 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 &&
488 APInt StrVal(NumBits, 0);
489 APInt SingleChar(NumBits, 0);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 397 int NumBits = NewStoredVT.getSizeInBits();
398 int IncrementSize = NumBits / 8;
401 SDValue ShiftAmount = DAG.getConstant(NumBits,
521 unsigned NumBits = LoadedVT.getSizeInBits();
523 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
524 NumBits >>= 1;
527 unsigned IncrementSize = NumBits / 8;
559 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/lzma/Java/SevenZip/
LzmaBench.java 30 int NumBits;
34 NumBits = 0;
36 public int GetRnd(int numBits)
39 if (NumBits > numBits)
41 result = Value & ((1 << numBits) - 1);
42 Value >>>= numBits;
43 NumBits -= numBits;
46 numBits -= 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 322 uint64_t NumBits = Log2_32_Ceil(VE.getTypes().size()+1);
327 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
336 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
345 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
361 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
369 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 74 unsigned NumBits = 0;
76 NumBits = TD.getPreferredAlignmentLog(GVar);
79 if (InBits > NumBits)
80 NumBits = InBits;
84 return NumBits;
88 // If the GVAlign is larger than NumBits, or if we are required to obey
89 // NumBits because the GV has an assigned section, obey it.
90 if (GVAlign > NumBits || GV->hasSection())
91 NumBits = GVAlign;
92 return NumBits;
    [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.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 915 milliseconds