/third_party/glslang/SPIRV/ |
H A D | SpvBuilder.h | 255 Op getTypeClass(Id typeId) const { return getOpCode(typeId); } in getTypeClass() 256 Op getMostBasicTypeClass(Id typeId) const; 258 int getNumTypeConstituents(Id typeId) const; 259 int getNumTypeComponents(Id typeId) const { return getNumTypeConstituents(typeId); } in getNumTypeComponents() 260 Id getScalarTypeId(Id typeId) const; 261 Id getContainedTypeId(Id typeId) const; 262 Id getContainedTypeId(Id typeId, int) const; 263 StorageClass getTypeStorageClass(Id typeId) cons 277 isBoolType(Id typeId) isBoolType() argument 349 Id typeId = getTypeId(resultId); getImageType() local [all...] |
H A D | SpvPostProcess.cpp | 64 void Builder::postProcessType(const Instruction& inst, Id typeId) in postProcessType() argument 67 Id basicTypeOp = getMostBasicTypeClass(typeId); in postProcessType() 70 width = getScalarTypeWidth(typeId); in postProcessType() 77 if (containsType(typeId, OpTypeInt, 8)) in postProcessType() 79 if (containsType(typeId, OpTypeInt, 16)) in postProcessType() 81 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType() 122 if (containsType(typeId, OpTypeFloat, 16) || containsType(typeId, OpTypeInt, 16)) { in postProcessType() 135 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType() 137 if (containsType(typeId, OpTypeIn in postProcessType() 252 Id typeId = base->getTypeId(); postProcess() local [all...] |
H A D | SpvBuilder.cpp | 171 Id typeId = getUniqueId(); in makeVoidType() local 172 type = new Instruction(typeId, NoType, OpTypeVoid); in makeVoidType() 178 debugId[typeId] = typeId; in makeVoidType() 650 Id typeId = getUniqueId(); in makeFunctionType() local 651 type = new Instruction(typeId, NoType, OpTypeFunction); in makeFunctionType() 662 debugId[typeId] = debugTypeId; in makeFunctionType() 672 Id typeId = getUniqueId(); in makeDebugFunctionType() local 673 auto type = new Instruction(typeId, makeVoidType(), OpExtInst); in makeDebugFunctionType() 688 return typeId; in makeDebugFunctionType() 1259 Id typeId = getTypeId(resultId); getDerefTypeId() local 1344 getContainedTypeId(Id typeId, int member) const getContainedTypeId() argument 1372 Id typeId = getTypeId(accessChain.base); getResultingAccessChainType() local 1397 containsType(Id typeId, spv::Op typeOp, unsigned int width) const containsType() argument 1451 findScalarConstant(Op typeClass, Op opcode, Id typeId, unsigned value) findScalarConstant() argument 1466 findScalarConstant(Op typeClass, Op opcode, Id typeId, unsigned v1, unsigned v2) findScalarConstant() argument 1531 makeNullConstant(Id typeId) makeNullConstant() argument 1557 Id typeId = makeBoolType(); makeBoolConstant() local 1584 makeIntConstant(Id typeId, unsigned value, bool specConstant) makeIntConstant() argument 1605 makeInt64Constant(Id typeId, unsigned long long value, bool specConstant) makeInt64Constant() argument 1633 Id typeId = makeFloatType(32); makeFloatConstant() local 1658 Id typeId = makeFloatType(64); makeDoubleConstant() local 1686 Id typeId = makeFloatType(16); makeFloat16Constant() local 1745 findCompositeConstant(Op typeClass, Id typeId, const std::vector<Id>& comps) findCompositeConstant() argument 1772 findStructConstant(Id typeId, const std::vector<Id>& comps) findStructConstant() argument 1797 makeCompositeConstant(Id typeId, const std::vector<Id>& members, bool specConstant) makeCompositeConstant() argument 2099 Id typeId = makeFunctionType(returnType, paramTypes); makeFunctionEntry() local 2466 Id typeId = getResultingAccessChainType(); createAccessChain() local 2524 createCompositeExtract(Id composite, Id typeId, unsigned index) createCompositeExtract() argument 2540 createCompositeExtract(Id composite, Id typeId, const std::vector<unsigned>& indexes) createCompositeExtract() argument 2556 createCompositeInsert(Id object, Id composite, Id typeId, unsigned index) createCompositeInsert() argument 2567 createCompositeInsert(Id object, Id composite, Id typeId, const std::vector<unsigned>& indexes) createCompositeInsert() argument 2579 createVectorExtractDynamic(Id vector, Id typeId, Id componentIndex) createVectorExtractDynamic() argument 2589 createVectorInsertDynamic(Id vector, Id typeId, Id component, Id componentIndex) createVectorInsertDynamic() argument 2656 createUnaryOp(Op opCode, Id typeId, Id operand) createUnaryOp() argument 2670 createBinOp(Op opCode, Id typeId, Id left, Id right) createBinOp() argument 2687 createTriOp(Op opCode, Id typeId, Id op1, Id op2, Id op3) createTriOp() argument 2708 createOp(Op opCode, Id typeId, const std::vector<Id>& operands) createOp() argument 2718 createOp(Op opCode, Id typeId, const std::vector<IdImmediate>& operands) createOp() argument 2732 createSpecConstantOp(Op opCode, Id typeId, const std::vector<Id>& operands, const std::vector<unsigned>& literals) createSpecConstantOp() argument 2767 createRvalueSwizzle(Decoration precision, Id typeId, Id source, const std::vector<unsigned>& channels) createRvalueSwizzle() argument 2789 createLvalueSwizzle(Id typeId, Id target, Id source, const std::vector<unsigned>& channels) createLvalueSwizzle() argument 3229 createCompositeConstruct(Id typeId, const std::vector<Id>& constituents) createCompositeConstruct() argument [all...] |
H A D | spvIR.h | 96 Instruction(Id resultId, Id typeId, Op opCode) : resultId(resultId), typeId(typeId), opCode(opCode), block(nullptr) { } in Instruction() argument 97 explicit Instruction(Op opCode) : resultId(NoResult), typeId(NoType), opCode(opCode), block(nullptr) { } in Instruction() 146 Id getTypeId() const { return typeId; } in getTypeId() 161 if (typeId) in dump() 169 if (typeId) in dump() 170 out.push_back(typeId); in dump() 182 Id typeId; member in spv::Instruction 453 StorageClass getStorageClass(Id typeId) cons in getTypeId() [all...] |
H A D | GlslangToSpv.cpp | 202 spv::Id createBinaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id right, 204 spv::Id createBinaryMatrixOperation(spv::Op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id right); 205 spv::Id createUnaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id operand, 208 spv::Id createUnaryMatrixOperation(spv::Op op, OpDecorations&, spv::Id typeId, spv::Id operand, 214 spv::Id createAtomicOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, 217 spv::Id createInvocationsOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, 220 spv::Id typeId, std::vector<spv::Id>& operands); 221 spv::Id createSubgroupOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, 223 spv::Id createMiscOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, 225 spv::Id createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId); 2542 spv::Id typeId = convertGlslangToSpvType(node->getOperand()->getType()); visitUnary() local 3666 spv::Id typeId = builder.getContainedTypeId(builder.getTypeId(operands[0])); visitAggregate() local 3701 spv::Id typeId = builder.makeArrayType(builder.makeVectorType(builder.makeFloatType(32), 3), visitAggregate() local 5479 spv::Id typeId = convertGlslangToSpvType(paramType); makeFunctions() local 6424 createBinaryOperation(glslang::TOperator op, OpDecorations& decorations, spv::Id typeId, spv::Id left, spv::Id right, glslang::TBasicType typeProxy, bool reduceComparison) createBinaryOperation() argument 6691 createBinaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId, spv::Id left, spv::Id right) createBinaryMatrixOperation() argument 6790 createUnaryOperation(glslang::TOperator op, OpDecorations& decorations, spv::Id typeId, spv::Id operand, glslang::TBasicType typeProxy, const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags) createUnaryOperation() argument 7323 createUnaryMatrixOperation(spv::Op op, OpDecorations& decorations, spv::Id typeId, spv::Id operand, glslang::TBasicType ) createUnaryMatrixOperation() argument 7793 createAtomicOperation(glslang::TOperator op, spv::Decoration , spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy, const spv::Builder::AccessChain::CoherentFlags &lvalueCoherentFlags) createAtomicOperation() argument 8000 createInvocationsOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy) createInvocationsOperation() argument 8210 CreateInvocationsVectorOperation(spv::Op op, spv::GroupOperation groupOperation, spv::Id typeId, std::vector<spv::Id>& operands) CreateInvocationsVectorOperation() argument 8269 createSubgroupOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy) createSubgroupOperation() argument 8611 createMiscOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, std::vector<spv::Id>& operands, glslang::TBasicType typeProxy) createMiscOperation() argument 9259 createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId) createNoArgOperation() argument 9795 spv::Id typeId = convertGlslangToSpvType(glslangType); createSpvConstantFromConstUnionArray() local [all...] |
H A D | disassemble.cpp | 111 void disassembleInstruction(Id resultId, Id typeId, Op opCode, int numOperands); 187 Id typeId = 0; in processInstructions() local 189 typeId = stream[word++]; in processInstructions() 204 outputTypeId(typeId); in processInstructions() 208 disassembleInstruction(resultId, typeId, opCode, numOperands); in processInstructions() 340 void SpirvStream::disassembleInstruction(Id resultId, Id /*typeId*/, Op opCode, int numOperands) in disassembleInstruction()
|
/third_party/protobuf/js/experimental/runtime/kernel/ |
H A D | message_set.js | 102 * @param {number} typeId 108 getMessageOrNull(typeId, instanceCreator, pivot) { 109 const item = this.itemMap_.get(typeId); 114 * @param {number} typeId 120 getMessageAttach(typeId, instanceCreator, pivot) { 121 let item = this.itemMap_.get(typeId); 126 this.setMessage(typeId, message); 131 * @param {number} typeId 135 getMessageAccessorOrNull(typeId, pivot) { 136 const item = this.itemMap_.get(typeId); [all...] |
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | BuildSPIRV.cpp | 626 spirv::IdRef SPIRVBuilder::getTypePointerId(spirv::IdRef typeId, spv::StorageClass storageClass) in getTypePointerId() argument 628 SpirvIdAndStorageClass key{typeId, storageClass}; in getTypePointerId() 635 spirv::WriteTypePointer(&mSpirvTypePointerDecls, typePointerId, storageClass, typeId); in getTypePointerId() 731 spirv::IdRef typeId; in declareType() local 751 typeId = getNewId({}); in declareType() 752 spirv::WriteTypeRuntimeArray(&mSpirvTypeAndConstantDecls, typeId, subTypeId); in declareType() 757 typeId = getNewId({}); in declareType() 758 spirv::WriteTypeArray(&mSpirvTypeAndConstantDecls, typeId, subTypeId, lengthId); in declareType() 780 typeId = getNewId({}); in declareType() 781 spirv::WriteTypeStruct(&mSpirvTypeAndConstantDecls, typeId, fieldTypeId in declareType() 1325 const spirv::IdRef typeId = getSpirvTypeData(spirvType, nullptr).id; getBasicConstantHelper() local 1356 getNullConstant(spirv::IdRef typeId) getNullConstant() argument 1394 const spirv::IdRef typeId = getSpirvTypeData(vecType, nullptr).id; getVectorConstantHelper() local 1433 getCompositeConstant(spirv::IdRef typeId, const spirv::IdRefList &values) getCompositeConstant() argument 1485 declareVariable(spirv::IdRef typeId, spv::StorageClass storageClass, const SpirvDecorations &decorations, spirv::IdRef *initializerId, const char *name) declareVariable() argument 1521 const spirv::IdRef typeId = getSpirvTypeData(spirvType, nullptr).id; declareSpecConst() local 1694 writePerVertexBuiltIns(const TType &type, spirv::IdRef typeId) writePerVertexBuiltIns() argument 1939 writeMemberDecorations(const SpirvType &type, spirv::IdRef typeId) writeMemberDecorations() argument [all...] |
H A D | OutputSPIRV.cpp | 222 // determine the typeId passed to |accessChainPush*|). 224 void accessChainPush(NodeData *data, spirv::IdRef index, spirv::IdRef typeId) const; 227 spirv::IdRef typeId) const; 230 spirv::IdRef typeId, 232 void accessChainPushDynamicComponent(NodeData *data, spirv::IdRef index, spirv::IdRef typeId); 247 spirv::IdRef typeId, 250 void nodeDataInitRValue(NodeData *data, spirv::IdRef baseId, spirv::IdRef typeId) const; 259 spirv::IdRef typeId, 261 spirv::IdRef createConstructor(TIntermAggregate *node, spirv::IdRef typeId); 263 spirv::IdRef typeId, 669 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; getSymbolIdAndStorageClass() local 687 nodeDataInitLValue(NodeData *data, spirv::IdRef baseId, spirv::IdRef typeId, spv::StorageClass storageClass, const SpirvTypeSpec &typeSpec) const nodeDataInitLValue() argument 770 accessChainPushSwizzle(NodeData *data, const TVector<int> &swizzle, spirv::IdRef typeId, uint8_t componentCount) const accessChainPushSwizzle() argument 797 accessChainPushDynamicComponent(NodeData *data, spirv::IdRef index, spirv::IdRef typeId) accessChainPushDynamicComponent() argument 1138 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; declareConst() local 1188 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; createConstant() local 1277 createComplexConstant(const TType &type, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createComplexConstant() argument 1306 createConstructor(TIntermAggregate *node, spirv::IdRef typeId) createConstructor() argument 1433 createArrayOrStructConstructor( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createArrayOrStructConstructor() argument 1444 createConstructorScalarFromNonScalar( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorScalarFromNonScalar() argument 1471 createConstructorVectorFromScalar( const TType ¶meterType, const TType &expectedType, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorVectorFromScalar() argument 1491 createConstructorVectorFromMatrix( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorVectorFromMatrix() argument 1527 createConstructorVectorFromMultiple( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorVectorFromMultiple() argument 1580 createConstructorMatrixFromScalar( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorMatrixFromScalar() argument 1648 createConstructorMatrixFromVectors( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorMatrixFromVectors() argument 1689 createConstructorMatrixFromMatrix( TIntermAggregate *node, spirv::IdRef typeId, const spirv::IdRefList ¶meters) createConstructorMatrixFromMatrix() argument 1947 spirv::IdRef typeId; startShortCircuit() local 1971 endShortCircuit(TIntermBinary *node, spirv::IdRef *typeId) endShortCircuit() argument 4460 reduceBoolVector(TOperator op, const spirv::IdRefList &valueIds, spirv::IdRef typeId, const SpirvDecorations &decorations) reduceBoolVector() argument 4789 const spirv::IdRef typeId = mBuilder.getTypeData(type, typeSpec).id; visitSymbol() local 4867 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; visitConstantUnion() local 4907 const spirv::IdRef typeId = visitSwizzle() local 4945 spirv::IdRef typeId; visitBinary() local 4972 const spirv::IdRef typeId = visitBinary() local 5112 spirv::IdRef typeId; visitTernary() local 5152 spirv::IdRef typeId; visitTernary() local 5916 const spirv::IdRef typeId = mBuilder.getTypeData(type, {}).id; visitDeclaration() local [all...] |
H A D | BuildSPIRV.h | 313 spirv::IdRef getTypePointerId(spirv::IdRef typeId, spv::StorageClass storageClass); 362 void writePerVertexBuiltIns(const TType &type, spirv::IdRef typeId); 390 spirv::IdRef getCompositeConstant(spirv::IdRef typeId, const spirv::IdRefList &values); 391 spirv::IdRef getNullConstant(spirv::IdRef typeId); 399 spirv::IdRef declareVariable(spirv::IdRef typeId, 432 spirv::IdRef typeId, 434 void writeMemberDecorations(const SpirvType &type, spirv::IdRef typeId); 515 // Keyed by typeId, returns the null constant corresponding to that type.
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
H A D | glslang_wrapper_utils.cpp | 1065 void visitTypePointer(spirv::IdResult id, spv::StorageClass storageClass, spirv::IdRef typeId); 1069 SpirvVariableType visitVariable(spirv::IdResultType typeId, 1075 void visitTypeHelper(spirv::IdResult id, spirv::IdRef typeId); 1081 bool isPerVertex(spirv::IdRef typeId) const in isPerVertex() 1083 return typeId == mOutputPerVertex.typeId || typeId == mInputPerVertex.typeId; in isPerVertex() 1085 uint32_t getPerVertexMaxActiveMember(spirv::IdRef typeId) const in getPerVertexMaxActiveMember() 1087 ASSERT(isPerVertex(typeId)); in getPerVertexMaxActiveMember() 1122 spirv::IdRef typeId; global() member 1223 visitTypeHelper(spirv::IdResult id, spirv::IdRef typeId) visitTypeHelper() argument 3294 spirv::IdRef typeId; visitTypePointer() local 3315 spirv::IdResultType typeId; visitVariable() local [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | SpirvShader.cpp | 265 Type::ID typeId = insn.word(1); in robustBufferAccess() local 273 ASSERT(getType(typeId).definition.opcode() == spv::OpTypePointer); in robustBufferAccess() 274 ASSERT(getType(typeId).storageClass == storageClass); in robustBufferAccess() 299 auto &elTy = getType(getType(typeId).element); in robustBufferAccess() 842 Type::ID typeId = insn.word(1); in CreateConstant() local 845 auto &objectTy = getType(typeId); in CreateConstant() 1139 ApplyDecorationsForId(d, baseObject.typeId()); in ApplyDecorationsForAccessChain() 1140 auto typeId = getType(baseObject).element; in ApplyDecorationsForAccessChain() local 1144 ApplyDecorationsForId(d, typeId); in ApplyDecorationsForAccessChain() 1145 auto &type = getType(typeId); in ApplyDecorationsForAccessChain() 1181 Type::ID typeId = getType(baseObject).element; WalkExplicitLayoutAccessChain() local 1293 Type::ID typeId = getType(baseObject).element; WalkAccessChain() local 1372 WalkLiteralAccessChain(Type::ID typeId, uint32_t numIndexes, uint32_t const *indexes) const WalkLiteralAccessChain() argument 1563 Type::ID typeId = insn.word(1); DefineResult() local 2083 Type::ID typeId = insn.word(1); EmitAccessChain() local [all...] |
H A D | SpirvShaderMemory.cpp | 37 ASSERT(getType(pointer).element == result.typeId()); in EmitLoad() 38 ASSERT(Type::ID(insn.word(1)) == result.typeId()); in EmitLoad() 353 auto typeId = getObject(id).typeId(); in VisitMemoryObject() local 354 auto const &type = getType(typeId); in VisitMemoryObject() 361 VisitMemoryObjectInner(typeId, d, index, 0, f); in VisitMemoryObject()
|
/third_party/mesa3d/src/compiler/clc/ |
H A D | clc_helpers.cpp | 90 SPIRVKernelArg(uint32_t id, uint32_t typeId) : id(id), typeId(typeId), in SPIRVKernelArg() argument 97 uint32_t typeId; member in SPIRVKernelArg 174 uint32_t id, typeId; in parseFunctionParam() local 182 typeId = ins->words[op->offset]; in parseFunctionParam() 186 curKernel->args.push_back(SPIRVKernelArg(id, typeId)); in parseFunctionParam() 217 uint32_t typeId, storageClass; in parseTypePointer() local 224 typeId = ins->words[op->offset]; in parseTypePointer() 246 if (arg.typeId in parseTypePointer() 418 uint32_t typeId; parseOpTypeImage() local 480 uint32_t typeId = ins->words[ins->operands[0].offset]; parseLiteralType() local 556 uint32_t typeId = ins->words[ins->operands[0].offset]; parseSpecConstant() local [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | MessageSetSchema.java | 170 int typeId = 0; in mergeFrom() 182 typeId = registers.int1; in mergeFrom() 185 .findExtensionByNumber(registers.extensionRegistry, defaultInstance, typeId); in mergeFrom() 216 WireFormat.makeTag(typeId, WireFormat.WIRETYPE_LENGTH_DELIMITED), rawBytes); in mergeFrom() 303 // required int32 typeId = 2; in parseMessageSetItemOrUnknownField() 307 // "typeId" is the extension's field number. The extension can only be in parseMessageSetItemOrUnknownField() 316 int typeId = 0; in parseMessageSetItemOrUnknownField() 317 ByteString rawBytes = null; // If we encounter "message" before "typeId" in parseMessageSetItemOrUnknownField() 331 typeId = reader.readUInt32(); in parseMessageSetItemOrUnknownField() 333 extensionSchema.findExtensionByNumber(extensionRegistry, defaultInstance, typeId); in parseMessageSetItemOrUnknownField() [all...] |
H A D | MessageReflection.java | 885 // required int32 typeId = 2; in mergeMessageSetExtensionFromCodedStream() 889 // "typeId" is the extension's field number. The extension can only be in mergeMessageSetExtensionFromCodedStream() 898 int typeId = 0; in mergeMessageSetExtensionFromCodedStream() 899 ByteString rawBytes = null; // If we encounter "message" before "typeId" in mergeMessageSetExtensionFromCodedStream() 911 typeId = input.readUInt32(); in mergeMessageSetExtensionFromCodedStream() 912 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream() 920 target.findExtensionByNumber((ExtensionRegistry) extensionRegistry, type, typeId); in mergeMessageSetExtensionFromCodedStream() 925 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream() 946 if (rawBytes != null && typeId != 0) { // Zero is not a valid type ID. in mergeMessageSetExtensionFromCodedStream() 952 typeId, UnknownFieldSe in mergeMessageSetExtensionFromCodedStream() [all...] |
H A D | GeneratedMessageLite.java | 693 // required int32 typeId = 2; in mergeMessageSetExtensionFromCodedStream() 697 // "typeId" is the extension's field number. The extension can only be in mergeMessageSetExtensionFromCodedStream() 706 int typeId = 0; in mergeMessageSetExtensionFromCodedStream() 707 ByteString rawBytes = null; // If we encounter "message" before "typeId" in mergeMessageSetExtensionFromCodedStream() 719 typeId = input.readUInt32(); in mergeMessageSetExtensionFromCodedStream() 720 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream() 721 extension = extensionRegistry.findLiteExtensionByNumber(defaultInstance, typeId); in mergeMessageSetExtensionFromCodedStream() 725 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream() 729 eagerlyMergeMessageSetExtension(input, extension, extensionRegistry, typeId); in mergeMessageSetExtensionFromCodedStream() 746 if (rawBytes != null && typeId ! in mergeMessageSetExtensionFromCodedStream() 757 eagerlyMergeMessageSetExtension( CodedInputStream input, GeneratedExtension<?, ?> extension, ExtensionRegistryLite extensionRegistry, int typeId) eagerlyMergeMessageSetExtension() argument [all...] |
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkDeviceFeatures.hpp | 43 const deUint32 typeId; member 158 const deUint32 featureId = featDesc.typeId; in getFeatureType() 186 deUint32 getFeatureTypeId (void) const { return m_featureDesc.typeId; } in getFeatureTypeId()
|
H A D | vkDeviceProperties.hpp | 43 const deUint32 typeId; member 156 const deUint32 propertyId = propDesc.typeId; in getPropertyType() 184 deUint32 getPropertyTypeId (void) const { return m_propertyDesc.typeId; } in getPropertyTypeId()
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | inline_opaque_pass.cpp | 29 bool InlineOpaquePass::IsOpaqueType(uint32_t typeId) { in IsOpaqueType() argument 30 const Instruction* typeInst = get_def_use_mgr()->GetDef(typeId); in IsOpaqueType()
|
H A D | inline_opaque_pass.h | 42 // Return true if |typeId| is or contains opaque type 43 bool IsOpaqueType(uint32_t typeId);
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | inline_opaque_pass.cpp | 29 bool InlineOpaquePass::IsOpaqueType(uint32_t typeId) { in IsOpaqueType() argument 30 const Instruction* typeInst = get_def_use_mgr()->GetDef(typeId); in IsOpaqueType()
|
H A D | inline_opaque_pass.h | 42 // Return true if |typeId| is or contains opaque type 43 bool IsOpaqueType(uint32_t typeId);
|
/third_party/spirv-tools/source/opt/ |
H A D | inline_opaque_pass.cpp | 27 bool InlineOpaquePass::IsOpaqueType(uint32_t typeId) { in IsOpaqueType() argument 28 const Instruction* typeInst = get_def_use_mgr()->GetDef(typeId); in IsOpaqueType()
|
H A D | inline_opaque_pass.h | 42 // Return true if |typeId| is or contains opaque type 43 bool IsOpaqueType(uint32_t typeId);
|