Searched defs:src_index (Results 1 - 23 of 23) sorted by relevance

/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
/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
/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/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/mesa3d/src/gallium/drivers/r300/compiler/tests/
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/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/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/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/interpreter/
H A Dinterpreter.cc415 Node* src_index = __ BytecodeOperandReg(0); local
416 Node* src_value = __ LoadRegister(src_index);
/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/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/crankshaft/arm/
H A Dlithium-codegen-arm.cc652 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
653 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/arm64/
H A Dlithium-codegen-arm64.cc326 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
327 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/ia32/
H A Dlithium-codegen-ia32.cc573 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
574 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/mips/
H A Dlithium-codegen-mips.cc668 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
669 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/mips64/
H A Dlithium-codegen-mips64.cc656 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
657 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/ppc/
H A Dlithium-codegen-ppc.cc635 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
636 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/s390/
H A Dlithium-codegen-s390.cc603 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
604 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/x64/
H A Dlithium-codegen-x64.cc593 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
594 translation->StoreLiteral(src_index);
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc845 int src_index = DefineDeoptimizationLiteral(constant->handle(isolate())); local
846 translation->StoreLiteral(src_index);
/external/v8/src/heap/
H A Dheap.cc1104 void Heap::MoveElements(FixedArray* array, int dst_index, int src_index, argument
1110 MemMove(dst_objects, array->data_start() + src_index, len * kPointerSize);
/external/v8/src/crankshaft/
H A Dhydrogen.cc2237 HValue* src_index = AddUncasted<HAdd>(src_offset, index); local
2239 AddUncasted<HSeqStringGetChar>(src_encoding, src, src_index);

Completed in 643 milliseconds