Searched refs:src_index (Results 1 - 25 of 37) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Drc_test_helpers.h4 unsigned int src_index,
H A Drc_test_helpers.c78 * Initialize the source register at index src_index for the instruction based
90 unsigned int src_index,
96 struct rc_src_register * src_reg = &inst->U.I.SrcReg[src_index];
88 init_rc_normal_src( struct rc_instruction * inst, unsigned int src_index, const char * src_str) argument
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_vertex.h90 unsigned src_index:8; /**< map to post-xform attribs */ member in struct:vertex_info::__anon14458
120 * \param src_index indicates which post-transformed vertex attrib slot
128 uint src_index)
134 vinfo->attrib[n].src_index = src_index;
125 draw_emit_vertex_attr(struct vertex_info *vinfo, enum attrib_emit emit, enum interp_mode interp, uint src_index) argument
H A Ddraw_pt_emit.c82 unsigned src_offset = (vinfo->attrib[i].src_index * 4 * sizeof(float) );
H A Ddraw_pipe_vbuf.c228 unsigned src_offset = (vbuf->vinfo->attrib[i].src_index * 4 * sizeof(float) );
H A Ddraw_pt_fetch_emit.c117 const struct pipe_vertex_element *src = &draw->pt.vertex_element[vinfo->attrib[i].src_index];
H A Ddraw_pt_fetch_shade_emit.c138 fse->key.element[i].out.vs_output = vinfo->attrib[i].src_index;
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_variable.c86 int src_index = reader->U.P.Arg->Source; local
87 if (src_index == RC_PAIR_PRESUB_SRC) {
88 src_index = rc_pair_get_src_index(
96 src_index, old_mask)) {
103 pair_inst->RGB.Src[src_index]
105 pair_inst->RGB.Src[src_index]
107 pair_inst->RGB.Src[src_index]
111 pair_inst->Alpha.Src[src_index]
113 pair_inst->Alpha.Src[src_index]
115 pair_inst->Alpha.Src[src_index]
[all...]
H A Dradeon_optimize.c469 unsigned int src_index; local
474 for (src_index = 0; src_index < info->NumSrcRegs; src_index++) {
475 if (&reader.Inst->U.I.SrcReg[src_index] == reader.U.I.Src)
476 presub_replace(inst_add, reader.Inst, src_index);
487 unsigned int src_index)
505 inst_reader->U.I.SrcReg[src_index] =
506 chain_srcregs(inst_reader->U.I.SrcReg[src_index],
508 inst_reader->U.I.SrcReg[src_index]
484 presub_replace_add( struct rc_instruction * inst_add, struct rc_instruction * inst_reader, unsigned int src_index) argument
599 presub_replace_inv( struct rc_instruction * inst_add, struct rc_instruction * inst_reader, unsigned int src_index) argument
[all...]
/external/v8/src/compiler/
H A Dgap-resolver.cc49 int src_index = -1; local
53 src_index = src_loc.register_code() * aliases;
55 src_index = src_loc.index();
71 move->set_source(AllocatedOperand(src_kind, smaller_rep, src_index));
75 src_index += src_step;
77 moves->AddMove(AllocatedOperand(src_kind, smaller_rep, src_index),
/external/drm_hwcomposer/
H A Dglworker.cpp644 for (unsigned src_index = 0; src_index < cmd.texture_count; src_index++) {
646 texture_name_formatter << "uLayerTexture" << src_index; local
650 const RenderingCommand::TextureSource &src = cmd.textures[src_index];
651 glUniform1f(gl_alpha_loc + src_index, src.alpha);
652 glUniform1f(gl_premult_loc + src_index, src.premult);
653 glUniform4f(gl_crop_loc + src_index, src.crop_bounds[0],
656 glUniform1i(gl_tex_loc, src_index);
657 glUniformMatrix2fv(gl_tex_matrix_loc + src_index,
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_interp.h55 * src_index.
72 uint src_index:8; /* where to find values in incoming vertices */ member in struct:lp_shader_input
H A Dlp_setup_point.c217 unsigned vert_attr = key->inputs[slot].src_index;
H A Dlp_state_setup.c539 load_attribute(gallivm, args, key, key->inputs[slot].src_index, attribs);
549 load_attribute(gallivm, args, key, key->inputs[slot].src_index, attribs);
555 load_attribute(gallivm, args, key, key->inputs[slot].src_index, attribs);
H A Dlp_setup_tri.c123 const float *in = v[key->inputs[i].src_index];
127 name, key->inputs[i].src_index,
H A Dlp_setup_line.c173 unsigned vert_attr = key->inputs[slot].src_index;
H A Dlp_state_fs.c1366 shader->inputs[i].src_index = 0;
1370 shader->inputs[i].src_index = i+1;
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_prim_emit.c79 const uint j = vinfo->attrib[i].src_index;
/external/webrtc/webrtc/modules/audio_processing/utility/
H A Ddelay_estimator.c333 int src_index = 0; local
344 src_index = abs_shift;
350 &self->binary_far_history[src_index],
355 &self->far_bit_counts[src_index],
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c630 const uint vertSlot = vinfo->attrib[fragSlot].src_index;
986 const uint vertSlot = vinfo->attrib[fragSlot].src_index;
1244 const uint vertSlot = vinfo->attrib[fragSlot].src_index;
/external/vulkan-validation-layers/loader/
H A Dloader.c2026 uint32_t src_index, dst_index = 0; local
2027 for (src_index = 0; src_index < *layer_count; src_index++) {
2028 if (loader_find_layer_name_array(pp_src_layers[src_index], expand_count,
2033 if (!strcmp(pp_src_layers[src_index], key_name)) {
2043 pp_dst_layers[dst_index++] = pp_src_layers[src_index];
/external/v8/src/
H A Delements.cc819 ElementsKind from_kind, uint32_t capacity, uint32_t src_index,
834 Subclass::CopyElementsImpl(*old_elements, src_index, *new_elements,
2090 int src_index, int len, int hole_start,
2097 BackingStore::cast(heap->LeftTrimFixedArray(*dst_elms, src_index));
2100 hole_end -= src_index;
2106 dst_elms->data_start() + src_index, len * kDoubleSize);
2109 heap->MoveElements(FixedArray::cast(*dst_elms), dst_index, src_index,
2377 uint32_t copy_size, uint32_t src_index,
2384 Object* argument = (*args)[src_index + i];
817 ConvertElementsWithCapacity( Handle<JSObject> object, Handle<FixedArrayBase> old_elements, ElementsKind from_kind, uint32_t capacity, uint32_t src_index, uint32_t dst_index, int copy_size) argument
2088 MoveElements(Isolate* isolate, Handle<JSArray> receiver, Handle<FixedArrayBase> backing_store, int dst_index, int src_index, int len, int hole_start, int hole_end) argument
2376 CopyArguments(Arguments* args, Handle<FixedArrayBase> dst_store, uint32_t copy_size, uint32_t src_index, uint32_t dst_index) argument
/external/v8/src/heap/
H A Dheap.h735 // Move len elements within a given array from src_index index to dst_index
737 void MoveElements(FixedArray* array, int dst_index, int src_index, int len);
/external/vixl/src/aarch64/
H A Dlogic-aarch64.cc2425 int src_index) {
2427 uint64_t value = src.Uint(vform, src_index);
2453 int src_index) {
2454 dst.SetUint(vform, dst_index, src.Uint(vform, src_index));
2422 dup_element(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, int src_index) argument
2449 ins_element(VectorFormat vform, LogicVRegister dst, int dst_index, const LogicVRegister& src, int src_index) argument
/external/v8/src/interpreter/
H A Dinterpreter.cc415 Node* src_index = __ BytecodeOperandReg(0); local
416 Node* src_value = __ LoadRegister(src_index);

Completed in 1927 milliseconds

12