Searched refs:tempType (Results 1 – 7 of 7) sorted by relevance
/third_party/gptfdisk/ |
D | parttypes.cc | 61 AType* tempType; in ~PartType() local 66 tempType = allTypes; in ~PartType() 68 delete tempType; in ~PartType() 435 AType* tempType; in AddType() local 438 tempType = new AType; in AddType() 439 if (tempType != NULL) { in AddType() 440 tempType->MBRType = mbrType; in AddType() 441 tempType->GUIDType = guidData; in AddType() 442 tempType->name = name; in AddType() 443 tempType->display = toDisplay; in AddType() [all …]
|
D | gptpart.cc | 438 PartType tempType = PartType::unusedPartType; local 454 tempType = GetHexType(); 456 tempType = line; 458 } while (tempType == PartType::unusedPartType); 459 partitionType = tempType;
|
D | gptcurses.cc | 377 PartType tempType; in ChangeType() local 391 tempType = partitions[partNum].GetType().GetHexType(); in ChangeType() 392 tempType = temp; in ChangeType() 393 partitions[partNum].SetType(tempType); in ChangeType() 825 PartType tempType; in ShowTypes() local 830 tempType.ShowAllTypes(LINES - 3); in ShowTypes()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ssbo/ |
D | vktSSBOLayoutTests.cpp | 381 VarType tempType = type; in BlockBasicTypeCase() local 382 while (tempType.isArrayType()) in BlockBasicTypeCase() 384 tempType = tempType.getElementType(); in BlockBasicTypeCase() 386 if (getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_UINT16 || in BlockBasicTypeCase() 387 getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_INT16 || in BlockBasicTypeCase() 388 getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_FLOAT16) in BlockBasicTypeCase() 392 if (getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_UINT8 || in BlockBasicTypeCase() 393 getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_INT8) in BlockBasicTypeCase() 402 …block.addMember(BufferVar("padding", VarType(getDataTypeScalarType(tempType.getBasicType()), glu::… in BlockBasicTypeCase() 427 VarType tempType = elementType; in BlockBasicUnsizedArrayCase() local [all …]
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ubo/ |
D | vktUniformBlockTests.cpp | 48 VarType tempType = type; in BlockBasicTypeCase() local 49 while (tempType.isArrayType()) in BlockBasicTypeCase() 51 tempType = tempType.getElementType(); in BlockBasicTypeCase() 53 if (getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_UINT16 || in BlockBasicTypeCase() 54 getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_INT16 || in BlockBasicTypeCase() 55 getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_FLOAT16) in BlockBasicTypeCase() 59 if (getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_UINT8 || in BlockBasicTypeCase() 60 getDataTypeScalarType(tempType.getBasicType()) == glu::TYPE_INT8) in BlockBasicTypeCase() 69 …block.addUniform(Uniform("padding", VarType(getDataTypeScalarType(tempType.getBasicType()), 0), 0)… in BlockBasicTypeCase()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/ |
D | vktTransformFeedbackFuzzLayoutTests.cpp | 57 VarType tempType = type; in BlockBasicTypeCase() local 58 while (tempType.isArrayType()) in BlockBasicTypeCase() 60 tempType = tempType.getElementType(); in BlockBasicTypeCase()
|
/third_party/glslang/glslang/MachineIndependent/ |
D | ParseHelper.cpp | 7178 TType tempType(EbtFloat, EvqTemporary, type.getVectorSize()); in constructBuiltIn() local 7180 if (tempType != newNode->getType()) { in constructBuiltIn() 7186 … newNode = intermediate.setAggregateOperator(newNode, aggregateOp, tempType, node->getLoc()); in constructBuiltIn() 7201 TType tempType(EbtInt, EvqTemporary, type.getVectorSize()); in constructBuiltIn() local 7203 if (tempType != newNode->getType()) { in constructBuiltIn() 7209 … newNode = intermediate.setAggregateOperator(newNode, aggregateOp, tempType, node->getLoc()); in constructBuiltIn() 7224 TType tempType(EbtUint, EvqTemporary, type.getVectorSize()); in constructBuiltIn() local 7226 if (tempType != newNode->getType()) { in constructBuiltIn() 7232 … newNode = intermediate.setAggregateOperator(newNode, aggregateOp, tempType, node->getLoc()); in constructBuiltIn() 7247 TType tempType(EbtInt, EvqTemporary, type.getVectorSize()); in constructBuiltIn() local [all …]
|