Home
last modified time | relevance | path

Searched refs:IdType (Results 1 – 15 of 15) sorted by relevance

/external/deqp-deps/SPIRV-Tools/source/
Dtext_handler.h46 struct IdType { struct
53 inline bool operator==(const IdType& first, const IdType& second) {
60 inline bool operator!=(const IdType& first, const IdType& second) {
65 extern const IdType kUnknownType;
68 inline bool isScalarIntegral(const IdType& type) { in isScalarIntegral()
73 inline bool isScalarFloating(const IdType& type) { in isScalarFloating()
80 inline int assumedBitWidth(const IdType& type) { in assumedBitWidth()
203 const IdType& type,
209 IdType getTypeOfTypeGeneratingValue(uint32_t value) const;
215 IdType getTypeOfValueInstruction(uint32_t value) const;
[all …]
Dtext_handler.cpp151 const IdType kUnknownType = {0, false, IdTypeClass::kBottom};
240 const char* val, spv_result_t error_code, const IdType& type, in binaryEncodeNumericLiteral()
344 IdType AssemblyContext::getTypeOfTypeGeneratingValue(uint32_t value) const { in getTypeOfTypeGeneratingValue()
352 IdType AssemblyContext::getTypeOfValueInstruction(uint32_t value) const { in getTypeOfValueInstruction()
Dtext.cpp283 spvtools::IdType expected_type = { in spvTextEncodeOperand()
303 spvtools::IdType expected_type = spvtools::kUnknownType; in spvTextEncodeOperand()
/external/swiftshader/third_party/SPIRV-Tools/source/
Dtext_handler.h46 struct IdType { struct
53 inline bool operator==(const IdType& first, const IdType& second) {
60 inline bool operator!=(const IdType& first, const IdType& second) {
65 extern const IdType kUnknownType;
68 inline bool isScalarIntegral(const IdType& type) { in isScalarIntegral()
73 inline bool isScalarFloating(const IdType& type) { in isScalarFloating()
80 inline int assumedBitWidth(const IdType& type) { in assumedBitWidth()
203 const IdType& type,
209 IdType getTypeOfTypeGeneratingValue(uint32_t value) const;
215 IdType getTypeOfValueInstruction(uint32_t value) const;
[all …]
Dtext_handler.cpp151 const IdType kUnknownType = {0, false, IdTypeClass::kBottom};
240 const char* val, spv_result_t error_code, const IdType& type, in binaryEncodeNumericLiteral()
344 IdType AssemblyContext::getTypeOfTypeGeneratingValue(uint32_t value) const { in getTypeOfTypeGeneratingValue()
352 IdType AssemblyContext::getTypeOfValueInstruction(uint32_t value) const { in getTypeOfValueInstruction()
Dtext.cpp283 spvtools::IdType expected_type = { in spvTextEncodeOperand()
303 spvtools::IdType expected_type = spvtools::kUnknownType; in spvTextEncodeOperand()
/external/perfetto/src/tracing/core/
Did_allocator_unittest.cc25 using IdType = uint32_t; in TEST() typedef
26 const IdType kMaxId = 1023; in TEST()
27 IdAllocator<IdType> id_allocator(kMaxId); in TEST()
30 std::set<IdType> ids; in TEST()
31 for (IdType i = 1; i <= kMaxId; i++) { in TEST()
58 for (IdType i = 0; i < kMaxId; i++) in TEST()
/external/clang/test/SemaObjCXX/
Darc-bridged-cast.mm17 template<typename IdType, typename StringType, typename IntPtrType>
19 id obj1 = (__bridge_transfer IdType)CFCreateSomething();
22 id obj3 = (__bridge IdType)CFGetSomething();
28 template<typename IdType, typename StringType>
30 CFTypeRef cf1 = (__bridge_retained IdType)CreateSomething();
32 CFTypeRef cf3 = (__bridge IdType)CreateSomething();
/external/webrtc/webrtc/libjingle/xmpp/
Dmucroomlookuptask.h32 enum IdType { enum
/external/skqp/platform_tools/android/tradefed/
Dupload_dm_results.py30 gs_utils.GSUtils.IdType.GROUP_BY_DOMAIN,
/external/skia/platform_tools/android/tradefed/
Dupload_dm_results.py30 gs_utils.GSUtils.IdType.GROUP_BY_DOMAIN,
/external/swiftshader/third_party/SPIRV-Tools/test/
Dtext_literal_test.cpp177 IdType expected_type{test.bitwidth, test.is_signed, type}; in successfulEncode()
192 IdType expected_type{test.bitwidth, test.is_signed, type}; in failedEncode()
/external/deqp-deps/SPIRV-Tools/test/
Dtext_literal_test.cpp177 IdType expected_type{test.bitwidth, test.is_signed, type}; in successfulEncode()
192 IdType expected_type{test.bitwidth, test.is_signed, type}; in failedEncode()
/external/clang/lib/CodeGen/
DCGObjCMac.cpp239 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getGetPropertyFn() local
242 IdType, SelType, in getGetPropertyFn()
246 Types.arrangeBuiltinFunctionDeclaration(IdType, Params)); in getGetPropertyFn()
254 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getSetPropertyFn() local
257 IdType, in getSetPropertyFn()
260 IdType, in getSetPropertyFn()
282 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getOptimizedSetPropertyFn() local
284 Params.push_back(IdType); in getOptimizedSetPropertyFn()
286 Params.push_back(IdType); in getOptimizedSetPropertyFn()
/external/v8/src/ast/
Dast.h2220 enum IdType { kIdTypeInvalid = -1, kIdTypeTopLevel = 0 }; enum