HomeSort by relevance Sort by last modified time
    Searched refs:Variable (Results 51 - 75 of 252) sorted by null

1 23 4 5 6 7 8 91011

  /external/deqp/framework/randomshaders/
rsgShader.cpp 58 ShaderInput::ShaderInput (const Variable* variable, ConstValueRangeAccess valueRange)
59 : m_variable (variable)
60 , m_min (variable->getType().getScalarSize())
61 , m_max (variable->getType().getScalarSize())
63 ValueAccess(variable->getType(), &m_min[0]) = valueRange.getMin().value();
64 ValueAccess(variable->getType(), &m_max[0]) = valueRange.getMax().value();
81 void Shader::getOutputs (vector<const Variable*>& outputs) const
84 const vector<Variable*>& globalVars = m_globalScope.getDeclaredVariables();
85 for (vector<Variable*>::const_iterator i = globalVars.begin(); i != globalVars.end(); i++
    [all...]
rsgFunctionGenerator.cpp 66 for (vector<Variable*>::iterator i = m_requiredAssignments.begin(); i != m_requiredAssignments.end(); i++)
68 Variable* variable = *i; local
69 const ValueEntry* entry = m_state.getVariableManager().getValue(variable);
70 ValueRange valueRange(variable->getType());
76 m_state.getVariableManager().removeValueFromCurrentScope(variable);
79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange.asAccess()));
rsgStatement.cpp 229 inline bool canDeclareVariable (const Variable* variable)
231 return variable->getStorage() == Variable::STORAGE_LOCAL;
236 const vector<Variable*>& liveVars = varMgr.getLiveVariables();
237 for (vector<Variable*>::const_iterator i = liveVars.begin(); i != liveVars.end(); i++)
247 DeclarationStatement::DeclarationStatement (GeneratorState& state, Variable* variable)
251 if (variable == DE_NULL)
256 const vector<Variable*>& liveVars = state.getVariableManager().getLiveVariables()
    [all...]
rsgExecutionContext.cpp 61 ExecValueAccess ExecutionContext::getValue (const Variable* variable)
63 ExecValueStorage* storage = m_varValues[variable];
67 storage = new ExecValueStorage(variable->getType());
68 m_varValues[variable] = storage;
71 return storage->getValue(variable->getType());
74 const Sampler2D& ExecutionContext::getSampler2D (const Variable* sampler) const
83 const SamplerCube& ExecutionContext::getSamplerCube (const Variable* sampler) const
  /external/v8/src/interpreter/
