HomeSort by relevance Sort by last modified time
    Searched full:isint (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/llvm/lib/Target/Hexagon/
HexagonOperands.td 71 return isInt<32>(v);
100 return isInt<16>(v);
108 return isInt<13>(v);
116 return isInt<12>(v);
123 return isInt<11>(v);
155 return isInt<10>(v);
163 return isInt<9>(v);
170 return isInt<9>(v) && (v != -256);
177 return isInt<8>(v);
185 return isInt<8>(v)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
tabs_api.html 22 function isInt(i) {
90 if (!isInt(args.windowId))
92 if (!isInt(args.index))
212 if (!isInt(args.left))
214 if (!isInt(args.top))
216 if (!isInt(args.width))
218 if (!isInt(args.height))
249 if (!isInt(retval.left))
251 if (!isInt(retval.top))
253 if (!isInt(retval.width)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 50 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
60 bool isOne() const { return isInt() && IntVal == 1; }
61 bool isTwo() const { return isInt() && IntVal == 2; }
62 bool isMinusOne() const { return isInt() && IntVal == -1; }
63 bool isMinusTwo() const { return isInt() && IntVal == -2; }
80 bool isInt() const { return !IsFp; }
199 if (isInt()) {
210 if (That.isInt())
218 if (isInt() == That.isInt()) {
    [all...]
  /external/clang/test/PCH/
cxx-templates.h 88 bool isInt(int x);
90 template<> bool isInt<8>(int x) {
  /external/llvm/lib/Target/Mips/
Mips16RegisterInfo.cpp 132 if (!MI.isDebugValue() && ( ((FrameReg != Mips::SP) && !isInt<16>(Offset)) ||
133 ((FrameReg == Mips::SP) && !isInt<15>(Offset)) )) {
Mips16InstrInfo.cpp 186 if (isInt<16>(-Remainder))
227 if (isInt<16>(Remainder))
300 if (isInt<16>(Amount)) // need to change to addiu sp, ....and isInt<16>
Mips16InstrInfo.h 90 return ((offset & 7) == 0) && isInt<11>(offset);
MipsAnalyzeImmediate.cpp 96 if (!isInt<16>(ShiftedImm))
MipsSERegisterInfo.cpp 108 if (!MI.isDebugValue() && !isInt<16>(Offset)) {
MipsSEFrameLowering.cpp 249 return isInt<16>(MFI->getMaxCallFrameSize()) && !MFI->hasVarSizedObjects();
291 if (isInt<16>(MaxSPOffset))
Mips16FrameLowering.cpp 166 return isInt<15>(MFI->getMaxCallFrameSize()) && !MFI->hasVarSizedObjects();
MipsInstrInfo.td 307 def immSExt8 : PatLeaf<(imm), [{ return isInt<8>(N->getSExtValue()); }]>;
311 def immSExt16 : PatLeaf<(imm), [{ return isInt<16>(N->getSExtValue()); }]>;
315 def immSExt15 : PatLeaf<(imm), [{ return isInt<15>(N->getSExtValue()); }]>;
331 return isInt<32>(Val) && !(Val & 0xffff);
339 return isInt<17>(N->getSExtValue()) && isInt<16>(N->getSExtValue() + 1);
    [all...]
Mips16ISelDAGToDAG.cpp 180 if (isInt<16>(CN->getSExtValue())) {
  /external/webkit/Source/WebCore/css/
CSSParserValues.cpp 71 else if (unit == CSSPrimitiveValue::CSS_NUMBER && isInt)
CSSParserValues.h 46 bool isInt;
CSSGrammar.y 640 PERCENTAGE { $$.id = 0; $$.isInt = false; $$.fValue = $1; $$.unit = CSSPrimitiveValue::CSS_NUMBER; }
642 $$.id = 0; $$.isInt = false; $$.unit = CSSPrimitiveValue::CSS_NUMBER;
    [all...]
  /external/llvm/include/llvm/Support/
MathExtras.h 39 /// isInt - Checks if an integer fits into the given bit width.
41 inline bool isInt(int64_t x) {
46 inline bool isInt<8>(int64_t x) {
50 inline bool isInt<16>(int64_t x) {
54 inline bool isInt<32>(int64_t x) {
62 return isInt<N+S>(x) && (x % (1<<S) == 0);
  /external/llvm/lib/Target/PowerPC/
PPCFrameLowering.cpp 405 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
407 assert(isInt<16>(NegFrameSize) && "Unhandled stack size and alignment!");
421 } else if (isInt<16>(NegFrameSize)) {
439 assert(isPowerOf2_32(MaxAlign) && isInt<16>(MaxAlign) &&
441 assert(isInt<16>(NegFrameSize) && "Unhandled stack size and alignment!");
454 } else if (isInt<16>(NegFrameSize)) {
651 if (FI->hasFastCall() && isInt<16>(FrameSize)) {
665 } else if (isInt<16>(FrameSize) &&
675 if (FI->hasFastCall() && isInt<16>(FrameSize)) {
689 } else if (isInt<16>(FrameSize) && TargetAlign >= MaxAlign &
    [all...]
PPCBranchSelector.cpp 143 if (isInt<16>(BranchSize)) {
PPCRegisterInfo.cpp 212 if (MaxAlign < TargetAlign && isInt<16>(FrameSize)) {
488 isInt<16>(Offset) && (!isIXAddr || (Offset & 3) == 0))) {
  /external/clang/include/clang/AST/
APValue.h 176 bool isInt() const { return Kind == Int; }
195 assert(isInt() && "Invalid accessor");
342 assert(isInt() && "Invalid accessor");
  /external/llvm/lib/Target/Sparc/
SparcISelDAGToDAG.cpp 86 if (isInt<13>(CN->getSExtValue())) {
122 if (isInt<13>(CN->getSExtValue()))
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
avisynth.php 106 'Int', 'IsBool', 'IsClip', 'IsFloat', 'IsInt', 'IsString', 'Import',
lscript.php 107 'isEnvelope', 'isImage', 'isInt', 'isLight', 'isLower', 'isMapped', 'isMesh',
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 134 if (isInt<10>(BranchSize)) {

Completed in 3626 milliseconds

1 2 3