Home
last modified time | relevance | path

Searched full:variable (Results 1 – 25 of 6038) sorted by relevance

12345678910>>...242

/external/deqp/framework/randomshaders/
DrsgVariableManager.cpp21 * \brief Variable manager.
95 ValueEntry::ValueEntry (const Variable* variable) in ValueEntry() argument
96 : m_variable (variable) in ValueEntry()
97 , m_valueRange (variable->getType()) in ValueEntry()
107 …for (vector<Variable*>::iterator i = m_declaredVariables.begin(); i != m_declaredVariables.end(); … in ~VariableScope()
110 for (vector<Variable*>::iterator i = m_liveVariables.begin(); i != m_liveVariables.end(); i++) in ~VariableScope()
114 Variable* VariableScope::allocate (const VariableType& type, Variable::Storage storage, const char*… in allocate()
116 Variable* variable = new Variable(type, storage, name); in allocate() local
119 m_liveVariables.push_back(variable); in allocate()
120 return variable; in allocate()
[all …]
DrsgVariableManager.hpp23 * \brief Variable manager.
26 * Variable manager owns variable objects until they are either explictly
46 ValueEntry (const Variable* variable);
49 const Variable* getVariable (void) const { return m_variable; } in getVariable()
55 const Variable* m_variable;
59 // Variable scope manages variable allocation.
66Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name…
67 void declare (Variable* variable); //!< Move from live set to declared set
68 …void removeLive (const Variable* variable); //!< Just remove from live set (when migrati…
70 const std::vector<Variable*>& getDeclaredVariables (void) const { return m_declaredVariables; } in getDeclaredVariables()
[all …]
DrsgShaderGenerator.cpp65 void createAssignment (BlockStatement& block, const Variable* dstVar, const Variable* srcVar) in createAssignment()
101 const Variable* outVar = entry->getVariable(); in genVertexPassthrough()
104 if (outVar->getStorage() != Variable::STORAGE_SHADER_OUT) in genVertexPassthrough()
114Variable* inVar = state.getVariableManager().allocate(outVar->getType(), Variable::STORAGE_SHADER_… in genVertexPassthrough()
130Variable* inColorVariable = state.getVariableManager().allocate(fragColorEntry->getVariable()->get… in genFragmentPassthrough()
197Variable* variable = m_state.getVariableManager().allocate(input->getVariable()->getType(), Vari… in generate() local
199 m_state.getVariableManager().setValue(variable, input->getValueRange()); in generate()
206Variable* fragColorVar = m_state.getVariableManager().allocate(VariableType(VariableType::TYPE_FLO… in generate()
228 const vector<Variable*>& liveVars = globalVariableScope.getLiveVariables(); in generate()
229 for (vector<Variable*>::const_iterator i = liveVars.begin(); i != liveVars.end(); i++) in generate()
[all …]
/external/deqp/data/gles31/shaders/
Dlinkage_io_block.test84 mediump vec2 variable;
89 variable.x = float(gl_VertexID);
90 variable.y = float(gl_InstanceID);
100 mediump float variable;
105 ${FRAG_COLOR} = vec4(variable);
155 mediump float variable[1];
160 variable[0] = float(gl_VertexID);
170 mediump float variable[2];
175 ${FRAG_COLOR} = vec4(variable[0] + variable[1]);
194 mediump float variable;
[all …]
Dlinkage_shader_storage_block.test92 mediump vec2 variable;
98 vtx_val = variable.y;
108 mediump float variable;
114 ${FRAG_COLOR} = vec4(vtx_val + variable);
168 mediump float variable[];
174 vtx_val = variable[0];
184 mediump float variable[1];
190 ${FRAG_COLOR} = vec4(vtx_val + variable[0]);
206 mediump float variable[1];
212 vtx_val = variable[0];
[all …]
/external/clang/test/Sema/
Duninit-variables.c7 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test1()
8 return x; // expected-warning{{variable 'x' is uninitialized when used here}} in test1()
23 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test4()
24 ++x; // expected-warning{{variable 'x' is uninitialized when used here}} in test4()
29 int x, y; // expected-note{{initialize the variable 'y' to silence this warning}} in test5()
30 x = y; // expected-warning{{variable 'y' is uninitialized when used here}} in test5()
35 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test6()
36 x += 2; // expected-warning{{variable 'x' is uninitialized when used here}} in test6()
41 int x; // expected-note{{initialize the variable 'x' to silence this warning}} in test7()
42 …if (y) // expected-warning{{variable 'x' is used uninitialized whenever 'if' condition is false}} \ in test7()
[all …]
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
Dwin32.py163 ONESTOPBIT = 0 # Variable c_int
164 TWOSTOPBITS = 2 # Variable c_int
167 NOPARITY = 0 # Variable c_int
168 ODDPARITY = 1 # Variable c_int
169 EVENPARITY = 2 # Variable c_int
173 RTS_CONTROL_HANDSHAKE = 2 # Variable c_int
174 RTS_CONTROL_DISABLE = 0 # Variable c_int
175 RTS_CONTROL_ENABLE = 1 # Variable c_int
176 RTS_CONTROL_TOGGLE = 3 # Variable c_int
180 DTR_CONTROL_HANDSHAKE = 2 # Variable c_int
[all …]
/external/webrtc/webrtc/build/
Disolate.gypi13 # conditional inclusion or variable expansion in include paths.
18 # * Removed passing of version_full variable created in version.gypi:
19 # '--extra-variable', 'version_full=<(version_full)',
81 '--path-variable', 'DEPTH', '<(DEPTH)',
82 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
86 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)',
87 '--config-variable', 'OS=<(OS)',
88 '--config-variable', 'asan=<(asan)',
89 '--config-variable', 'branding=<(branding)',
90 '--config-variable', 'chromeos=<(chromeos)',
[all …]
/external/bison/src/
Dmuscle-tab.h106 /* Indicates whether a variable's value was specified with -D/--define, with
113 /* Define the muscles for %define variable VARIABLE with VALUE specified
115 grammar file while the previous definition for VARIABLE was specified
120 this as a user occurrence of VARIABLE by invoking
122 void muscle_percent_define_insert (char const *variable, location variable_loc,
127 %define variable VARIABLE is defined, return its value. Otherwise, return
128 the empty string. Also, record Bison's usage of VARIABLE by defining
129 b4_percent_define_bison_variables(VARIABLE). The caller is responsible for
131 char *muscle_percent_define_get (char const *variable);
134 if the %define variable VARIABLE is undefined, complain fatally since that's
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/data/
DDataContext.java22 * Manages the global Data object and local variable mappings during rendering.
32 * Creates a new Data object to hold local references, pushes it onto the variable map stack. This
39 * Removes the most recent Data object added to the local variable map stack.
44 * Creates and sets a local variable in the current scope equal to the given value.
46 * @param name the name of the local variable to fetch or create.
47 * @param value The String value to store at the local variable.
52 * Creates and sets a local variable in the current scope equal to the given value. Also set the
54 * whether to autoescape the variable.
56 * @param name the name of the local variable to fetch or create.
57 * @param value The String value to store at the local variable.
[all …]
/external/webrtc/talk/build/
Disolate.gypi31 # conditional inclusion or variable expansion in include paths.
36 # * Removed passing of version_full variable created in version.gypi:
37 # '--extra-variable', 'version_full=<(version_full)',
99 '--path-variable', 'DEPTH', '<(DEPTH)',
100 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR) ',
104 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)',
105 '--config-variable', 'OS=<(OS)',
106 '--config-variable', 'asan=<(asan)',
107 '--config-variable', 'branding=<(branding)',
108 '--config-variable', 'chromeos=<(chromeos)',
[all …]
/external/clang/test/Analysis/
Dstack-addr-ps.cpp7 …mory associated with local variable 's' returned}} expected-warning{{reference to stack memory ass… in g()
12 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} in g2()
13 …ory associated with local variable 's1' returned}} expected-warning {{reference to stack memory as… in g2()
18 int &s2 = s1; // expected-note {{binding reference variable 's2' here}} in g3()
19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}} in g3()
20 …ory associated with local variable 's1' returned}} expected-warning {{reference to stack memory as… in g3()
32 const int &x = get_value(); // expected-note {{binding reference variable 'x' here}} in get_reference2()
37 const int &x1 = get_value(); // expected-note {{binding reference variable 'x1' here}} in get_reference3()
38 const int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in get_reference3()
50 int &x2 = x1; // expected-note {{binding reference variable 'x2' here}} in f2()
[all …]
/external/clang/test/SemaCXX/
Duninitialized.cpp24 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initial…
25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own ini…
26 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used wit…
27 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initia…
37 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own i…
38 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its…
39 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initializ…
40 int o = std::move(o); // expected-warning {{variable 'o' is uninitialized when used within its own …
41 const int p = std::move(p); // expected-warning {{variable 'p' is uninitialized when used within it…
42 int q = moved(std::move(q)); // expected-warning {{variable 'q' is uninitialized when used within i…
[all …]
/external/v8/src/ast/
Dscopes.h26 // A hash map to support fast variable declaration and lookup.
31 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name,
37 Variable* Lookup(const AstRawString* name);
38 void Remove(Variable* var);
39 void Add(Zone* zone, Variable* var);
54 // to a JavaScript variable (including global properties) is represented by a
55 // VariableProxy node. Immediately after AST construction and before variable
57 // corresponding variable (though some are bound during parse time). Variable
58 // allocation binds each unresolved VariableProxy to one Variable and assigns
60 // Script variable.
[all …]
/external/v8/gypfiles/
Disolate.gypi67 '--path-variable', 'DEPTH', '<(DEPTH)',
68 '--path-variable', 'PRODUCT_DIR', '<(PRODUCT_DIR)',
70 '--config-variable', 'CONFIGURATION_NAME=<(CONFIGURATION_NAME)',
71 '--config-variable', 'OS=<(OS)',
72 '--config-variable', 'asan=<(asan)',
73 '--config-variable', 'cfi_vptr=<(cfi_vptr)',
74 '--config-variable', 'gcmole=<(gcmole)',
75 '--config-variable', 'has_valgrind=<(has_valgrind)',
76 '--config-variable', 'icu_use_data_file_flag=<(icu_use_data_file_flag)',
77 '--config-variable', 'is_gn=0',
[all …]
/external/v8/gni/
Disolate.gni137 "--path-variable",
140 "--path-variable",
145 "--config-variable",
147 "--config-variable",
149 "--config-variable",
151 "--config-variable",
153 "--config-variable",
155 "--config-variable",
157 "--config-variable",
159 "--config-variable",
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
Djsilver.sablecc64 args, // Args to command: "some.variable=3 ?>"
222 | {set} cs_open set command_delimiter variable assignment expression cs_close
226 variable.variable,
229 | {name} cs_open name command_delimiter variable cs_close
233 variable.variable)}
253 | {with} cs_open with command_delimiter variable assignment expression cs_close
259 variable.variable,
263 | {loop_to} cs_open loop command_delimiter variable assignment expression cs_close
269 variable.variable,
273 | {loop} cs_open loop command_delimiter variable assignment
[all …]
/external/syslinux/gpxe/src/arch/i386/include/
Dlibrm.h112 #define __data16( variable ) \ argument
114 _data16_ ## variable __asm__ ( #variable )
116 #define __data16_array( variable, array ) \ argument
118 _data16_ ## variable array __asm__ ( #variable )
120 #define __bss16( variable ) \ argument
122 _data16_ ## variable __asm__ ( #variable )
124 #define __bss16_array( variable, array ) \ argument
126 _data16_ ## variable array __asm__ ( #variable )
128 #define __text16( variable ) \ argument
130 _text16_ ## variable __asm__ ( #variable )
[all …]
/external/clang/test/OpenMP/
Dtarget_parallel_private_messages.cpp23 const S3 c; // expected-note {{global variable is predetermined as shared}} expected-note 1 {{globa…
24 …onst S3 ca[5]; // expected-note {{global variable is predetermined as shared}} expected-note 1 {{g…
25 …n const int f; // expected-note {{global variable is predetermined as shared}} expected-note 1 {{g…
57 const I d = 5; // expected-note {{constant variable is predetermined as shared}} in foomain()
58 const I da[5] = { 0 }; // expected-note {{constant variable is predetermined as shared}} in foomain()
73 … target parallel private(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}} in foomain()
81 #pragma omp target parallel private(a, b) // expected-error {{private variable with incomplete type… in foomain()
83 …, c, d, f) // expected-error {{a private variable with incomplete type 'S1'}} expected-error 3 {{s… in foomain()
85 #pragma omp target parallel private(argv[1]) // expected-error {{expected variable name}} in foomain()
89 #pragma omp target parallel private(ca) // expected-error {{shared variable cannot be private}} in foomain()
[all …]
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DVariableLocator.java47 * @param variable the variable node to evaluate.
48 * @return a String representing the Variable name, or {@code null} if it is a compound variable
51 private String quickEval(PVariable variable) { in quickEval() argument
52 if (variable instanceof ANameVariable) { in quickEval()
53 return ((ANameVariable) variable).getWord().getText(); in quickEval()
54 } else if (variable instanceof ADecNumberVariable) { in quickEval()
55 return ((ADecNumberVariable) variable).getDecNumber().getText(); in quickEval()
56 } else if (variable instanceof AHexNumberVariable) { in quickEval()
57 return ((AHexNumberVariable) variable).getHexNumber().getText(); in quickEval()
59 // This is a compound variable. Evaluate the slow way. in quickEval()
[all …]
/external/owasp/sanitizer/tools/findbugs/doc/
Dmanual.xsl16 <xsl:variable name="chunk.section.depth">0</xsl:variable>
19 <xsl:variable name="base.dir">manual/</xsl:variable>
22 <xsl:variable name="section.autolabel">1</xsl:variable>
25 <xsl:variable name="use.id.as.filename">1</xsl:variable>
28 <xsl:variable name="admon.graphics">1</xsl:variable>
31 <xsl:variable name="admon.graphics.path"></xsl:variable>
34 <xsl:variable name="toc.section.depth">1</xsl:variable>
Dmanual-fo.xsl11 <xsl:variable name="section.autolabel">1</xsl:variable>
14 <xsl:variable name="admon.graphics">1</xsl:variable>
17 <xsl:variable name="admon.graphics.path">manual/</xsl:variable>
20 <xsl:variable name="img.src.path">manual/</xsl:variable>
25 <xsl:variable name="default.image.width">5in</xsl:variable>
28 <xsl:variable name="toc.section.depth">1</xsl:variable>
/external/libxml2/
Dlibxml2.syms226 xmlStringComment; # variable
229 xmlStringText; # variable
230 xmlStringTextNoenc; # variable
499 xmlXPathNAN; # variable
500 xmlXPathNINF; # variable
504 xmlXPathPINF; # variable
734 xmlGetWarningsDefaultValue; # variable
821 docbDefaultSAXHandler; # variable
822 htmlDefaultSAXHandler; # variable
823 xmlDefaultSAXHandler; # variable
[all …]
/external/apache-xml/src/main/java/org/apache/xpath/
DVariableStack.java45 * Constructor for a variable stack.
53 * Constructor for a variable stack.
64 * Returns a clone of this variable stack.
66 * @return a clone of this variable stack.
153 * @param varArraySize Initial variable array size to use
207 * @return The bottom of the stack frame, from where local variable addressing
262 * Set a local variable or parameter in the current stack frame.
265 * @param index Local variable index relative to the current stack
268 * @param val The value of the variable that is being set.
276 * Set a local variable or parameter in the specified stack frame.
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemVariable.java36 * Implement xsl:variable.
38 * <!ELEMENT xsl:variable %template;>
39 * <!ATTLIST xsl:variable
63 * The stack frame size for this variable if it is a global variable
65 * of variables that can be declared in the variable at one time.
71 * Sets the relative position of this variable within the stack frame (if local)
82 * variable into the stack frame. If this variable is at the top-level, get
98 * If the variable-binding element has a select attribute,
100 * the value of the variable is the object that results from
102 * of the variable must be empty.
[all …]

12345678910>>...242