/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/gen/ |
main.go | 48 resultNotInArgs bool // outputs must not be allocated to the same registers as inputs 62 inputs []regMask 177 if v.reg.inputs[0] != v.reg.outputs[0] { 180 if v.commutative && v.reg.inputs[1] != v.reg.outputs[0] { 226 for i, r := range v.reg.inputs { 233 fmt.Fprintln(w, "inputs: []inputInfo{") 235 r := v.reg.inputs[p.val]
|
/external/mesa3d/src/mesa/vbo/ |
vbo_exec_array.c | 233 * Set the vbo->exec->inputs[] pointers to point to the enabled 247 const struct gl_vertex_array **inputs = &exec->array.inputs[0]; local 260 inputs[i] = &vertexAttrib[VERT_ATTRIB_FF(i)]; 262 inputs[i] = &vbo->currval[VBO_ATTRIB_POS + i]; 268 inputs[VERT_ATTRIB_GENERIC(i)] = 277 inputs[VERT_ATTRIB_GENERIC(i)] = 301 inputs[0] = &vertexAttrib[VERT_ATTRIB_GENERIC0]; 303 inputs[0] = &vertexAttrib[VERT_ATTRIB_POS]; 305 inputs[0] = &vbo->currval[VBO_ATTRIB_POS] [all...] |
vbo_save.h | 128 const struct gl_vertex_array *inputs[VBO_ATTRIB_MAX]; member in struct:vbo_save_context
|
/frameworks/compile/mclinker/lib/Script/ |
ScriptParser.yy | 269 inputs 273 inputs : input 275 | inputs input 277 | inputs ',' input 281 inputs ')' 283 | inputs AS_NEEDED '(' 285 inputs ')' 287 | inputs ',' AS_NEEDED '(' 289 inputs ')'
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
Iterators.java | 480 * iterates across the elements of each iterator in {@code inputs}. The input 493 public static <T> Iterator<T> concat(Iterator<? extends T>... inputs) { 494 return concat(ImmutableList.copyOf(inputs).iterator()); 499 * iterates across the elements of each iterator in {@code inputs}. The input 512 final Iterator<? extends Iterator<? extends T>> inputs) { 513 checkNotNull(inputs); 525 // because otherwise we'll have called inputs.next() before throwing 526 // the first NPE, and the next time around we'll call inputs.next() 529 && inputs.hasNext()) { 530 current = inputs.next() [all...] |
/external/v8/src/compiler/mips/ |
instruction-selector-mips.cc | 150 size_t* input_count_return, InstructionOperand* inputs) { 154 inputs[0] = g.UseImmediate(node); 167 InstructionOperand inputs[4]; local 173 &inputs[1])) { 174 inputs[0] = g.UseRegister(m.left().node()); 178 &input_count, &inputs[1])) { 179 inputs[0] = g.UseRegister(m.right().node()); 183 inputs[input_count++] = g.UseRegister(m.left().node()); 184 inputs[input_count++] = g.UseOperand(m.right().node(), opcode); 188 inputs[input_count++] = g.Label(cont->true_block()) 306 InstructionOperand inputs[3]; local 553 InstructionOperand inputs[] = {g.UseUniqueRegister(node->InputAt(0)), local 597 InstructionOperand inputs[] = {g.UseUniqueRegister(node->InputAt(0)), local [all...] |
/external/v8/tools/turbolizer/ |
graph-view.js | 188 var edges = inEdges ? element.__data__.inputs : element.__data__.outputs; 276 n.inputs = []; 296 t.inputs.push(newEdge); 322 element.__data__.inputs.forEach(function(edge) { 341 var edge = g.nodeMap[components[3]].inputs[components[2]]; 349 var edge = g.nodeMap[components[3]].inputs[components[2]]; 357 var edge = g.nodeMap[components[3]].inputs[components[2]]; 770 for (var i = 0; i < d.inputs.length; ++i) { 775 return d.inputs[i].isVisible(); 778 return !d.inputs[i].isVisible() [all...] |
/external/webrtc/webrtc/modules/video_capture/ios/ |
rtc_video_capture_ios_objc.mm | 124 NSArray* currentInputs = [NSArray arrayWithArray:[_captureSession inputs]]; 212 NSArray* sessionInputs = _captureSession.inputs; 313 NSArray* currentInputs = [_captureSession inputs];
|
/external/deqp/modules/gles2/functional/ |
es2fDepthTests.cpp | 57 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const; 88 void DepthShader::shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const 91 packets[packetNdx]->position = rr::readVertexAttribFloat(inputs[0], packets[packetNdx]->instanceNdx, packets[packetNdx]->vertexNdx);
|
/external/deqp/modules/gles3/functional/ |
es3fDepthTests.cpp | 57 void shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const; 91 void DepthShader::shadeVertices (const rr::VertexAttrib* inputs, rr::VertexPacket* const* packets, const int numPackets) const 94 packets[packetNdx]->position = rr::readVertexAttribFloat(inputs[0], packets[packetNdx]->instanceNdx, packets[packetNdx]->vertexNdx);
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_vertprog.c | 244 fprintf(stderr, "%d ", vp->inputs[i]); 257 /* if(vp->inputs[src->Index] != -1) 258 return vp->inputs[src->Index]; 261 if(vp->inputs[i] > max_reg) 262 max_reg = vp->inputs[i]; 264 vp->inputs[src->Index] = max_reg+1;*/ 267 assert(vp->inputs[src->Index] != -1); 268 return vp->inputs[src->Index]; 421 fprintf(stderr, "can't handle vert prog inputs 0x%x\n", 472 vp->inputs[i] = -1 [all...] |
/external/skia/tools/viewer/sk_app/win/ |
Window_win.cpp | 303 std::unique_ptr<TOUCHINPUT[]> inputs(new TOUCHINPUT[numInputs]); 304 if (GetTouchInputInfo((HTOUCHINPUT)lParam, numInputs, inputs.get(), 309 TOUCHINPUT ti = inputs[i];
|
/cts/suite/audio_quality/lib/src/task/ |
TaskProcess.cpp | 170 std::unique_ptr<void_ptr[]> inputs; local 182 if (!prepareParams(mInput, builtIn ? info->mInputTypes : NULL, inputs, inputValues, 194 result = (mBuiltin.*(info->mFunction))(inputs.get(), outputs.get()); 205 mInput.size(), inputTypes.get(), inputs.get(),
|
/external/autotest/server/hosts/ |
testbed.py | 221 def _install_device(inputs): 222 """Install build to a device with the given inputs. 224 @param inputs: A dictionary of the arguments needed to install a device. 229 host = inputs['host'] 230 build_url = inputs['build_url'] 231 build_local_path = inputs['build_local_path']
|
/external/lmfit/ruby/inline/ |
curve1_rubyinline.rb | 44 /* ruby macros dealing with inputs */
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_rast_tri_tmp.h | 67 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask); 189 if (tri->inputs.disable) { 396 lp_rast_shade_quads_mask(task, &tri->inputs, px, py, mask); 442 lp_rast_shade_quads_mask(task, &tri->inputs, x, y, mask);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_code.h | 278 int inputs[VSF_MAX_INPUTS]; member in struct:r300_vertex_program_code
|
/external/v8/src/compiler/ |
instruction-selector.h | 108 InstructionOperand* inputs, size_t temp_count = 0, 125 InstructionOperand* inputs, DeoptimizeKind kind, 305 // to the inputs and outputs of the call. 317 InstructionOperandVector* inputs, 320 InstructionOperandVector* inputs,
|
/frameworks/ml/nn/runtime/test/generated/vts_models/ |
depthwise_conv2d_float.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|
depthwise_conv2d_float_large.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|
depthwise_conv2d_float_large_2.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|
depthwise_conv2d_float_large_2_weights_as_inputs.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|
depthwise_conv2d_float_large_weights_as_inputs.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|
depthwise_conv2d_float_weights_as_inputs.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|
depthwise_conv2d_quant8.model.cpp | 82 .inputs = {0, 1, 2, 3, 3, 3, 3, 5, 5, 6, 4},
|