bytecode-generator.h 67 void VisitVariableLoad(Variable* variable, FeedbackVectorSlot slot,
70 Variable* variable, FeedbackVectorSlot slot,
73 VisitVariableLoadForRegisterValue(Variable* variable, FeedbackVectorSlot slot,
75 void VisitVariableAssignment(Variable* variable, FeedbackVectorSlot slot);
77 void VisitArgumentsObject(Variable* variable);
    [all...]
  /external/v8/src/
typing-asm.h 61 StandardMember VariableAsStandardMember(Variable* variable);
110 // Map from Variable* to global/local variable Type*.
131 void VisitExpressionAnnotation(Expression* e, Variable* var, bool is_return);
148 void SetType(Variable* variable, Type* type);
149 Type* GetType(Variable* variable);
150 VariableInfo* GetVariableInfo(Variable* variable, bool setting)
    [all...]
  /external/clang/unittests/Tooling/
RecursiveASTVisitorTestDeclVisitor.cpp 19 bool VisitVarDecl(VarDecl *Variable) {
20 Match(Variable->getNameAsString(), Variable->getLocStart());
45 // Test RAV visits parameter variable declaration of the implicit
49 // Match parameter variable name of implicit copy assignment operator and
  /external/valgrind/coregrind/
m_addrinfo.c 93 /* -- Perhaps the variable type/location data describes it? -- */
94 ai->Addr.Variable.descr1
97 ai->Addr.Variable.descr2
101 (void) VG_(get_data_description)( ai->Addr.Variable.descr1,
102 ai->Addr.Variable.descr2, a );
109 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr1, 0 ))) {
110 VG_(deleteXA)( ai->Addr.Variable.descr1 );
111 ai->Addr.Variable.descr1 = NULL;
113 if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.Variable.descr2, 0 ))) {
114 VG_(deleteXA)( ai->Addr.Variable.descr2 )
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
XPathVisitor.java 30 import org.apache.xpath.operations.Variable;
129 * Visit a variable reference.
132 * @param var The variable reference object.
135 public boolean visitVariableRef(ExpressionOwner owner, Variable var)
  /system/update_engine/update_manager/
real_random_provider.cc 28 #include "update_engine/update_manager/variable.h"
41 // A random seed variable.
42 class RandomSeedVariable : public Variable<uint64_t> {
48 : Variable<uint64_t>(name, kVariableModeConst), fp_(fp) {}
evaluation_context-inl.h 27 const T* EvaluationContext::GetValue(Variable<T>* var) {
29 LOG(ERROR) << "GetValue received an uninitialized variable.";
38 // Get the value from the variable if not found on the cache.
43 LOG(WARNING) << "Error reading Variable " << var->GetName() << ": \""
variable_unittest.cc 17 #include "update_engine/update_manager/variable.h"
34 // Variable class that returns a value constructed with the default value.
36 class DefaultVariable : public Variable<T> {
39 : Variable<T>(name, mode) {}
41 : Variable<T>(name, poll_interval) {}
90 void ValueChanged(BaseVariable* variable) {
91 calls_.push_back(variable);
115 // Simulate a value change on the variable's implementation.
141 void ValueChanged(BaseVariable* variable) override {
143 variable->RemoveObserver(observer)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
VariableSafeAbsRef.java 31 * This is a "smart" variable reference that is used in situations where
32 * an absolute path is optimized into a variable reference, but may
38 * to make sure the document context of the referenced variable is the same as
39 * the current document context, and, if it is not, execute the referenced variable's
42 public class VariableSafeAbsRef extends Variable
47 * Dereference the variable, and return the reference value. Note that lazy
48 * evaluation will occur. If a variable within scope is not found, a warning
54 * @return The evaluated variable, or an empty nodeset if not found.
  /external/deqp/modules/glshared/
glsRandomShaderProgram.cpp 103 static const rsg::Variable* findShaderOutputByName (const rsg::Shader& shader, const char* name)
105 vector<const rsg::Variable*> outputs;
108 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); ++iter)
117 static const rsg::Variable* findShaderOutputByLocation (const rsg::Shader& shader, int location)
119 vector<const rsg::Variable*> outputs;
122 for (vector<const rsg::Variable*>::const_iterator iter = outputs.begin(); iter != outputs.end(); iter++)
148 const rsg::Variable* vertexOutput = findShaderOutputByName(vertexShader, fragInput->getVariable()->getName());
161 const rsg::Variable* uniformVar = m_unifiedUniforms[uniformNdx]->getVariable();
183 const rsg::Variable* attribVar = m_vertexShader.getInputs()[attribNdx]->getVariable();
224 const rsg::Variable* var = m_vertexOutputs[varNdx]
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 36 import org.apache.xpath.operations.Variable;
73 // * Visit a variable reference.
76 // * @param var The variable reference object.
79 // public boolean visitVariableRef(ExpressionOwner owner, Variable var)
101 if((pred instanceof Variable) ||
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
Frame.java 163 string += ((Variable) it.next()).toString();
201 * This describing frame variable.
204 public final class Variable {
223 public Variable() {
234 * Gets code index of variable.
243 * Sets new code index for variable.
252 * Gets variable name.
261 * Sets new variable name.
264 * new variable name
271 * Gets signature of the variable reference type
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.h 121 // Analyzer of local variable liveness.
239 // Computes local variable liveness and replaces dead variables in
250 uint32_t ComputeBitsetForDynamicGlobal(Variable* variable);
251 uint32_t ComputeBitsetForDynamicContext(Variable* variable);
265 Node* BuildArgumentsObject(Variable* arguments);
268 Node* BuildRestArgumentsArray(Variable* rest, int index);
270 // Builder that assigns to the {.this_function} internal variable if needed.
271 Node* BuildThisFunctionVariable(Variable* this_function_var)
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTraverse.h 136 // SExprs of variable arity, such as Phi, Goto, and SCFG.
191 R_SExpr reduceFunction(Function &Orig, Variable *Nvd, R_SExpr E0) {
194 R_SExpr reduceSFunction(SFunction &Orig, Variable *Nvd, R_SExpr E0) {
252 R_SExpr reduceLet(Let &Orig, Variable *Nvd, R_SExpr B) {
256 Variable *enterScope(Variable &Orig, R_SExpr E0) { return &Orig; }
257 void exitScope(const Variable &Orig) {}
263 Variable *reduceVariableRef (Variable *Ovd) { return Ovd; }
323 void enterScope(const Variable* V1, const Variable* V2) {
    [all...]
  /system/tools/aidl/
ast_java.cpp 67 Field::Field(int m, Variable* v) : ClassElement(), modifiers(m), variable(v) {}
74 to->Write("%s %s", this->variable->type->JavaType().c_str(),
75 this->variable->name.c_str());
94 Variable::Variable(const Type* t, const string& n)
97 Variable::Variable(const Type* t, const string& n, int d)
100 void Variable::WriteDeclaration(CodeWriter* to) const {
109 void Variable::Write(CodeWriter* to) const { to->Write("%s", name.c_str());
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 10 (* variant for referencing a variable, like "a". *)
11 | Variable of string
  /external/llvm/include/llvm/CodeGen/
MachineInstrBuilder.h 175 "first MDNode argument of a DBG_VALUE not a variable");
349 const MDNode *Variable, const MDNode *Expr) {
350 assert(isa<DILocalVariable>(Variable) && "not a variable");
352 assert(cast<DILocalVariable>(Variable)->isValidLocationForIntrinsic(DL) &&
358 .addMetadata(Variable)
365 .addMetadata(Variable)
377 const MDNode *Variable, const MDNode *Expr) {
378 assert(isa<DILocalVariable>(Variable) && "not a variable");
    [all...]
  /external/v8/test/mjsunit/regress/
regress-3138.js 12 var f; // Variable shadows function name.
19 with ({}); // Force context allocation of both variable and function name.
  /external/vulkan-validation-layers/demos/smoke/android/src/main/jni/
Smoke.frag.h 30 9(fragcolor): 8(ptr) Variable Output
33 12(color): 11(ptr) Variable Input

Completed in 243 milliseconds

1 23 4 5 6 7 8 91011