Searched defs:isInt (Results 1 - 22 of 22) sorted by relevance

/external/deqp/framework/opengl/
H A DgluTextureUtil.cpp52 bool isInt = false; local
63 isInt = true;
67 isInt = false;
76 case TextureFormat::R: format = isInt ? GL_RED_INTEGER : GL_RED; break;
77 case TextureFormat::RG: format = isInt ? GL_RG_INTEGER : GL_RG; break;
78 case TextureFormat::RGB: format = isInt ? GL_RGB_INTEGER : GL_RGB; break;
79 case TextureFormat::RGBA: format = isInt ? GL_RGBA_INTEGER : GL_RGBA; break;
89 DE_ASSERT(!isInt);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDebugLocEntry.h68 bool isInt() const { return EntryKind == E_Integer; } function in struct:llvm::DebugLocEntry::Value
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DMathExtras.h35 /// isInt - Checks if an integer fits into the given bit width.
37 inline bool isInt(int64_t x) { function in namespace:llvm
42 inline bool isInt<8>(int64_t x) { function in namespace:llvm
46 inline bool isInt<16>(int64_t x) { function in namespace:llvm
50 inline bool isInt<32>(int64_t x) { function in namespace:llvm
/external/clang/test/PCH/
H A Dcxx-templates.h88 bool isInt(int x);
90 template<> bool isInt<8>(int x) { function
/external/clang/include/clang/AST/
H A DAPValue.h182 bool isInt() const { return Kind == Int; } function in class:clang::APValue
201 assert(isInt() && "Invalid accessor");
348 assert(isInt() && "Invalid accessor");
/external/llvm/include/llvm/Support/
H A DMathExtras.h263 /// isInt - Checks if an integer fits into the given bit width.
265 inline bool isInt(int64_t x) { function in namespace:llvm
270 inline bool isInt<8>(int64_t x) { function in namespace:llvm
274 inline bool isInt<16>(int64_t x) { function in namespace:llvm
278 inline bool isInt<32>(int64_t x) { function in namespace:llvm
286 return isInt<N+S>(x) && (x % (1<<S) == 0);
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
H A DvktPipelineRenderToImageTests.cpp524 const bool isInt = isUintFormat(caseDef.colorFormat) || isIntFormat(caseDef.colorFormat); local
527 if (isInt)
540 if (isInt)
/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp538 const bool isInt = glu::isDataTypeIntOrIVec(attrib.type.getBasicType()); local
560 else if (isInt)
H A Des3fFragmentOutputTests.cpp629 bool isInt = glu::isDataTypeIntOrIVec(output.type); local
679 else if (isInt)
780 bool isInt = glu::isDataTypeIntOrIVec(output.type); local
784 isInt ? GL_INT :
843 const bool isInt = glu::isDataTypeIntOrIVec(output.type); local
860 if (isInt || isUint)
1074 bool isInt = glu::isDataTypeIntOrIVec(outType);
1080 else if (isInt)
H A Des3fShaderOperatorTests.cpp754 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); local
770 else if (isInt || isUint)
780 else if (isInt || isUint)
/external/jsoncpp/src/lib_json/
H A Djson_value.cpp556 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
559 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
730 return isInt() ||
1096 bool Value::isInt() const { function in class:Json::Value
1170 return isInt() || isUInt();
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.h113 bool isInt() const { return EntryKind == E_Integer; } function in struct:llvm::DotDebugLocEntry
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp54 bool isZero() const { return isInt() ? !IntVal : getFpVal().isZero(); }
63 bool isOne() const { return isInt() && IntVal == 1; }
64 bool isTwo() const { return isInt() && IntVal == 2; }
65 bool isMinusOne() const { return isInt() && IntVal == -1; }
66 bool isMinusTwo() const { return isInt() && IntVal == -2; }
85 bool isInt() const { return !IsFp; } function in class:__anon13304::FAddendCoef
219 if (isInt()) {
230 if (!isInt())
254 if (That.isInt())
262 if (isInt()
[all...]
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp182 bool isInt() const { return !Float && ElementBitwidth == 32; } function in class:__anon3371::Type
/external/deqp/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp476 bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); local
491 else if (isInt)
501 else if (isInt)
/external/protobuf/conformance/third_party/jsoncpp/
H A Djsoncpp.cpp3066 JSON_ASSERT_MESSAGE(isInt(), "LargestInt out of Int range");
3069 JSON_ASSERT_MESSAGE(isInt(), "LargestUInt out of Int range");
3241 return isInt() ||
3633 bool Value::isInt() const { function in class:Json::Value
3707 return isInt() || isUInt();
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRenderOperatorTests.cpp738 const bool isInt = de::inRange<int>(inType, TYPE_INT, TYPE_INT_VEC4); local
754 else if (isInt || isUint)
764 else if (isInt || isUint)
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp3086 bool isInt = LHS.getValueType().isInteger(); local
3088 isInt);
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
H A DARMISelLowering.cpp6410 bool isInt = OpVT.isInteger(); local
6411 CC = ISD::getSetCCInverse(CC, isInt);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp4171 bool isInt = LHS.getValueType().isInteger(); local
4173 isInt);
/external/sqlite/dist/orig/
H A Dsqlite3.c165466 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c165478 int isInt = (pRtree->eCoordType==RTREE_COORD_INT32); local
[all...]

Completed in 3921 milliseconds