HomeSort by relevance Sort by last modified time
    Searched refs:isInt (Results 1 - 25 of 46) sorted by null

1 2

  /external/llvm/include/llvm/Support/
MathExtras.h 35 /// isInt - Checks if an integer fits into the given bit width.
37 inline bool isInt(int64_t x) {
42 inline bool isInt<8>(int64_t x) {
46 inline bool isInt<16>(int64_t x) {
50 inline bool isInt<32>(int64_t x) {
  /external/clang/lib/AST/
APValue.cpp 35 if (RHS.isInt())
48 if (isInt())
ExprConstant.cpp 66 bool IsInt;
74 void makeComplexFloat() { IsInt = false; }
75 bool isComplexFloat() const { return !IsInt; }
79 void makeComplexInt() { IsInt = true; }
80 bool isComplexInt() const { return IsInt; }
720 if (Value.isInt()) {
    [all...]
  /external/clang/test/PCH/
cxx-templates.h 88 bool isInt(int x);
90 template<> bool isInt<8>(int x) {
  /external/clang/include/clang/AST/
APValue.h 100 bool isInt() const { return Kind == Int; }
111 assert(isInt() && "Invalid accessor");
175 assert(isInt() && "Invalid accessor");
  /external/llvm/lib/Target/CellSPU/
SPUFrameLowering.cpp 126 if (isInt<10>(FrameSize)) {
133 } else if (isInt<16>(FrameSize)) {
216 if (isInt<10>(FrameSize + LinkSlotOffset)) {
SPURegisterInfo.cpp 296 if ((MI.getOpcode() == SPU::AIr32 && !isInt<10>(Offset))
297 || !isInt<14>(Offset)) {
SPUISelDAGToDAG.cpp 45 return isInt<10>(CN->getSExtValue());
59 return isInt<10>(CN->getSExtValue());
876 if (isInt<10>(CN->getSExtValue())) {
    [all...]
  /external/llvm/lib/Target/Blackfin/
BlackfinRegisterInfo.cpp 96 if (isInt<7>(delta)) {
127 if (isInt<7>(value)) {
137 if (isInt<16>(value)) {
238 if (isInt<18>(Offset)) {
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 134 if (isInt<10>(BranchSize)) {
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 134 if (isInt<16>(BranchSize)) {
PPCFrameLowering.cpp 355 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
357 assert(isInt<16>(NegFrameSize) && "Unhandled stack size and alignment!");
371 } else if (isInt<16>(NegFrameSize)) {
389 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
391 assert(isInt<16>(NegFrameSize) && "Unhandled stack size and alignment!");
404 } else if (isInt<16>(NegFrameSize)) {
585 if (FI->hasFastCall() && isInt<16>(FrameSize)) {
599 } else if (isInt<16>(FrameSize) &&
609 if (FI->hasFastCall() && isInt<16>(FrameSize)) {
623 } else if (isInt<16>(FrameSize) && TargetAlign >= MaxAlign &
    [all...]
PPCISelDAGToDAG.cpp 460 if (isInt<16>((int)Imm))
501 if (isInt<16>(Imm))
754 if (!isInt<32>(Imm)) {
759 if (isInt<32>(ImmSh)) {
778 if (isInt<16>(Imm)) {
    [all...]
PPCRegisterInfo.cpp 340 if (isInt<16>(CalleeAmt)) {
424 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) {
627 if (isInt<16>(Offset) && (!isIXAddr || (Offset & 3) == 0)) {
  /external/webkit/Source/WebCore/css/
CSSParserValues.cpp 71 else if (unit == CSSPrimitiveValue::CSS_NUMBER && isInt)
CSSParserValues.h 46 bool isInt;
CSSGrammar.y 641 PERCENTAGE { $$.id = 0; $$.isInt = false; $$.fValue = $1; $$.unit = CSSPrimitiveValue::CSS_NUMBER; }
643 $$.id = 0; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_NUMBER;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 86 if (isInt<13>(CN->getSExtValue())) {
122 if (isInt<13>(CN->getSExtValue()))
  /external/collada/src/modules/LIBXMLPlugin/
daeLIBXMLPlugin.cpp 478 bool isInt = false;
489 isInt = true;
521 if ( isInt )
  /external/llvm/lib/Target/X86/
X86RegisterInfo.cpp 470 if (isInt<8>(Imm))
474 if (isInt<8>(Imm))
482 if (isInt<8>(Imm))
486 if (isInt<8>(Imm))
613 assert((!Is64Bit || isInt<32>((long long)FIOffset + Imm)) &&
X86FrameLowering.cpp 59 if (isInt<8>(Imm))
63 if (isInt<8>(Imm))
71 if (isInt<8>(Imm))
75 if (isInt<8>(Imm))
    [all...]
X86ISelDAGToDAG.cpp 176 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
558 return isInt<31>(Val);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 113 bool isInt() const { return EntryKind == E_Integer; }
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 365 if (!isInt<32>(InitValue) || !isInt<32>(IncValue) || !isInt<32>(ExitValue))
    [all...]
  /external/llvm/lib/Target/Mips/
MipsISelDAGToDAG.cpp 145 if (isInt<16>(CN->getSExtValue())) {

Completed in 608 milliseconds

1 2