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

  /external/llvm/include/llvm/ADT/
PointerIntPair.h 86 intptr_t IntVal = Int;
87 assert(IntVal < (1 << IntBits) && "Integer too large for field");
91 Value |= IntVal << IntShift; // Set new integer.
  /external/llvm/include/llvm/ExecutionEngine/
GenericValue.h 34 APInt IntVal; // also used for long doubles
36 GenericValue() : DoubleVal(0.0), IntVal(1,0) {}
37 explicit GenericValue(void *V) : PointerVal(V), IntVal(1,0) { }
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 38 // Register values (stored in IntVal). Only used by MCTargetAsmLexer.
62 int64_t IntVal;
67 : Kind(_Kind), Str(_Str), IntVal(_IntVal) {}
104 return IntVal;
111 return static_cast<unsigned>(IntVal);
  /external/llvm/lib/TableGen/
TGLexer.h 53 IntVal,
71 int64_t CurIntVal; // This is valid for INTVAL.
100 assert(CurCode == tgtok::IntVal && "This token isn't an integer");
  /frameworks/compile/libbcc/lib/CodeGen/
CodeEmitter.cpp 205 Result.IntVal = Result.IntVal.trunc(BitWidth);
214 Result.IntVal = Result.IntVal.zext(BitWidth);
223 Result.IntVal = Result.IntVal.sext(BitWidth);
243 static_cast<float>(Result.IntVal.roundToDouble());
245 Result.DoubleVal = Result.IntVal.roundToDouble();
249 apf.convertFromAPInt(Result.IntVal,
252 Result.IntVal = apf.bitcastToAPInt()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp     [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp 639 int64_t IntVal = getTok().getIntVal();
640 Res = MCConstantExpr::Create(IntVal, getContext());
647 MCSymbol *Sym = Ctx.GetDirectionalLocalSymbol(IntVal,
661 uint64_t IntVal = RealVal.bitcastToAPInt().getZExtValue();
662 Res = MCConstantExpr::Create(IntVal, getContext());
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]

Completed in 1057 milliseconds