/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_draw.c | 300 brw->vb.inputs[i].buffer = -1; 301 brw->vb.inputs[i].glarray = arrays[i]; 314 switch (brw->vb.inputs[i].glarray->Type) { 317 wa_flags = brw->vb.inputs[i].glarray->Size; 325 if (brw->vb.inputs[i].glarray->Format == GL_BGRA) 328 if (brw->vb.inputs[i].glarray->Normalized) 330 else if (!brw->vb.inputs[i].glarray->Integer) 487 /* Bind all inputs, derive varying and size information: 703 brw->vb.inputs[i].buffer = -1;
|
brw_interpolation_map.c | 80 foreach_list_typed(nir_variable, var, node, &nir->inputs) {
|
/external/python/cpython2/Lib/test/ |
test_heapq.py | 154 inputs = [] 157 inputs.append(row) 158 self.assertEqual(sorted(chain(*inputs)), list(self.module.merge(*inputs))) 173 inputs = [[], [], [], []] 179 inputs[stream].append(obj) 180 for stream in inputs: 182 result = [i.pair for i in self.module.merge(*inputs)]
|
/external/skia/src/effects/ |
SkComposeImageFilter.cpp | 22 sk_sp<SkImageFilter> inputs[2] = { std::move(outer), std::move(inner) }; local 23 return sk_sp<SkImageFilter>(new SkComposeImageFilter(inputs));
|
/external/smali/baksmali/ |
build.gradle | 51 processResources.inputs.property('version', version)
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
GrainFilter.java | 183 Frame[] inputs = {input, noiseFrame}; local 184 mGrainProgram.process(inputs, output);
|
RedEyeFilter.java | 132 Frame[] inputs = {input, mRedEyeFrame}; local 133 mProgram.process(inputs, output);
|
/frameworks/compile/mclinker/include/mcld/LD/ |
Archive.h | 121 /// inputs - get the input tree built from this archive 122 InputTree& inputs(); 124 /// inputs - get the input tree built from this archive 125 const InputTree& inputs() const;
|
/frameworks/compile/mclinker/include/mcld/Script/ |
ScriptFile.h | 75 const InputTree& inputs() const { return *m_pInputTree; } function in class:mcld::ScriptFile 76 InputTree& inputs() { return *m_pInputTree; } function in class:mcld::ScriptFile
|
/frameworks/ml/nn/runtime/include/ |
NeuralNetworks.h | 122 * Inputs: 151 * Inputs (explicit padding): 166 * Inputs (implicit padding): 195 * Inputs: 197 * For inputs of {@link ANEURALNETWORKS_TENSOR_QUANT8_ASYMM} type, all 231 * Inputs (explicit padding): 252 * Inputs (implicit padding): 305 * Inputs (explicit padding): 327 * Inputs (explicit padding): 373 * Inputs [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_heapq.py | 154 inputs = [] 157 inputs.append(row) 158 self.assertEqual(sorted(chain(*inputs)), list(self.module.merge(*inputs))) 164 inputs = [[], [], [], []] 170 inputs[stream].append(obj) 171 for stream in inputs: 173 result = [i.pair for i in self.module.merge(*inputs)]
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_heapq.py | 154 inputs = [] 157 inputs.append(row) 158 self.assertEqual(sorted(chain(*inputs)), list(self.module.merge(*inputs))) 164 inputs = [[], [], [], []] 170 inputs[stream].append(obj) 171 for stream in inputs: 173 result = [i.pair for i in self.module.merge(*inputs)]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_heapq.py | 154 inputs = [] 157 inputs.append(row) 158 self.assertEqual(sorted(chain(*inputs)), list(self.module.merge(*inputs))) 164 inputs = [[], [], [], []] 170 inputs[stream].append(obj) 171 for stream in inputs: 173 result = [i.pair for i in self.module.merge(*inputs)]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_heapq.py | 154 inputs = [] 157 inputs.append(row) 158 self.assertEqual(sorted(chain(*inputs)), list(self.module.merge(*inputs))) 164 inputs = [[], [], [], []] 170 inputs[stream].append(obj) 171 for stream in inputs: 173 result = [i.pair for i in self.module.merge(*inputs)]
|
/external/deqp/modules/gles31/functional/ |
es31fOpaqueTypeIndexingTests.cpp | 407 spec->inputs.push_back(Symbol(coordsName, VarType(coordType, PRECISION_HIGHP))); 432 spec->inputs.push_back(Symbol(varName, VarType(TYPE_INT, PRECISION_HIGHP))); 530 vector<void*> inputs; local 559 inputs.push_back(&coords[0]); 571 inputs.push_back(&expandedIndices[lookupNdx*numInvocations]); 581 executor->execute(numInvocations, &inputs[0], &outputs[0]); 810 spec->inputs.push_back(Symbol(varName, VarType(TYPE_INT, PRECISION_HIGHP))); 868 vector<void*> inputs; local 896 inputs.push_back(&expandedIndices[readNdx*numInvocations]); 906 shaderExecutor->execute(numInvocations, inputs.empty() ? DE_NULL : &inputs[0], &outputs[0]) 1090 vector<void*> inputs; local [all...] |
/external/llvm/utils/lit/lit/ |
discovery.py | 192 def find_tests_for_inputs(lit_config, inputs): 194 find_tests_for_inputs(lit_config, inputs) -> [Test] 200 # Expand '@...' form in inputs. 202 for input in inputs: 215 # Load the tests from the inputs. 233 def load_test_suite(inputs): 251 run = lit.run.Run(litConfig, find_tests_for_inputs(litConfig, inputs))
|
/external/mesa3d/src/compiler/nir/ |
nir_lower_bitmap.c | 61 nir_foreach_variable(var, &shader->inputs) {
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_tgsi.h | 92 * the output color in terms of inputs. 108 * The interpolation is described in terms of regular inputs. 227 const LLVMValueRef (*inputs)[4], 242 const LLVMValueRef *inputs, 449 const LLVMValueRef (*inputs)[TGSI_NUM_CHANNELS]; member in struct:lp_build_tgsi_soa_context 475 /* We allocate/use this array of inputs if (1 << TGSI_FILE_INPUT) is 477 * The inputs[] array above is unused then. 545 const LLVMValueRef *inputs; member in struct:lp_build_tgsi_aos_context
|
/external/mesa3d/src/gallium/state_trackers/omx/ |
vid_dec.h | 123 const void *inputs[2]; \
|
/external/mesa3d/src/mesa/state_tracker/ |
st_glsl_to_nir.cpp | 70 /* input location assignment for VS inputs must be handled specially, so 72 * (This isn't the case with, for ex, FS inputs, which only need to agree 96 nir_foreach_variable_safe(var, &nir->inputs) { 106 * inputs array and expecting to find inputs with a driver_location 321 /* Re-lower global vars, to deal with any dead VS inputs. */ 330 sort_varyings(&nir->inputs); 331 nir_assign_var_locations(&nir->inputs, 334 st_nir_fixup_varying_slots(st, &nir->inputs);
|
/external/pdfium/core/fxcodec/codec/ |
fx_codec_icc.cpp | 167 CFX_FixedBufGrow<double, 16> inputs(nSrcComponents); 168 double* input = inputs; 174 CFX_FixedBufGrow<uint8_t, 16> inputs(nSrcComponents); 175 uint8_t* input = inputs; [all...] |
/external/v8/tools/sanitizers/ |
sancov_formatter.py | 341 # Inputs for multiprocessing. List of tuples of: 343 inputs = [] 347 inputs.append((options.coverage_dir, match.group(1), f)) 350 len(inputs), options.json_input) 355 results = pool.imap_unordered(get_covered_lines, inputs)
|
/frameworks/base/media/mca/filterfw/jni/ |
jni_native_program.h | 87 jobjectArray inputs,
|
jni_shader_program.cpp | 93 jobjectArray inputs, 97 if (program && inputs && output) { 99 const int input_count = env->GetArrayLength(inputs); 101 jobject input = env->GetObjectArrayElement(inputs, i);
|
/frameworks/data-binding/extensions/library/ |
build.gradle | 150 public void transform(Context context, Collection<TransformInput> inputs, 154 inputs.each { transformInput ->
|