HomeSort by relevance Sort by last modified time
    Searched refs:inputs (Results 501 - 525 of 1469) sorted by null

<<21222324252627282930>>

  /external/autotest/client/common_lib/
control_data_unittest.py 313 inputs = [time.upper() for time in
316 for time in inputs]
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureFilteringExplicitLodTests.cpp 824 const void* inputs[6] = local
846 m_executor->execute(m_numSamples, inputs, outputs, *m_extraResourcesSet);
1096 m_shaderSpec.inputs .push_back(Symbol("coord", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP)));
1097 m_shaderSpec.inputs .push_back(Symbol("layer", glu::VarType(glu::TYPE_FLOAT, glu::PRECISION_HIGHP)));
1098 m_shaderSpec.inputs .push_back(Symbol("dRef", glu::VarType(glu::TYPE_FLOAT, glu::PRECISION_HIGHP)));
1099 m_shaderSpec.inputs .push_back(Symbol("dPdx", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP)));
1100 m_shaderSpec.inputs .push_back(Symbol("dPdy", glu::VarType(glu::TYPE_FLOAT_VEC4, glu::PRECISION_HIGHP)));
1101 m_shaderSpec.inputs .push_back(Symbol("lod", glu::VarType(glu::TYPE_FLOAT, glu::PRECISION_HIGHP)));
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_shader.h 270 inputs_vec inputs; member in class:r600_sb::shader
346 const inputs_vec & get_inputs() {return inputs; }
sb_shader.cpp 36 regions(), inputs(), undef(), val_pool(sizeof(value)),
197 if (inputs.size() <= gpr)
198 inputs.resize(gpr+1);
200 shader_input &i = inputs[gpr];
220 for(inputs_vec::const_iterator I = inputs.begin(),
221 E = inputs.end(); I != E; ++I, ++gpr) {
  /external/skia/src/gpu/glsl/
GrGLSLFragmentShaderBuilder.cpp 263 inputs().appendVAList(fmt, argp);
282 fProgramBuilder->varyingHandler()->getFragDecls(&this->inputs(), &this->outputs());
  /external/vixl/test/aarch32/
test-simulator-cond-rd-operand-rn-shift-amount-1to31-a32.cc 132 // `Inputs` have various layouts across generated tests so they absolutely
148 struct Inputs {
166 const Inputs* inputs; member in struct:vixl::aarch32::__anon38340::TestLoopData
169 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0xabababab},
185 static const Inputs kRdIsRn[] = {{NoFlag, 0x00000000, 0x00000000},
217 static const Inputs kRdIsNotRn[] = {{NoFlag, 0x00000002, 0xcccccccc},
418 static const Inputs kShiftTypes[] = {{NoFlag, 0xabababab, 0x00000000},
    [all...]
test-simulator-cond-rd-operand-rn-shift-amount-1to31-t32.cc 132 // `Inputs` have various layouts across generated tests so they absolutely
148 struct Inputs {
166 const Inputs* inputs; member in struct:vixl::aarch32::__anon38341::TestLoopData
169 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0xabababab},
185 static const Inputs kRdIsRn[] = {{NoFlag, 0x00000000, 0x00000000},
217 static const Inputs kRdIsNotRn[] = {{NoFlag, 0x00000002, 0xcccccccc},
418 static const Inputs kShiftTypes[] = {{NoFlag, 0xabababab, 0x00000000},
    [all...]
test-simulator-cond-rd-operand-rn-shift-amount-1to32-a32.cc 132 // `Inputs` have various layouts across generated tests so they absolutely
148 struct Inputs {
166 const Inputs* inputs; member in struct:vixl::aarch32::__anon38342::TestLoopData
169 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0xabababab},
185 static const Inputs kRdIsRn[] = {{NoFlag, 0x00000000, 0x00000000},
217 static const Inputs kRdIsNotRn[] = {{NoFlag, 0x00000002, 0xcccccccc},
418 static const Inputs kShiftTypes[] = {{NoFlag, 0xabababab, 0x00000000},
    [all...]
test-simulator-cond-rd-operand-rn-shift-amount-1to32-t32.cc 132 // `Inputs` have various layouts across generated tests so they absolutely
148 struct Inputs {
166 const Inputs* inputs; member in struct:vixl::aarch32::__anon38343::TestLoopData
169 static const Inputs kCondition[] = {{NFlag, 0xabababab, 0xabababab},
185 static const Inputs kRdIsRn[] = {{NoFlag, 0x00000000, 0x00000000},
217 static const Inputs kRdIsNotRn[] = {{NoFlag, 0x00000002, 0xcccccccc},
418 static const Inputs kShiftTypes[] = {{NoFlag, 0xabababab, 0x00000000},
    [all...]
test-simulator-cond-rdlow-operand-imm8-t32.cc 127 // `Inputs` have various layouts across generated tests so they absolutely
141 struct Inputs {
158 const Inputs* inputs; member in struct:vixl::aarch32::__anon38369::TestLoopData
161 static const Inputs kCondition[] = {{NFlag, 0xabababab},
177 static const Inputs kModifiedImmediate[] = {{NoFlag, 0x00000000},
    [all...]
  /frameworks/support/room/compiler/src/test/kotlin/android/arch/persistence/room/parser/
SqlParserTest.kt 145 assertThat((SqlParser.parse(query)).inputs.map { it.text }, `is`(expected.toList()))
  /prebuilts/go/darwin-x86/src/io/
multi.go 46 // inputs have returned EOF, Read will return EOF. If any of the readers
  /prebuilts/go/linux-x86/src/io/
multi.go 46 // inputs have returned EOF, Read will return EOF. If any of the readers
  /build/kati/
rule_parser.go 66 inputs []string
117 r.inputs = append(r.inputs, t)
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ReduceTest.java 511 Allocation[] inputs = createInputAllocations(Element.I32(mRS), 3); local
517 for (int i = 0; i < inputs.length; ++i) {
518 for (int j = 0; j < inputs.length; ++j) {
520 mScript.reduce_sumxor(inputs[i], inputs[j]);
522 fail("expected RSRuntimeException for dimension mismatch: inputs " + i + " and " + j);
525 fail("did not expect RSRuntimeException for dimension match: inputs " + i);
530 for (Allocation a : inputs) {
642 fail("expected RSRuntimeException for dimension mismatch: inputs " + i + ", " + j + ", " + k);
645 fail("did not expect RSRuntimeException for dimension match: inputs " + i)
    [all...]
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.cpp 203 void Texture2DShader::shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const
209 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx);
210 packet.outputs[0] = rr::readVertexAttribFloat(inputs[1], packet.instanceNdx, packet.vertexNdx);
364 void TextureCubeArrayShader::shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const
371 const tcu::Vec2 a_coord = rr::readVertexAttribFloat(inputs[1], packet.instanceNdx, packet.vertexNdx).xy();
374 packet.position = rr::readVertexAttribFloat(inputs[0], packet.instanceNdx, packet.vertexNdx);
  /external/guava/guava/src/com/google/common/collect/
Iterators.java 498 * iterates across the elements of each iterator in {@code inputs}. The input
511 public static <T> Iterator<T> concat(Iterator<? extends T>... inputs) {
512 return concat(ImmutableList.copyOf(inputs).iterator());
517 * iterates across the elements of each iterator in {@code inputs}. The input
530 final Iterator<? extends Iterator<? extends T>> inputs) {
531 checkNotNull(inputs);
543 // because otherwise we'll have called inputs.next() before throwing
544 // the first NPE, and the next time around we'll call inputs.next()
547 && inputs.hasNext()) {
548 current = inputs.next()
    [all...]
  /frameworks/ml/nn/runtime/test/
TestPartitioning.cpp 57 // different kinds of operations (each of which has two inputs and one
72 // subgraph, model inputs, model outputs, submodel inputs, and
76 // comparison and the inputs and outputs comparisons are syntactic
78 // reorderings of inputs and outputs. Because of this, we need to
79 // know exactly how the partitioning algorithm orders inputs and
89 // - It finds model inputs, model outputs, and submodel inputs in
97 // passes inputs from getModelInputs() in order followed by submodel
98 // inputs from getSubModelInputs() in order; and it passes output
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
options.cc 425 cmdline->inputs().add_file(file);
463 cmdline->inputs().add_file(file);
558 cmdline->inputs().start_group();
565 cmdline->inputs().end_group();
572 cmdline->inputs().start_lib(cmdline->position_dependent_options());
579 cmdline->inputs().end_lib();
    [all...]
  /art/compiler/optimizing/
induction_var_analysis.cc 411 // Match all phi inputs from input_index onwards exactly.
412 HInputsRef inputs = phi->GetInputs(); local
413 DCHECK_LT(input_index, inputs.size());
414 InductionInfo* a = LookupInfo(loop, inputs[input_index]);
415 for (size_t i = input_index + 1, n = inputs.size() - adjust_input_size; i < n; i++) {
416 InductionInfo* b = LookupInfo(loop, inputs[i]);
429 // Two linear or two polynomial inputs can be combined too. Other combinations fail.
494 // but multiplied result. Two non-invariant inputs cannot be multiplied, however.
540 // Match all phi inputs from input_index onwards exactly.
541 HInputsRef inputs = phi->GetInputs() local
    [all...]
  /external/v8/src/compiler/
ast-graph-builder.cc 400 Node** const inputs = &exit_controls_.front(); local
401 Node* end = graph()->NewNode(common()->End(input_count), input_count, inputs);
2972 Node* inputs[] = {other_control}; local
3129 int inputs = control->op()->ControlInputCount() + 1; local
3143 Node* inputs[] = {control, other}; local
3151 int inputs = control->op()->ControlInputCount(); local
3167 int inputs = control->op()->ControlInputCount(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktShaderLibrary.cpp 166 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++)
168 const Value& val = spec.values.inputs[ndx];
188 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++)
190 const Value& val = spec.values.inputs[ndx];
305 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++)
307 const Value& val = spec.values.inputs[ndx];
383 for (size_t ndx = 0; ndx < spec.values.inputs.size(); ndx++)
385 const Value& val = spec.values.inputs[ndx];
441 for (size_t ndx = 0; ndx < specParams.caseSpec.values.inputs.size(); ndx++)
443 const Value& val = specParams.caseSpec.values.inputs[ndx]
    [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_fragprog.c 1035 GLbitfield64 inputs = p->FragProg.info.inputs_read; local
1039 if (inputs & VARYING_BIT_TEX(i)) {
1046 if (inputs & VARYING_BIT_VAR(i)) {
1062 GLbitfield64 inputs = p->FragProg.info.inputs_read; local
1068 if ((inputs & VARYING_BIT_POS) == 0)
1072 unit += !!(inputs & VARYING_BIT_TEX(i));
1073 unit += !!(inputs & VARYING_BIT_VAR(i));
    [all...]
  /external/v8/src/wasm/
function-body-decoder.cc 151 // TF graphs when decoding inputs that have unreachable code.
    [all...]

Completed in 820 milliseconds

<<21222324252627282930>>