HomeSort by relevance Sort by last modified time
    Searched refs:NumBits (Results 26 - 44 of 44) sorted by null

12

  /external/llvm/lib/Analysis/
ConstantFolding.cpp 555 unsigned NumBits = Ty->getPrimitiveSizeInBits();
558 if ((NumBits >> 3) == StrLen + 1 && (NumBits & 7) == 0 &&
560 APInt StrVal(NumBits, 0);
561 APInt SingleChar(NumBits, 0);
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 328 uint64_t NumBits = Log2_32_Ceil(VE.getTypes().size()+1);
333 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
342 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
351 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
367 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, NumBits));
375 Abbv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 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/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 107 llvm::Type *getIntNType(uint64_t NumBits) {
109 (unsigned)llvm::RoundUpToAlignment(NumBits, 8));
    [all...]
CGExpr.cpp     [all...]
  /external/llvm/lib/IR/
Constants.cpp     [all...]
Core.cpp 311 LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits) {
312 return wrap(IntegerType::get(*unwrap(C), NumBits));
330 LLVMTypeRef LLVMIntType(unsigned NumBits) {
331 return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp     [all...]
NVPTXAsmPrinter.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp     [all...]
  /external/clang/lib/Frontend/
CompilerInvocation.cpp     [all...]
  /external/llvm/include/llvm-c/
Core.h 805 LLVMTypeRef LLVMIntTypeInContext(LLVMContextRef C, unsigned NumBits);
816 LLVMTypeRef LLVMIntType(unsigned NumBits);
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 399 int NumBits = NewStoredVT.getSizeInBits();
400 int IncrementSize = NumBits / 8;
403 SDValue ShiftAmount = DAG.getConstant(NumBits,
523 unsigned NumBits = LoadedVT.getSizeInBits();
525 NewLoadedVT = EVT::getIntegerVT(*DAG.getContext(), NumBits/2);
526 NumBits >>= 1;
529 unsigned IncrementSize = NumBits / 8;
563 SDValue ShiftAmount = DAG.getConstant(NumBits,
    [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 459 function NumBits: Integer;
    [all...]

Completed in 1680 milliseconds

12