HomeSort by relevance Sort by last modified time
    Searched defs:variables (Results 26 - 50 of 549) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/
ASTHelper.java 122 List<VariableDeclarator> variables = new ArrayList<VariableDeclarator>(); local
123 variables.add(variable);
124 FieldDeclaration ret = new FieldDeclaration(modifiers, type, variables);
  /external/mesa3d/src/compiler/glsl/
loop_analysis.h 33 * Analyze and classify all variables used in all loops in the instruction list
42 * Based on analysis of loop variables, this function tries to remove
68 * Tracking for all variables used in a loop
79 * Variables that have not yet been classified
81 exec_list variables; member in class:loop_variable_state
84 * Variables whose values are constant within the body of the loop
91 * Induction variables for this loop
115 * Hash table containing all variables accessed in this loop
155 /** Are all variables in the RHS of the assignment loop constants? */
183 /* Induction variables always have a non-null increment, and vic
    [all...]
standalone.cpp 50 variables = _mesa_set_create(NULL,
57 _mesa_set_destroy(variables, NULL);
62 /* If the variable is auto or temp, add it to the set of variables that
68 _mesa_set_add(variables, ir);
75 struct set_entry *entry = _mesa_set_search(variables, ir->var);
78 * variables that are candidates for removal.
81 _mesa_set_remove(variables, entry);
90 set_foreach(variables, entry) {
99 set *variables; member in class:dead_variable_visitor
link_uniform_blocks.cpp 36 ubo_visitor(void *mem_ctx, gl_uniform_buffer_variable *variables,
38 : index(0), offset(0), buffer_size(0), variables(variables),
56 gl_uniform_buffer_variable *variables; member in class:__anon29192::ubo_visitor
109 gl_uniform_buffer_variable *v = &this->variables[this->index++];
210 gl_uniform_buffer_variable *variables,
226 ubo_visitor *parcel, gl_uniform_buffer_variable *variables,
241 parcel, variables, b, block_index,
245 parcel, variables, b, block_index,
255 ubo_visitor *parcel, gl_uniform_buffer_variable *variables,
343 gl_uniform_buffer_variable *variables = local
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
commands.go 130 var pprofVariables = variables{
253 // usage returns a string describing the pprof commands and variables.
282 // Print help for variables after sorting them.
283 // Collect radio variables by their group name to print them together.
285 var variables []string
291 variables = append(variables, fmtHelp(prefix+name, vr.help))
293 sort.Strings(variables)
295 help = help + strings.Join(variables, "\n") + "\n\n" +
446 // variables describe the configuration parameters recognized by pprof
447 type variables map[string]*variable type
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
commands.go 130 var pprofVariables = variables{
253 // usage returns a string describing the pprof commands and variables.
282 // Print help for variables after sorting them.
283 // Collect radio variables by their group name to print them together.
285 var variables []string
291 variables = append(variables, fmtHelp(prefix+name, vr.help))
293 sort.Strings(variables)
295 help = help + strings.Join(variables, "\n") + "\n\n" +
446 // variables describe the configuration parameters recognized by pprof
447 type variables map[string]*variable type
    [all...]
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/
CompilerChef.java 111 final HashMap<String, String> variables = new HashMap<String, String>(); local
118 variables.put(variableName, type);
129 analyzer.injectViewDataBinding(className, variables, fields);
188 * Adds variables to list of Bindables.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
JDWPStackFrameAccessTest.java 89 private final List<VariableInfo> variables = new ArrayList<VariableInfo>(); field in class:JDWPStackFrameAccessTest.MethodInfo
100 return variables;
105 variables.add(new VariableInfo(variableName, initialValue, setValue, newValue));
117 variables.add(new VariableInfo(variableName, initialValue, setValue, newValue));
225 * an instance providing the local variables (and their value) for the method
226 * used for suspension. This is a special method because we do not update variables,
239 Frame.Variable[] variables = jdwpGetVariableTable(classID, testMethodID); local
240 assertNotNull("No variable table for method " + testMethodName, variables);
247 // Test all variables.
249 assertTrue("Not enough variables in variable table"
380 Frame.Variable[] variables = jdwpGetVariableTable(classID, methodID); local
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
PartialEvaluator.java 258 // Reuse the existing variables and stack objects, ensuring the right size.
259 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local
262 // Initialize the reusable arrays and variables.
264 initializeParameters(clazz, method, codeAttribute, variables);
273 variables,
466 * Returns the variables before execution of the instruction at the given
476 * Returns the variables after execution of the instruction at the given
531 private void pushCallingInstructionBlock(TracedVariables variables,
535 callingInstructionBlockStack.push(new MyInstructionBlock(variables,
544 private void pushInstructionBlock(TracedVariables variables,
1045 TracedVariables variables = new TracedVariables(codeAttribute.u2maxLocals); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/body/
FieldDeclaration.java 62 private List<VariableDeclarator> variables; field in class:FieldDeclaration
77 public FieldDeclaration(EnumSet<Modifier> modifiers, Type elementType, List<VariableDeclarator> variables) {
80 setVariables(variables);
84 List<VariableDeclarator> variables) {
88 setVariables(variables);
93 List<VariableDeclarator> variables, List<ArrayBracketPair> arrayBracketPairsAfterElementType) {
97 setVariables(variables);
114 List<VariableDeclarator> variables = new ArrayList<>(); local
115 variables.add(variable);
116 return new FieldDeclaration(modifiers, type, variables);
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_search.c 35 nir_alu_src variables[NIR_SEARCH_MAX_VARIABLES]; member in struct:match_state
141 if (state->variables[var->variable].src.ssa != instr->src[src].src.ssa)
147 if (state->variables[var->variable].swizzle[i] != new_swizzle[i])
165 state->variables[var->variable].src = instr->src[src].src;
166 state->variables[var->variable].abs = false;
167 state->variables[var->variable].negate = false;
171 state->variables[var->variable].swizzle[i] = new_swizzle[i];
173 state->variables[var->variable].swizzle[i] = 0;
304 * could end up with an erroneous failure due to variables found in the
360 tree->dest_size = nir_src_bit_size(state->variables[var->variable].src)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/java/
java_message.cc 298 map<string, string> variables; local
299 variables["static"] = is_own_file ? " " : " static ";
300 variables["classname"] = descriptor_->name();
301 variables["extra_interfaces"] = ExtraMessageInterfaces(descriptor_);
308 printer->Print(variables,
318 printer->Print(variables,
    [all...]
java_message_lite.cc 170 map<string, string> variables; local
171 variables["static"] = is_own_file ? " " : " static ";
172 variables["classname"] = descriptor_->name();
173 variables["extra_interfaces"] = ExtraMessageInterfaces(descriptor_);
180 printer->Print(variables,
190 printer->Print(variables,
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/kernels/
xla_launch_op.cc 247 std::vector<OptionalTensor> variables = local
267 variables, ctx, &kernel, &executable,
286 t = &(variables[arg_num - first_variable_arg].value);
  /external/tensorflow/tensorflow/contrib/estimator/python/estimator/
replicate_model_fn.py 71 1) If exactly 1 GPU is detected, then variables and operations are placed
73 2) If more than 1 GPU is detected, then variables are going to be placed on
121 On distribution of variables:
122 Variables are not duplicated between towers. Instead, they are placed on a
170 """Variables are placed on a single device and shared across all devices.
173 1) If exactly 1 GPU is detected, then variables and operations are placed
175 2) If more than 1 GPU is detected, then variables are going to be placed on
180 """Variables are placed on all devices in a round-robin fashion.
206 tf_logging.info('Replicating the `model_fn` across {}. Variables are going '
294 def variables(self, *args, **kwargs) member in class:TowerOptimizer
    [all...]
  /external/tensorflow/tensorflow/python/eager/
function.py 212 raise ValueError("tfe.defun cannot capture variables created without "
332 variables: (optional) List of variables to watch during function execution.
344 variables=None):
362 self._variables = variables if variables is not None else []
365 def variables(self): member in class:GraphModeFunction
583 # Inherit the graph key, since this is used for matching variables in
608 variables = this_tape.watched_variables()
642 func_outputs, output_shapes, variables)
    [all...]
  /external/tensorflow/tensorflow/python/layers/
base.py 37 from tensorflow.python.ops import variables as tf_variables
51 as convolution, batch norm, etc. These operations require managing variables,
57 * `__init__()`: Save configuration in member variables
71 `trainable_variables`: List of trainable variables.
72 `non_trainable_variables`: List of non-trainable variables.
73 `variables`: List of all variables of this layer, trainable and
212 """Returns the list of all layer variables/weights.
215 A list of variables.
220 def variables(self) member in class:Layer
    [all...]
  /external/tensorflow/tensorflow/python/training/
optimizer.py 36 from tensorflow.python.ops import variables
48 for var in variables.trainable_variables():
82 """Interface for abstracting over variables in the optimizers."""
206 if isinstance(v, variables.Variable):
228 # Add Ops to the graph to minimize a cost by updating a list of variables.
229 # "cost" is a Tensor, and the list of variables contains tf.Variable
231 opt_op = opt.minimize(cost, var_list=<list of variables>)
244 applying them to the variables. If you want to process the gradients
257 # Compute the gradients for a list of variables.
258 grads_and_vars = opt.compute_gradients(loss, <list of variables>)
614 def variables(self): member in class:Optimizer
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
summarize_graph_main.cc 64 const std::vector<const NodeDef*>& variables,
68 all_inputs.insert(all_inputs.end(), variables.begin(), variables.end());
147 std::vector<const NodeDef*> variables; local
153 variables.push_back(&node);
167 if (variables.empty()) {
168 std::cout << "No variables spotted." << std::endl;
170 std::cout << "Found " << variables.size() << " variables: ";
171 for (const NodeDef* node : variables) {
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
CloneVisitor.java 162 NodeList<VariableDeclarator> variables = cloneList(n.getVariables(), arg); local
165 FieldDeclaration r = new FieldDeclaration(n.getTokenRange().orElse(null), n.getModifiers(), annotations, variables);
622 NodeList<VariableDeclarator> variables = cloneList(n.getVariables(), arg); local
624 VariableDeclarationExpr r = new VariableDeclarationExpr(n.getTokenRange().orElse(null), n.getModifiers(), annotations, variables);
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/visitor/
CloneVisitor.java 222 List<VariableDeclarator> variables = visit(_n.getVariables(), _arg); local
227 _n.getModifiers(), annotations, type_, variables
    [all...]
  /external/proguard/src/proguard/preverify/
CodePreverifier.java 257 * variables. If necessary, class constants are added to the constant pool
264 TracedVariables variables)
266 int maximumVariablesSize = variables.size();
274 Value value = variables.getValue(index);
302 Value value = variables.getValue(index);
303 Value producerValue = variables.getProducerValue(index);
510 VerificationType[] variables = fullFrame.variables; local
518 // Are all variables equal?
520 equalVerificationTypes(variables, previousVariableTypes, variablesCount)
    [all...]
  /external/tensorflow/tensorflow/python/feature_column/
feature_column.py 155 from tensorflow.python.ops import variables
205 # Retrieve any variables created (some _DenseColumn's don't create
206 # variables, in which case an empty list is returned).
251 added. Note that variables will also be added to collections
263 If a column creates no variables, its value will be an empty list.
282 """An object-oriented version of `input_layer` that reuses variables."""
327 def variables(self): member in class:InputLayer
328 return self._input_layer_template.variables
382 added. Note that, variables will also be added to collections
396 If a column creates no variables, its value will be an empty list. Not
    [all...]
  /external/tensorflow/tensorflow/python/ops/
variable_scope.py 16 """A class to store named variables and a scope operator to manage sharing."""
41 from tensorflow.python.ops import variables
60 of the partitioned variables.
181 # Indicates that variables are to be fetched if they already exist or
200 """Variable store that carries a number of named Variables.
202 New variable names and new variables can be created; all stored
203 variables are initialized with the initializer passed to __init__.
207 and the corresponding TensorFlow Variables as values.
212 self._vars = {} # A dictionary of the stored TensorFlow variables.
241 Set `reuse` to `True` when you only want to reuse existing Variables
1231 def variables(self): member in class:EagerVariableStore
    [all...]
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 510 HashSet<String> variables = cl.typeVariables(); local
516 variables.add(type.qualifiedTypeName());
533 // Type variables aren't guaranteed to be declared before they're referenced so we need to wait
534 // until after we've processed them all to figure out which ones are type variables and which
537 type.resolveTypeVariables(variables);

Completed in 1816 milliseconds

12 3 4 5 6 7 8 91011>>