/external/deqp/framework/randomshaders/ |
D | rsgShaderGenerator.cpp | 86 if (deStringEqual(entry->getVariable()->getName(), name)) in findByName() 101 const Variable* outVar = entry->getVariable(); in genVertexPassthrough() 120 createAssignment(shader.getMain().getBody(), entry->getVariable(), inVar); in genVertexPassthrough() 130 …Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->get… in genFragmentPassthrough() 133 createAssignment(shader.getMain().getBody(), fragColorEntry->getVariable(), inColorVariable); in genFragmentPassthrough() 166 if (!(*i)->getVariable()->getType().isSampler()) // Samplers are assigned at program-level. in fillUndefinedShaderInputs() 197 …e.getVariableManager().allocate(input->getVariable()->getType(), Variable::STORAGE_SHADER_OUT, inp… in generate()
|
D | rsgProgramGenerator.cpp | 78 if ((*i)->getVariable()->getType().isSampler()) in generate() 84 if ((*i)->getVariable()->getType().isSampler()) in generate() 92 if (input->getVariable()->getType().isSampler()) in generate()
|
D | rsgProgramExecutor.cpp | 230 execCtx.getValue(uniformIter->getVariable()) = uniformIter->getValue().value(); in execute() 241 ExecValueAccess access = execCtx.getValue(input->getVariable()); in execute() 283 execCtx.getValue(i->getVariable()) = i->getValue().value(); in execute() 317 ExecValueAccess access = execCtx.getValue(input->getVariable()); in execute() 318 const VariableType& type = input->getVariable()->getType(); in execute() 319 const VaryingStorage* src = varyingStore.getStorage(type, input->getVariable()->getName()); in execute()
|
D | rsgVariableManager.hpp | 49 const Variable* getVariable (void) const { return m_variable; } in getVariable() function in rsg::ValueEntry 304 switch (entry->getVariable()->getStorage()) in operator ()() 327 return entry->getVariable()->getStorage() == Storage; in operator ()()
|
D | rsgVariableManager.cpp | 185 return entry->getVariable() == m_variable; in operator ==() 448 oldValues[(*valueIter)->getVariable()] = *valueIter; in popValueScope() 461 const Variable* var = entry->getVariable(); in popValueScope() 496 const Variable* var = oldEntry->getVariable(); in popValueScope()
|
D | rsgUtils.cpp | 42 if (addedUniforms.find(uniform->getVariable()->getName()) == addedUniforms.end()) in addNewUniforms() 44 addedUniforms.insert(uniform->getVariable()->getName()); in addNewUniforms() 120 values.push_back(VariableValue(uniform->getVariable())); in computeUniformValues()
|
D | rsgShader.hpp | 70 const Variable* getVariable (void) const { return m_variable; } in getVariable() function in rsg::ShaderInput
|
D | rsgExpression.cpp | 51 if ((m_exprFlags & CONST_EXPR) && (entry->getVariable()->getStorage() != Variable::STORAGE_CONST)) in operator ()() 103 entry->getVariable()->getType() == m_valueRange.getType() && in operator ()() 124 entry->getVariable()->getType() == m_valueRange.getType() && in operator ()() 145 if (entry->getVariable()->getType() == VariableType(m_type, 1)) in operator ()() 147 DE_ASSERT(entry->getVariable()->getStorage() == Variable::STORAGE_UNIFORM); in operator ()() 1102 …e.getVariableManager().getBegin(filter), state.getVariableManager().getEnd(filter))->getVariable(); in VariableRead() 1133 m_variable = entry->getVariable(); in VariableRead() 1187 m_variable = entry->getVariable(); in VariableWrite() 1469 state.getVariableManager().getEnd(IsSamplerEntry(samplerType)))->getVariable(); in TexLookup()
|
/external/deqp/modules/glshared/ |
D | glsRandomShaderProgram.cpp | 78 …sglr::pdec::VertexAttribute(vertexInput->getVariable()->getName(), mapToGenericVecType(vertexInput… in generateProgramDeclaration() 84 …decl << sglr::pdec::VertexToFragmentVarying(mapToGenericVecType(fragInput->getVariable()->getType(… in generateProgramDeclaration() 90 …decl << sglr::pdec::Uniform(uniform->getVariable()->getName(), mapToBasicType(uniform->getVariable… in generateProgramDeclaration() 148 …const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()-… in RandomShaderProgram() 161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable(); in refreshUniforms() 183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable(); in shadeVertices() 262 const rsg::Variable* var = m_fragmentShader.getInputs()[varNdx]->getVariable(); in shadeFragments()
|
D | glsRandomShaderCase.cpp | 80 , m_vertices (input->getVariable()->getType().getNumElements() * numVertices) in VertexArray() 161 int numComponents = input->getVariable()->getType().getNumElements(); in init() 163 bool isPosition = string(input->getVariable()->getName()) == "dEQP_Position"; in init() 165 TCU_CHECK(input->getVariable()->getType().getBaseType() == rsg::VariableType::TYPE_FLOAT); in init() 224 const rsg::VariableType& type = uniformIter->getVariable()->getType(); in init() 246 if ((*it)->getVariable()->getType().isSampler()) in getNumSamplerUniforms() 507 …GLint location = glGetUniformLocation(program.getProgram(), uniformIter->getVariable()->getName()); in iterate() 509 …log << tcu::TestLog::Message << "uniform[" << location << "]: " << uniformIter->getVariable()->get… in iterate()
|
D | glsRandomShaderCase.hpp | 52 const char* getName (void) const { return m_input->getVariable()->getName(); } in getName() 53 …int getNumComponents (void) const { return m_input->getVariable()->getType().getNumElements(… in getNumComponents()
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/analysis/ |
D | DepthFirstAdapter.java | 227 if(node.getVariable() != null) in caseASetCommand() 229 node.getVariable().apply(this); in caseASetCommand() 256 if(node.getVariable() != null) in caseANameCommand() 258 node.getVariable().apply(this); in caseANameCommand() 339 if(node.getVariable() != null) in caseAWithCommand() 341 node.getVariable().apply(this); in caseAWithCommand() 372 if(node.getVariable() != null) in caseALoopToCommand() 374 node.getVariable().apply(this); in caseALoopToCommand() 405 if(node.getVariable() != null) in caseALoopCommand() 407 node.getVariable().apply(this); in caseALoopCommand() [all …]
|
D | ReversedDepthFirstAdapter.java | 228 if(node.getVariable() != null) in caseASetCommand() 230 node.getVariable().apply(this); in caseASetCommand() 253 if(node.getVariable() != null) in caseANameCommand() 255 node.getVariable().apply(this); in caseANameCommand() 344 if(node.getVariable() != null) in caseAWithCommand() 346 node.getVariable().apply(this); in caseAWithCommand() 377 if(node.getVariable() != null) in caseALoopToCommand() 379 node.getVariable().apply(this); in caseALoopToCommand() 414 if(node.getVariable() != null) in caseALoopCommand() 416 node.getVariable().apply(this); in caseALoopCommand() [all …]
|
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/ |
D | TemplateInterpreter.java | 206 String variableName = variableLocator.getVariableName(node.getVariable()); in caseASetCommand() 231 String variableName = variableLocator.getVariableName(node.getVariable()); in caseANameCommand() 294 String withVar = variableLocator.getVariableName(node.getVariable()); in caseAWithCommand() 324 loop(node.getVariable(), 0, end, 1, node.getCommand()); in caseALoopToCommand() 341 loop(node.getVariable(), start, end, 1, node.getCommand()); in caseALoopCommand() 365 loop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() 381 each(node.getVariable(), variableValue.getName(), parent, node.getCommand()); in caseAEachCommand()
|
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DebugLocEntry.h | 77 DIVariable getVariable() const { return cast<MDLocalVariable>(Variable); } in getVariable() function 149 return A.getVariable() == B.getVariable() && in sortUniqueValues()
|
D | DwarfFile.cpp | 140 DIVariable DV = Var->getVariable(); in addScopeVariable() 152 unsigned CurNum = (*I)->getVariable()->getArg(); in addScopeVariable()
|
/external/llvm/tools/llvm-dis/ |
D | llvm-dis.cpp | 97 DIVariable Var(DDI->getVariable()); in printInfoComment() 105 DIVariable Var(DVI->getVariable()); in printInfoComment()
|
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 392 cast<MDSubprogram>(OldIntrin->getVariable()->getScope()) in TEST_F() 396 cast<MDSubprogram>(NewIntrin->getVariable()->getScope()) in TEST_F() 404 cast<MDSubprogram>(OldIntrin->getVariable()->getScope()) in TEST_F() 408 cast<MDSubprogram>(NewIntrin->getVariable()->getScope()) in TEST_F()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | TemplateTranslator.java | 267 .translate(node.getVariable()), true))); in caseASetCommand() 287 callFindVariable(variableTranslator.translate(node.getVariable()), false); in caseANameCommand() 316 writeEach(node.getVariable(), parent, node.getCommand()); in caseAEachCommand() 349 JavaExpression itemKey = variableTranslator.translate(node.getVariable()); in caseAWithCommand() 379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopToCommand() 392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopCommand() 406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand()
|
/external/doclava/src/com/google/doclava/ |
D | Resolution.java | 58 public String getVariable() { in getVariable() method in Resolution
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | MethodDecl.java | 28 Symbol sym = getReturn().getVariable(); in isConstructor()
|
D | Declarator.java | 80 public Symbol getVariable() { return (Symbol)getLeft(); } in getVariable() method in Declarator
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/ |
D | AVariableExpression.java | 37 public PVariable getVariable() in getVariable() method in AVariableExpression
|
D | ANameCommand.java | 67 public PVariable getVariable() in getVariable() method in ANameCommand
|
/external/llvm/include/llvm/IR/ |
D | IntrinsicInst.h | 85 MDLocalVariable *getVariable() const { in getVariable() function 118 MDLocalVariable *getVariable() const { in getVariable() function
|