Searched refs:typedNode (Results 1 – 5 of 5) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | Intermediate.cpp | 3824 TIntermTyped* typedNode = operands[i]->getAsTyped(); in updatePrecision() local 3825 assert(typedNode); in updatePrecision() 3826 maxPrecision = std::max(maxPrecision, typedNode->getQualifier().precision); in updatePrecision() 3830 TIntermTyped* typedNode = operands[i]->getAsTyped(); in updatePrecision() local 3831 assert(typedNode); in updatePrecision() 3832 typedNode->propagatePrecision(maxPrecision); in updatePrecision() 3887 TIntermTyped* typedNode = operands[i]->getAsTyped(); in propagatePrecision() local 3888 if (! typedNode) in propagatePrecision() 3890 typedNode->propagatePrecision(newPrecision); in propagatePrecision() 3898 TIntermTyped* typedNode = selectionNode->getTrueBlock()->getAsTyped(); in propagatePrecision() local [all …]
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
D | ParseHelper.cpp | 2185 TIntermTyped* typedNode; in addConstVectorNode() local 2220 typedNode = intermediate.addConstantUnion(constArray, type, line); in addConstVectorNode() 2221 return typedNode; in addConstVectorNode() 2232 TIntermTyped* typedNode; in addConstMatrixNode() local 2247 …typedNode = intermediate.addConstantUnion(&unionArray[size*index], tempConstantNode->getType(), li… in addConstMatrixNode() 2255 return typedNode; in addConstMatrixNode() 2267 TIntermTyped* typedNode; in addConstArrayNode() local 2285 …typedNode = intermediate.addConstantUnion(&unionArray[arrayElementSize * index], tempConstantNode-… in addConstArrayNode() 2293 return typedNode; in addConstArrayNode() 2305 TIntermTyped *typedNode; in addConstStruct() local [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | CollectVariables.cpp | 1069 const TIntermTyped &typedNode = *(sequence.front()->getAsTyped()); in visitDeclaration() local 1070 TQualifier qualifier = typedNode.getQualifier(); in visitDeclaration() 1076 if (typedNode.getBasicType() != EbtInterfaceBlock && !isShaderVariable) in visitDeclaration() 1098 if (typedNode.getBasicType() == EbtInterfaceBlock && !IsShaderIoBlock(qualifier) && in visitDeclaration()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/ |
D | katex.js | 6121 var typedNode = checkNodeType(node, type); 6123 if (!typedNode) { 6128 return typedNode; 6152 var typedNode = checkAtomFamily(node, family); 6154 if (!typedNode) { 6158 return typedNode; 6174 var typedNode = checkSymbolNodeType(node); 6176 if (!typedNode) { 6180 return typedNode;
|
D | katex.mjs | 6103 const typedNode = checkNodeType(node, type); 6105 if (!typedNode) { 6110 return typedNode; 6134 const typedNode = checkAtomFamily(node, family); 6136 if (!typedNode) { 6140 return typedNode; 6156 const typedNode = checkSymbolNodeType(node); 6158 if (!typedNode) { 6162 return typedNode;
|