Searched refs:src0 (Results 1 - 25 of 144) sorted by relevance

123456

/external/chromium_org/media/base/simd/
H A Dfilter_yuv_sse2.cc17 const uint8* src0,
27 dest[pixel] = (src0[pixel] * (256 - fraction) +
36 reinterpret_cast<const __m128i*>(src0 + pixel);
44 __m128i src0 = _mm_loadu_si128(src0_128); local
46 __m128i src2 = _mm_unpackhi_epi8(src0, zero);
48 src0 = _mm_unpacklo_epi8(src0, zero);
50 src0 = _mm_mullo_epi16(src0, src0_fraction);
54 src0
16 FilterYUVRows_SSE2(uint8* dest, const uint8* src0, const uint8* src1, int width, int fraction) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.h163 src_reg src0 = src_reg(),
336 vec4_instruction *emit(enum opcode opcode, dst_reg dst, src_reg src0);
339 src_reg src0, src_reg src1);
342 src_reg src0, src_reg src1, src_reg src2);
347 vec4_instruction *MOV(dst_reg dst, src_reg src0);
348 vec4_instruction *NOT(dst_reg dst, src_reg src0);
349 vec4_instruction *RNDD(dst_reg dst, src_reg src0);
350 vec4_instruction *RNDE(dst_reg dst, src_reg src0);
351 vec4_instruction *RNDZ(dst_reg dst, src_reg src0);
352 vec4_instruction *FRC(dst_reg dst, src_reg src0);
[all...]
H A Dbrw_eu_emit.c743 struct brw_reg src0,
748 brw_set_src0(p, insn, src0);
767 struct brw_reg src0,
788 assert(src0.file == BRW_GENERAL_REGISTER_FILE);
789 assert(src0.address_mode == BRW_ADDRESS_DIRECT);
790 assert(src0.nr < 128);
791 assert(src0.type == BRW_REGISTER_TYPE_F);
792 insn->bits2.da3src.src0_swizzle = src0.dw1.bits.swizzle;
793 insn->bits2.da3src.src0_subreg_nr = get_3src_subreg_nr(src0);
794 insn->bits2.da3src.src0_reg_nr = src0
740 brw_alu2(struct brw_compile *p, GLuint opcode, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1 ) argument
764 brw_alu3(struct brw_compile *p, GLuint opcode, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1, struct brw_reg src2) argument
933 brw_AVG(struct brw_compile *p, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1) argument
955 brw_MUL(struct brw_compile *p, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1) argument
1007 brw_JMPI(struct brw_compile *p, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1) argument
1123 gen6_IF(struct brw_compile *p, uint32_t conditional, struct brw_reg src0, struct brw_reg src1) argument
1609 brw_CMP(struct brw_compile *p, struct brw_reg dest, GLuint conditional, struct brw_reg src0, struct brw_reg src1) argument
1722 brw_math2(struct brw_compile *p, struct brw_reg dest, GLuint function, struct brw_reg src0, struct brw_reg src1) argument
2235 brw_fb_WRITE(struct brw_compile *p, int dispatch_width, GLuint msg_reg_nr, struct brw_reg src0, GLuint msg_control, GLuint binding_table_index, GLuint msg_length, GLuint response_length, bool eot, bool header_present) argument
2297 brw_SAMPLE(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, GLuint binding_table_index, GLuint sampler, GLuint writemask, GLuint msg_type, GLuint response_length, GLuint msg_length, GLuint header_present, GLuint simd_mode, GLuint return_format) argument
2425 brw_urb_WRITE(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, bool allocate, bool used, GLuint msg_length, GLuint response_length, bool eot, bool writes_complete, GLuint offset, GLuint swizzle) argument
2555 brw_ff_sync(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, bool allocate, GLuint response_length, bool eot) argument
2595 brw_svb_write(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, GLuint binding_table_index, bool send_commit_msg) argument
[all...]
H A Dbrw_fs.h146 fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0);
147 fs_inst(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
149 fs_reg src0, fs_reg src1,fs_reg src2);
221 fs_inst *emit(enum opcode opcode, fs_reg dst, fs_reg src0);
222 fs_inst *emit(enum opcode opcode, fs_reg dst, fs_reg src0, fs_reg src1);
224 fs_reg src0, fs_reg src1, fs_reg src2);
277 struct brw_reg src0,
284 struct brw_reg src0,
316 fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0);
317 fs_inst *emit_math(enum opcode op, fs_reg dst, fs_reg src0, fs_re
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4.h163 src_reg src0 = src_reg(),
336 vec4_instruction *emit(enum opcode opcode, dst_reg dst, src_reg src0);
339 src_reg src0, src_reg src1);
342 src_reg src0, src_reg src1, src_reg src2);
347 vec4_instruction *MOV(dst_reg dst, src_reg src0);
348 vec4_instruction *NOT(dst_reg dst, src_reg src0);
349 vec4_instruction *RNDD(dst_reg dst, src_reg src0);
350 vec4_instruction *RNDE(dst_reg dst, src_reg src0);
351 vec4_instruction *RNDZ(dst_reg dst, src_reg src0);
352 vec4_instruction *FRC(dst_reg dst, src_reg src0);
[all...]
H A Dbrw_eu_emit.c743 struct brw_reg src0,
748 brw_set_src0(p, insn, src0);
767 struct brw_reg src0,
788 assert(src0.file == BRW_GENERAL_REGISTER_FILE);
789 assert(src0.address_mode == BRW_ADDRESS_DIRECT);
790 assert(src0.nr < 128);
791 assert(src0.type == BRW_REGISTER_TYPE_F);
792 insn->bits2.da3src.src0_swizzle = src0.dw1.bits.swizzle;
793 insn->bits2.da3src.src0_subreg_nr = get_3src_subreg_nr(src0);
794 insn->bits2.da3src.src0_reg_nr = src0
740 brw_alu2(struct brw_compile *p, GLuint opcode, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1 ) argument
764 brw_alu3(struct brw_compile *p, GLuint opcode, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1, struct brw_reg src2) argument
933 brw_AVG(struct brw_compile *p, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1) argument
955 brw_MUL(struct brw_compile *p, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1) argument
1007 brw_JMPI(struct brw_compile *p, struct brw_reg dest, struct brw_reg src0, struct brw_reg src1) argument
1123 gen6_IF(struct brw_compile *p, uint32_t conditional, struct brw_reg src0, struct brw_reg src1) argument
1609 brw_CMP(struct brw_compile *p, struct brw_reg dest, GLuint conditional, struct brw_reg src0, struct brw_reg src1) argument
1722 brw_math2(struct brw_compile *p, struct brw_reg dest, GLuint function, struct brw_reg src0, struct brw_reg src1) argument
2235 brw_fb_WRITE(struct brw_compile *p, int dispatch_width, GLuint msg_reg_nr, struct brw_reg src0, GLuint msg_control, GLuint binding_table_index, GLuint msg_length, GLuint response_length, bool eot, bool header_present) argument
2297 brw_SAMPLE(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, GLuint binding_table_index, GLuint sampler, GLuint writemask, GLuint msg_type, GLuint response_length, GLuint msg_length, GLuint header_present, GLuint simd_mode, GLuint return_format) argument
2425 brw_urb_WRITE(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, bool allocate, bool used, GLuint msg_length, GLuint response_length, bool eot, bool writes_complete, GLuint offset, GLuint swizzle) argument
2555 brw_ff_sync(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, bool allocate, GLuint response_length, bool eot) argument
2595 brw_svb_write(struct brw_compile *p, struct brw_reg dest, GLuint msg_reg_nr, struct brw_reg src0, GLuint binding_table_index, bool send_commit_msg) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c460 LLVMValueRef src0, src1, src2; local
484 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
485 dst0 = lp_build_floor(&bld->bld_base.base, src0);
497 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
498 dst0 = lp_build_rcp(&bld->bld_base.base, src0);
503 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
504 tmp0 = lp_build_emit_llvm_unary(&bld->bld_base, TGSI_OPCODE_ABS, src0);
515 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
517 dst0 = lp_build_mul(&bld->bld_base.base, src0, src1);
521 src0
[all...]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c460 LLVMValueRef src0, src1, src2; local
484 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
485 dst0 = lp_build_floor(&bld->bld_base.base, src0);
497 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
498 dst0 = lp_build_rcp(&bld->bld_base.base, src0);
503 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
504 tmp0 = lp_build_emit_llvm_unary(&bld->bld_base, TGSI_OPCODE_ABS, src0);
515 src0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
517 dst0 = lp_build_mul(&bld->bld_base.base, src0, src1);
521 src0
[all...]
/external/linux-tools-perf/perf-3.12.0/arch/ia64/lib/
H A Dmemcpy_mck.S31 #define src0 r2 define
95 add src0=0,in1
143 add src1=8,src0 // 2nd src pointer
154 EX(.ex_handler, (p16) ld8 r34=[src0],16)
159 EX(.ex_handler, (p16) ld8 r32=[src0],16)
167 EX(.ex_handler, (p6) ld8 t1=[src0])
178 add src0=src0,r21 // setting up src pointer
191 mov src_pre_mem = src0
197 add src_pre_l2 = 8*8, src0
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c114 const union tgsi_exec_channel *src0,
118 dst->f[0] = src0->f[0] < src1->f[0] ? src1->f[0] : src0->f[0] > src2->f[0] ? src2->f[0] : src0->f[0];
119 dst->f[1] = src0->f[1] < src1->f[1] ? src1->f[1] : src0->f[1] > src2->f[1] ? src2->f[1] : src0->f[1];
120 dst->f[2] = src0->f[2] < src1->f[2] ? src1->f[2] : src0->f[2] > src2->f[2] ? src2->f[2] : src0
113 micro_clamp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
125 micro_cmp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
137 micro_cnd(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
270 micro_lrp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
282 micro_mad(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
346 micro_seq(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
357 micro_sge(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
388 micro_sgt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
409 micro_sle(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
420 micro_slt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
431 micro_sne(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
891 micro_add(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
902 micro_div( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1 ) argument
956 micro_lt( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2, const union tgsi_exec_channel *src3 ) argument
970 micro_max(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
981 micro_min(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
992 micro_mul(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
1014 micro_pow( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1 ) argument
1033 micro_sub(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3140 micro_shl(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3151 micro_and(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3162 micro_or(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3173 micro_xor(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3184 micro_mod(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3205 micro_idiv(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3216 micro_imax(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3227 micro_imin(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3238 micro_isge(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3249 micro_ishr(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3260 micro_islt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3291 micro_uadd(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3302 micro_udiv(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3313 micro_umad(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
3325 micro_umax(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3336 micro_umin(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3347 micro_umod(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3358 micro_umul(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3369 micro_useq(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3380 micro_usge(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3391 micro_ushr(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3402 micro_uslt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3413 micro_usne(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3434 micro_ucmp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c114 const union tgsi_exec_channel *src0,
118 dst->f[0] = src0->f[0] < src1->f[0] ? src1->f[0] : src0->f[0] > src2->f[0] ? src2->f[0] : src0->f[0];
119 dst->f[1] = src0->f[1] < src1->f[1] ? src1->f[1] : src0->f[1] > src2->f[1] ? src2->f[1] : src0->f[1];
120 dst->f[2] = src0->f[2] < src1->f[2] ? src1->f[2] : src0->f[2] > src2->f[2] ? src2->f[2] : src0
113 micro_clamp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
125 micro_cmp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
137 micro_cnd(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
270 micro_lrp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
282 micro_mad(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
346 micro_seq(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
357 micro_sge(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
388 micro_sgt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
409 micro_sle(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
420 micro_slt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
431 micro_sne(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
891 micro_add(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
902 micro_div( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1 ) argument
956 micro_lt( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2, const union tgsi_exec_channel *src3 ) argument
970 micro_max(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
981 micro_min(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
992 micro_mul(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
1014 micro_pow( union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1 ) argument
1033 micro_sub(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3140 micro_shl(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3151 micro_and(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3162 micro_or(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3173 micro_xor(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3184 micro_mod(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3205 micro_idiv(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3216 micro_imax(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3227 micro_imin(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3238 micro_isge(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3249 micro_ishr(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3260 micro_islt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3291 micro_uadd(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3302 micro_udiv(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3313 micro_umad(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
3325 micro_umax(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3336 micro_umin(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3347 micro_umod(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3358 micro_umul(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3369 micro_useq(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3380 micro_usge(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3391 micro_ushr(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3402 micro_uslt(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3413 micro_usne(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1) argument
3434 micro_ucmp(union tgsi_exec_channel *dst, const union tgsi_exec_channel *src0, const union tgsi_exec_channel *src1, const union tgsi_exec_channel *src2) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_fpc_translate.c498 uint src0, src1, src2, flags; local
503 src0 = src_vector(p, &inst->Src[0], fs);
508 src0, negate(src0, 1, 1, 1, 1), 0);
516 src0 = src_vector(p, &inst->Src[0], fs);
523 negate(src0, 1, 1, 1, 1), 0, 0);
532 src0 = src_vector(p, &inst->Src[0], fs);
538 0, src0, src2, src1); /* NOTE: order of src2, src1 */
542 src0 = src_vector(p, &inst->Src[0], fs);
548 src0, i915_emit_const1
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_fpc_translate.c498 uint src0, src1, src2, flags; local
503 src0 = src_vector(p, &inst->Src[0], fs);
508 src0, negate(src0, 1, 1, 1, 1), 0);
516 src0 = src_vector(p, &inst->Src[0], fs);
523 negate(src0, 1, 1, 1, 1), 0, 0);
532 src0 = src_vector(p, &inst->Src[0], fs);
538 0, src0, src2, src1); /* NOTE: order of src2, src1 */
542 src0 = src_vector(p, &inst->Src[0], fs);
548 src0, i915_emit_const1
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_fragprog.c409 GLuint src0, src1, src2, flags; local
414 src0 = src_vector(p, &inst->SrcReg[0], program);
419 src0, negate(src0, 1, 1, 1, 1), 0);
427 src0 = src_vector(p, &inst->SrcReg[0], program);
430 i915_emit_arith(p, A0_CMP, get_result_vector(p, inst), get_result_flags(inst), 0, src0, src2, src1); /* NOTE: order of src2, src1 */
434 src0 = src_vector(p, &inst->SrcReg[0], program);
443 src0,
513 src0 = src_vector(p, &inst->SrcReg[0], program);
519 swizzle(src0,
[all...]
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_fragprog.c409 GLuint src0, src1, src2, flags; local
414 src0 = src_vector(p, &inst->SrcReg[0], program);
419 src0, negate(src0, 1, 1, 1, 1), 0);
427 src0 = src_vector(p, &inst->SrcReg[0], program);
430 i915_emit_arith(p, A0_CMP, get_result_vector(p, inst), get_result_flags(inst), 0, src0, src2, src1); /* NOTE: order of src2, src1 */
434 src0 = src_vector(p, &inst->SrcReg[0], program);
443 src0,
513 src0 = src_vector(p, &inst->SrcReg[0], program);
519 swizzle(src0,
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c296 struct src_register *src0)
303 src0_swizzle = src0->base.swizzle;
312 src0->base.swizzle = SVGA3DSWIZZLE_NONE;
314 if (!emit_op1( emit, inst_token( SVGA3DOP_MOV ), dst, *src0 ))
317 *src0 = src( dst );
318 src0->base.swizzle = src0_swizzle;
335 struct src_register src0 )
337 return emit_op1( emit, inst, dest, src0 );
351 struct src_register src0,
359 type0 = SVGA3dShaderGetRegType( src0
294 emit_repl( struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register *src0) argument
348 submit_op2( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1 ) argument
393 submit_op3( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2 ) argument
463 submit_op4( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2, struct src_register src3) argument
547 submit_lrp(struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1, struct src_register src2) argument
781 const struct src_register src0 = translate_src_register( local
805 struct src_register src0 = translate_src_register( local
856 const struct src_register src0 = translate_src_register( local
883 const struct src_register src0 = translate_src_register(emit, &insn->Src[0]); local
909 const struct src_register src0 = translate_src_register( local
950 const struct src_register src0 = translate_src_register( local
983 const struct src_register src0 = translate_src_register( local
1014 const struct src_register src0 = translate_src_register( local
1035 do_emit_sincos(struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src0) argument
1047 struct src_register src0 = translate_src_register( local
1070 struct src_register src0 = translate_src_register( local
1095 struct src_register src0 = translate_src_register( local
1116 struct src_register src0 = translate_src_register( local
1155 struct src_register src0 = translate_src_register( local
1174 struct src_register src0, srcIn; local
1271 emit_conditional(struct svga_shader_emitter *emit, unsigned compare_func, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1, struct src_register pass, struct src_register fail) argument
1349 emit_select(struct svga_shader_emitter *emit, unsigned compare_func, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1 ) argument
1399 struct src_register src0 = translate_src_register( local
1416 const struct src_register src0 = local
1633 struct src_register src0 = local
1859 struct src_register src0; local
1914 struct src_register src0 = translate_src_register( local
1949 const struct src_register src0 = translate_src_register( local
2002 const struct src_register src0 = translate_src_register( local
2031 const struct src_register src0 = translate_src_register( local
2096 struct src_register src0 = local
2186 const struct src_register src0 = translate_src_register( local
2264 struct src_register src0; local
2290 struct src_register src0 = local
2403 const struct src_register src0 = local
[all...]
H A Dsvga_tgsi_emit.h183 struct src_register src0 )
187 emit_src( emit, src0 ));
193 struct src_register src0,
198 emit_src( emit, src0 ) &&
205 struct src_register src0,
211 emit_src( emit, src0 ) &&
220 struct src_register src0,
227 emit_src( emit, src0 ) &&
190 emit_op2( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1 ) argument
202 emit_op3( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2 ) argument
217 emit_op4( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2, struct src_register src3) argument
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_tgsi_insn.c296 struct src_register *src0)
303 src0_swizzle = src0->base.swizzle;
312 src0->base.swizzle = SVGA3DSWIZZLE_NONE;
314 if (!emit_op1( emit, inst_token( SVGA3DOP_MOV ), dst, *src0 ))
317 *src0 = src( dst );
318 src0->base.swizzle = src0_swizzle;
335 struct src_register src0 )
337 return emit_op1( emit, inst, dest, src0 );
351 struct src_register src0,
359 type0 = SVGA3dShaderGetRegType( src0
294 emit_repl( struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register *src0) argument
348 submit_op2( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1 ) argument
393 submit_op3( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2 ) argument
463 submit_op4( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2, struct src_register src3) argument
547 submit_lrp(struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1, struct src_register src2) argument
781 const struct src_register src0 = translate_src_register( local
805 struct src_register src0 = translate_src_register( local
856 const struct src_register src0 = translate_src_register( local
883 const struct src_register src0 = translate_src_register(emit, &insn->Src[0]); local
909 const struct src_register src0 = translate_src_register( local
950 const struct src_register src0 = translate_src_register( local
983 const struct src_register src0 = translate_src_register( local
1014 const struct src_register src0 = translate_src_register( local
1035 do_emit_sincos(struct svga_shader_emitter *emit, SVGA3dShaderDestToken dst, struct src_register src0) argument
1047 struct src_register src0 = translate_src_register( local
1070 struct src_register src0 = translate_src_register( local
1095 struct src_register src0 = translate_src_register( local
1116 struct src_register src0 = translate_src_register( local
1155 struct src_register src0 = translate_src_register( local
1174 struct src_register src0, srcIn; local
1271 emit_conditional(struct svga_shader_emitter *emit, unsigned compare_func, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1, struct src_register pass, struct src_register fail) argument
1349 emit_select(struct svga_shader_emitter *emit, unsigned compare_func, SVGA3dShaderDestToken dst, struct src_register src0, struct src_register src1 ) argument
1399 struct src_register src0 = translate_src_register( local
1416 const struct src_register src0 = local
1633 struct src_register src0 = local
1859 struct src_register src0; local
1914 struct src_register src0 = translate_src_register( local
1949 const struct src_register src0 = translate_src_register( local
2002 const struct src_register src0 = translate_src_register( local
2031 const struct src_register src0 = translate_src_register( local
2096 struct src_register src0 = local
2186 const struct src_register src0 = translate_src_register( local
2264 struct src_register src0; local
2290 struct src_register src0 = local
2403 const struct src_register src0 = local
[all...]
H A Dsvga_tgsi_emit.h183 struct src_register src0 )
187 emit_src( emit, src0 ));
193 struct src_register src0,
198 emit_src( emit, src0 ) &&
205 struct src_register src0,
211 emit_src( emit, src0 ) &&
220 struct src_register src0,
227 emit_src( emit, src0 ) &&
190 emit_op2( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1 ) argument
202 emit_op3( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2 ) argument
217 emit_op4( struct svga_shader_emitter *emit, SVGA3dShaderInstToken inst, SVGA3dShaderDestToken dest, struct src_register src0, struct src_register src1, struct src_register src2, struct src_register src3) argument
/external/opencv/cv/src/
H A Dcvderiv.cpp575 const int *src0 = src[-1], *src1 = src[0], *src2 = src[1]; local
580 int s0 = src0[i] - src1[i]*2 + src2[i] + src1[i+width];
581 int s1 = src0[i+1] - src1[i+1]*2 + src2[i+1] + src1[i+width+1];
586 dst[i] = (short)(src0[i] - src1[i]*2 + src2[i] + src1[i+width]);
591 int s0 = src0[i] - src1[i]*2 + src2[i] +
592 src0[i+width] + src1[i+width]*2 + src2[i+width];
593 int s1 = src0[i+1] - src1[i+1]*2 + src2[i+1] +
594 src0[i+width+1] + src1[i+width+1]*2 + src2[i+width+1];
600 int s0 = CV_DESCALE(src0[i] - src1[i]*2 + src2[i] +
601 src0[
609 const int *src0 = src[-2], *src1 = src[-1], *src2 = src[0], *src3 = src[1], *src4 = src[2]; local
717 const float *src0 = src[-1], *src1 = src[0], *src2 = src[1]; local
751 const float *src0 = src[-2], *src1 = src[-1], *src2 = src[0], *src3 = src[1], *src4 = src[2]; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader.h193 struct sh_srcreg src0; member in struct:sh_src2op
208 struct sh_srcreg src0; member in struct:sh_binaryop
216 struct sh_srcreg src0; member in struct:sh_trinaryop
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader.h193 struct sh_srcreg src0; member in struct:sh_src2op
208 struct sh_srcreg src0; member in struct:sh_binaryop
216 struct sh_srcreg src0; member in struct:sh_trinaryop
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c369 #define ZERO_SRC_0 (((o_inst->src0 & ~(0xfff << R200_VPI_IN_X_SHIFT)) \
387 #define UNUSED_SRC_0 ((o_inst->src0 & ~15) | 9)
655 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[2]),
677 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[0]),
713 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[0]),
727 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[0]),
742 o_inst->src0 = MAKE_VSF_SOURCE(u_temp_i,
759 o_inst->src0 = t_src(vp, &src[0]);
778 o_inst->src0 = t_src(vp, &src[0]);
805 o_inst->src0
[all...]
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dr200_vertprog.c369 #define ZERO_SRC_0 (((o_inst->src0 & ~(0xfff << R200_VPI_IN_X_SHIFT)) \
387 #define UNUSED_SRC_0 ((o_inst->src0 & ~15) | 9)
655 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[2]),
677 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[0]),
713 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[0]),
727 o_inst->src0 = MAKE_VSF_SOURCE(t_src_index(vp, &src[0]),
742 o_inst->src0 = MAKE_VSF_SOURCE(u_temp_i,
759 o_inst->src0 = t_src(vp, &src[0]);
778 o_inst->src0 = t_src(vp, &src[0]);
805 o_inst->src0
[all...]
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Image.cpp200 FX_DWORD src0, src1, src, dest, s1, s2, m1, m2, m3; local
380 src0 = src1;
382 src = (((src0 << 8) | src1) >> s1) & 0xff;
387 src0 = src1;
393 src = (((src0 << 8) | src1) >> s1) & 0xff;
412 src0 = src1;
414 src = (((src0 << 8) | src1) >> s1) & 0xff;
419 src0 = src1;
425 src = (((src0 << 8) | src1) >> s1) & 0xff;
444 src0
[all...]

Completed in 668 milliseconds

123456