Home
last modified time | relevance | path

Searched refs:typeId (Results 1 – 25 of 61) sorted by relevance

123

/external/deqp-deps/glslang/SPIRV/
DSpvBuilder.h166 Op getTypeClass(Id typeId) const { return getOpCode(typeId); } in getTypeClass() argument
167 Op getMostBasicTypeClass(Id typeId) const;
169 int getNumTypeConstituents(Id typeId) const;
170 int getNumTypeComponents(Id typeId) const { return getNumTypeConstituents(typeId); } in getNumTypeComponents() argument
171 Id getScalarTypeId(Id typeId) const;
172 Id getContainedTypeId(Id typeId) const;
173 Id getContainedTypeId(Id typeId, int) const;
174 StorageClass getTypeStorageClass(Id typeId) const { return module.getStorageClass(typeId); } in getTypeStorageClass() argument
175 …ImageFormat getImageTypeFormat(Id typeId) const { return (ImageFormat)module.getInstruction(typeId in getImageTypeFormat() argument
184 …bool isBoolType(Id typeId) { return groupedTypes[OpTypeBool].size() > 0 && typeId ==… in isBoolType() argument
[all …]
DSpvPostProcess.cpp67 void Builder::postProcessType(const Instruction& inst, Id typeId) in postProcessType() argument
70 Id basicTypeOp = getMostBasicTypeClass(typeId); in postProcessType()
73 width = getScalarTypeWidth(typeId); in postProcessType()
80 if (containsType(typeId, OpTypeInt, 8)) in postProcessType()
82 if (containsType(typeId, OpTypeInt, 16)) in postProcessType()
84 if (containsType(typeId, OpTypeFloat, 16)) in postProcessType()
130 if (getSpvVersion() < glslang::EShTargetSpv_1_3 && containsType(typeId, OpTypeInt, 16)) in postProcessType()
136 … if (getSpvVersion() < glslang::EShTargetSpv_1_3 && containsType(typeId, OpTypeFloat, 16)) in postProcessType()
207 Id typeId = base->getTypeId(); in postProcess() local
208 Instruction *type = module.getInstruction(typeId); in postProcess()
[all …]
DSpvBuilder.cpp580 Id typeId = getTypeId(resultId); in getDerefTypeId() local
581 assert(isPointerType(typeId)); in getDerefTypeId()
583 return module.getInstruction(typeId)->getIdOperand(1); in getDerefTypeId()
586 Op Builder::getMostBasicTypeClass(Id typeId) const in getMostBasicTypeClass()
588 Instruction* instr = module.getInstruction(typeId); in getMostBasicTypeClass()
605 int Builder::getNumTypeConstituents(Id typeId) const in getNumTypeConstituents()
607 Instruction* instr = module.getInstruction(typeId); in getNumTypeConstituents()
635 Id Builder::getScalarTypeId(Id typeId) const in getScalarTypeId()
637 Instruction* instr = module.getInstruction(typeId); in getScalarTypeId()
653 return getScalarTypeId(getContainedTypeId(typeId)); in getScalarTypeId()
[all …]
DspvIR.h94 …Instruction(Id resultId, Id typeId, Op opCode) : resultId(resultId), typeId(typeId), opCode(opCode… in Instruction() argument
95 …explicit Instruction(Op opCode) : resultId(NoResult), typeId(NoType), opCode(opCode), block(nullpt… 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; variable
367 StorageClass getStorageClass(Id typeId) const in getStorageClass() argument
369 assert(idToInstruction[typeId]->getOpCode() == spv::OpTypePointer); in getStorageClass()
370 return (StorageClass)idToInstruction[typeId]->getImmediateOperand(0); in getStorageClass()
DGlslangToSpv.cpp179 …spv::Id createBinaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id left,…
181 …spv::Id createBinaryMatrixOperation(spv::Op, OpDecorations&, spv::Id typeId, spv::Id left, spv::Id…
182 …spv::Id createUnaryOperation(glslang::TOperator op, OpDecorations&, spv::Id typeId, spv::Id operan…
184 spv::Id createUnaryMatrixOperation(spv::Op op, OpDecorations&, spv::Id typeId, spv::Id operand,
190 …spv::Id createAtomicOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, st…
191 …spv::Id createInvocationsOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& op…
192 …sVectorOperation(spv::Op op, spv::GroupOperation groupOperation, spv::Id typeId, std::vector<spv::…
193 …spv::Id createSubgroupOperation(glslang::TOperator op, spv::Id typeId, std::vector<spv::Id>& opera…
194 …spv::Id createMiscOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId, std:…
195 spv::Id createNoArgOperation(glslang::TOperator op, spv::Decoration precision, spv::Id typeId);
[all …]
/external/python/pyasn1/pyasn1/codec/native/
Ddecoder.py97 univ.Integer.typeId: AbstractScalarDecoder(),
98 univ.Boolean.typeId: AbstractScalarDecoder(),
99 univ.BitString.typeId: BitStringDecoder(),
100 univ.OctetString.typeId: AbstractScalarDecoder(),
101 univ.Null.typeId: AbstractScalarDecoder(),
102 univ.ObjectIdentifier.typeId: AbstractScalarDecoder(),
103 univ.Enumerated.typeId: AbstractScalarDecoder(),
104 univ.Real.typeId: AbstractScalarDecoder(),
106 univ.Set.typeId: SequenceOrSetDecoder(),
107 univ.SetOf.typeId: SequenceOfOrSetOfDecoder(),
[all …]
Dencoder.py137 univ.Set.typeId: SetEncoder(),
138 univ.SetOf.typeId: SequenceOfEncoder(),
139 univ.Sequence.typeId: SequenceEncoder(),
140 univ.SequenceOf.typeId: SequenceOfEncoder(),
141 univ.Choice.typeId: ChoiceEncoder(),
142 univ.Any.typeId: AnyEncoder()
169 concreteEncoder = self.__typeMap[value.typeId]
/external/python/pyasn1/pyasn1/codec/ber/
Dencoder.py569 univ.Boolean.typeId: BooleanEncoder(),
570 univ.Integer.typeId: IntegerEncoder(),
571 univ.BitString.typeId: BitStringEncoder(),
572 univ.OctetString.typeId: OctetStringEncoder(),
573 univ.Null.typeId: NullEncoder(),
574 univ.ObjectIdentifier.typeId: ObjectIdentifierEncoder(),
575 univ.Enumerated.typeId: IntegerEncoder(),
576 univ.Real.typeId: RealEncoder(),
578 univ.Set.typeId: SequenceEncoder(),
579 univ.SetOf.typeId: SequenceOfEncoder(),
[all …]
Ddecoder.py510 if asn1Spec.typeId in (univ.Sequence.typeId, univ.Set.typeId):
514 isSetType = asn1Spec.typeId == univ.Set.typeId
638 if asn1Spec.typeId in (univ.Sequence.typeId, univ.Set.typeId):
642 isSetType = asn1Object.typeId == univ.Set.typeId
1018 univ.Set.typeId: SetDecoder(),
1019 univ.SetOf.typeId: SetOfDecoder(),
1020 univ.Sequence.typeId: SequenceDecoder(),
1021 univ.SequenceOf.typeId: SequenceOfDecoder(),
1022 univ.Choice.typeId: ChoiceDecoder(),
1023 univ.Any.typeId: AnyDecoder()
[all …]
/external/python/pyasn1/pyasn1/type/
Dchar.py158 typeId = AbstractCharacterString.getTypeId() variable in NumericString
173 typeId = AbstractCharacterString.getTypeId() variable in PrintableString
188 typeId = AbstractCharacterString.getTypeId() variable in TeletexString
195 typeId = AbstractCharacterString.getTypeId() variable in T61String
210 typeId = AbstractCharacterString.getTypeId() variable in VideotexString
225 typeId = AbstractCharacterString.getTypeId() variable in IA5String
240 typeId = AbstractCharacterString.getTypeId() variable in GraphicString
255 typeId = AbstractCharacterString.getTypeId() variable in VisibleString
262 typeId = AbstractCharacterString.getTypeId() variable in ISO646String
276 typeId = AbstractCharacterString.getTypeId() variable in GeneralString
[all …]
Duseful.py31 typeId = char.GraphicString.getTypeId() variable in ObjectDescriptor
169 typeId = char.VideotexString.getTypeId() variable in GeneralizedTime
186 typeId = char.VideotexString.getTypeId() variable in UTCTime
/external/python/pyasn1/pyasn1/codec/cer/
Dencoder.py95 if asn1Spec.typeId == univ.Choice.typeId and not asn1Spec.tagSet:
228 univ.Sequence.typeId: SequenceEncoder()
233 univ.Boolean.typeId: BooleanEncoder(),
234 univ.Real.typeId: RealEncoder(),
235 useful.GeneralizedTime.typeId: GeneralizedTimeEncoder(),
236 useful.UTCTime.typeId: UTCTimeEncoder(),
238 univ.Set.typeId: SetEncoder(),
239 univ.SetOf.typeId: SetOfEncoder(),
240 univ.Sequence.typeId: SequenceEncoder(),
241 univ.SequenceOf.typeId: SequenceOfEncoder()
Ddecoder.py55 typeId = typeDecoder.protoComponent.__class__.typeId variable
56 if typeId is not None and typeId not in typeMap:
57 typeMap[typeId] = typeDecoder
/external/python/pyasn1/pyasn1/codec/der/
Ddecoder.py35 typeId = typeDecoder.protoComponent.__class__.typeId variable
36 if typeId is not None and typeId not in typeMap:
37 typeMap[typeId] = typeDecoder
Dencoder.py28 if compType.typeId == univ.Choice.typeId and not compType.tagSet:
54 univ.Set.typeId: SetEncoder()
/external/google-fruit/include/fruit/impl/data_structures/
Dfixed_size_allocator.defn.h46 inline void FixedSizeAllocator::FixedSizeAllocatorData::addType(TypeId typeId) { in addType() argument
48 types[typeId]++; in addType()
50 if (!typeId.type_info->isTriviallyDestructible()) { in addType()
53 total_size += maximumRequiredSpace(typeId); in addType()
56 inline void FixedSizeAllocator::FixedSizeAllocatorData::addExternallyAllocatedType(TypeId typeId) { in addExternallyAllocatedType() argument
57 (void)typeId; in addExternallyAllocatedType()
Dfixed_size_allocator.h80 void addType(TypeId typeId);
85 void addExternallyAllocatedType(TypeId typeId);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedTypedExceptionHandler.java38 private final int typeId; field in DexBackedTypedExceptionHandler
43 this.typeId = reader.readSmallUleb128(); in DexBackedTypedExceptionHandler()
47 @Nonnull @Override public String getExceptionType() { return dexFile.getType(typeId); } in getExceptionType()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/
DJDWPProxyTestCase.java102 private boolean IsProxy(long typeId, long proxyClassId) { in IsProxy() argument
103 if (typeId == proxyClassId) { in IsProxy()
105 } else if (typeId == 0) { in IsProxy()
108 return IsProxy(debuggeeWrapper.vmMirror.getSuperclassId(typeId), in IsProxy()
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
DEventLocationEventTestCase.java93 long typeId = getClassIDBySignature(getDebuggeeClassSignature()); in requestEventForAllLocations() local
94 long methodId = getMethodID(typeId, getExpectedLocationMethodName()); in requestEventForAllLocations()
97 ReplyPacket replyPacket = getLineTable(typeId, methodId); in requestEventForAllLocations()
110 typeId, methodId, idx); in requestEventForAllLocations()
/external/protobuf/objectivec/Tests/
DGPBWireFormatTests.m163 XCTAssertEqual((uint32_t)[raw.itemArray[0] typeId],
165 XCTAssertEqual((uint32_t)[raw.itemArray[1] typeId],
167 XCTAssertEqual([raw.itemArray[2] typeId], kUnknownTypeId);
189 item.typeId = [TestMessageSetExtension1 messageSetExtension].fieldNumber;
198 item.typeId = [TestMessageSetExtension2 messageSetExtension].fieldNumber;
207 item.typeId = kUnknownTypeId;
/external/deqp-deps/SPIRV-Tools/source/opt/
Dinline_opaque_pass.cpp29 bool InlineOpaquePass::IsOpaqueType(uint32_t typeId) { in IsOpaqueType() argument
30 const Instruction* typeInst = get_def_use_mgr()->GetDef(typeId); in IsOpaqueType()
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dinline_opaque_pass.cpp29 bool InlineOpaquePass::IsOpaqueType(uint32_t typeId) { in IsOpaqueType() argument
30 const Instruction* typeInst = get_def_use_mgr()->GetDef(typeId); in IsOpaqueType()
/external/icu/icu4c/source/i18n/unicode/
Dmeasunit.h1362 MeasureUnit(int32_t typeId, int32_t subTypeId) : fTypeId(typeId), fSubTypeId(subTypeId) { in MeasureUnit() argument
1365 void setTo(int32_t typeId, int32_t subTypeId);
1367 static MeasureUnit *create(int typeId, int subTypeId, UErrorCode &status);
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DMessageReflection.java898 int typeId = 0; in mergeMessageSetExtensionFromCodedStream() local
911 typeId = input.readUInt32(); in mergeMessageSetExtensionFromCodedStream()
912 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream()
920 (ExtensionRegistry) extensionRegistry, type, typeId); in mergeMessageSetExtensionFromCodedStream()
925 if (typeId != 0) { in mergeMessageSetExtensionFromCodedStream()
948 if (rawBytes != null && typeId != 0) { // Zero is not a valid type ID. in mergeMessageSetExtensionFromCodedStream()
954 unknownFields.mergeField(typeId, UnknownFieldSet.Field.newBuilder() in mergeMessageSetExtensionFromCodedStream()

123