Home
last modified time | relevance | path

Searched defs:dst (Results 1 – 25 of 2133) sorted by relevance

12345678910>>...86

/external/v8/src/ia32/
Dassembler-ia32.h604 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } in mov_b()
606 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); } in mov_b()
607 void mov_b(const Operand& dst, int8_t src) { mov_b(dst, Immediate(src)); } in mov_b()
612 void mov_w(const Operand& dst, int16_t src) { mov_w(dst, Immediate(src)); } in mov_w()
625 void movsx_b(Register dst, Register src) { movsx_b(dst, Operand(src)); } in movsx_b()
628 void movsx_w(Register dst, Register src) { movsx_w(dst, Operand(src)); } in movsx_w()
631 void movzx_b(Register dst, Register src) { movzx_b(dst, Operand(src)); } in movzx_b()
634 void movzx_w(Register dst, Register src) { movzx_w(dst, Operand(src)); } in movzx_w()
638 void cmov(Condition cc, Register dst, Register src) { in cmov()
669 void add(Register dst, Register src) { add(dst, Operand(src)); } in add()
[all …]
Dassembler-ia32.cc484 void Assembler::pop(Register dst) { in pop()
491 void Assembler::pop(const Operand& dst) { in pop()
512 void Assembler::mov_b(Register dst, const Operand& src) { in mov_b()
520 void Assembler::mov_b(const Operand& dst, const Immediate& src) { in mov_b()
528 void Assembler::mov_b(const Operand& dst, Register src) { in mov_b()
536 void Assembler::mov_w(Register dst, const Operand& src) { in mov_w()
544 void Assembler::mov_w(const Operand& dst, Register src) { in mov_w()
552 void Assembler::mov_w(const Operand& dst, const Immediate& src) { in mov_w()
562 void Assembler::mov(Register dst, int32_t imm32) { in mov()
569 void Assembler::mov(Register dst, const Immediate& x) { in mov()
[all …]
/external/v8/src/x64/
Dassembler-x64.h733 void cmpb(Register dst, Immediate src) { in cmpb()
739 void cmpb(Register dst, Register src) { in cmpb()
743 void cmpb(Register dst, const Operand& src) { in cmpb()
747 void cmpb(const Operand& dst, Register src) { in cmpb()
751 void cmpb(const Operand& dst, Immediate src) { in cmpb()
755 void cmpw(const Operand& dst, Immediate src) { in cmpw()
759 void cmpw(Register dst, Immediate src) { in cmpw()
763 void cmpw(Register dst, const Operand& src) { in cmpw()
767 void cmpw(Register dst, Register src) { in cmpw()
771 void cmpw(const Operand& dst, Register src) { in cmpw()
[all …]
Dassembler-x64.cc586 Register dst, in immediate_arithmetic_op()
606 const Operand& dst, in immediate_arithmetic_op()
624 Register dst, in immediate_arithmetic_op_16()
645 const Operand& dst, in immediate_arithmetic_op_16()
663 const Operand& dst, in immediate_arithmetic_op_8()
675 Register dst, in immediate_arithmetic_op_8()
689 void Assembler::shift(Register dst, in shift()
709 void Assembler::shift(Operand dst, Immediate shift_amount, int subcode, in shift()
727 void Assembler::shift(Register dst, int subcode, int size) { in shift()
735 void Assembler::shift(Operand dst, int subcode, int size) { in shift()
[all …]
Dmacro-assembler-x64.cc268 Register dst, in RecordWriteField()
327 Register dst = index; in RecordWriteArray() local
347 Register dst, in RecordWriteForMap()
527 const Register dst = scratch; in RecordWriteCodeEntryField() local
796 void MacroAssembler::Cvtss2sd(XMMRegister dst, XMMRegister src) { in Cvtss2sd()
806 void MacroAssembler::Cvtss2sd(XMMRegister dst, const Operand& src) { in Cvtss2sd()
816 void MacroAssembler::Cvtsd2ss(XMMRegister dst, XMMRegister src) { in Cvtsd2ss()
826 void MacroAssembler::Cvtsd2ss(XMMRegister dst, const Operand& src) { in Cvtsd2ss()
836 void MacroAssembler::Cvtlsi2sd(XMMRegister dst, Register src) { in Cvtlsi2sd()
848 void MacroAssembler::Cvtlsi2sd(XMMRegister dst, const Operand& src) { in Cvtlsi2sd()
[all …]
/external/mesa3d/prebuilt-intermediates/nir/
Dnir_constant_expressions.c267 float32_t dst = src0 ? 1.0f : 0.0f; in evaluate_b2f() local
281 float32_t dst = src0 ? 1.0f : 0.0f; in evaluate_b2f() local
309 int32_t dst = src0 ? 1 : 0; in evaluate_b2i() local
323 int32_t dst = src0 ? 1 : 0; in evaluate_b2i() local
362 struct bool32_vec dst; in evaluate_ball_fequal2() local
388 struct bool32_vec dst; in evaluate_ball_fequal2() local
428 struct bool32_vec dst; in evaluate_ball_fequal3() local
454 struct bool32_vec dst; in evaluate_ball_fequal3() local
494 struct bool32_vec dst; in evaluate_ball_fequal4() local
520 struct bool32_vec dst; in evaluate_ball_fequal4() local
[all …]
/external/swiftshader/src/Shader/
DShaderCore.cpp498 void ShaderCore::mov(Vector4f &dst, const Vector4f &src, bool integerDestination) in mov()
513 void ShaderCore::neg(Vector4f &dst, const Vector4f &src) in neg()
521 void ShaderCore::ineg(Vector4f &dst, const Vector4f &src) in ineg()
529 void ShaderCore::f2b(Vector4f &dst, const Vector4f &src) in f2b()
537 void ShaderCore::b2f(Vector4f &dst, const Vector4f &src) in b2f()
545 void ShaderCore::f2i(Vector4f &dst, const Vector4f &src) in f2i()
553 void ShaderCore::i2f(Vector4f &dst, const Vector4f &src) in i2f()
561 void ShaderCore::f2u(Vector4f &dst, const Vector4f &src) in f2u()
569 void ShaderCore::u2f(Vector4f &dst, const Vector4f &src) in u2f()
577 void ShaderCore::i2b(Vector4f &dst, const Vector4f &src) in i2b()
[all …]
/external/mesa3d/prebuilt-intermediates/main/
Dformat_pack.c57 pack_ubyte_a8b8g8r8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_a8b8g8r8_unorm()
85 pack_ubyte_x8b8g8r8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_x8b8g8r8_unorm()
109 pack_ubyte_r8g8b8a8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_r8g8b8a8_unorm()
137 pack_ubyte_r8g8b8x8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_r8g8b8x8_unorm()
161 pack_ubyte_b8g8r8a8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_b8g8r8a8_unorm()
189 pack_ubyte_b8g8r8x8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_b8g8r8x8_unorm()
213 pack_ubyte_a8r8g8b8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_a8r8g8b8_unorm()
241 pack_ubyte_x8r8g8b8_unorm(const GLubyte src[4], void *dst) in pack_ubyte_x8r8g8b8_unorm()
265 pack_ubyte_l16a16_unorm(const GLubyte src[4], void *dst) in pack_ubyte_l16a16_unorm()
283 pack_ubyte_a16l16_unorm(const GLubyte src[4], void *dst) in pack_ubyte_a16l16_unorm()
[all …]
/external/mesa3d/src/gallium/auxiliary/rtasm/
Drtasm_x86sse.c288 struct x86_reg dst, in emit_op_modrm()
455 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm()
464 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_imm()
477 void x86_mov16_imm( struct x86_function *p, struct x86_reg dst, uint16_t imm ) in x86_mov16_imm()
494 void x86_mov8_imm( struct x86_function *p, struct x86_reg dst, uint8_t imm ) in x86_mov8_imm()
515 unsigned op, struct x86_reg dst, int imm ) in x86_group1_imm()
531 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_add_imm()
537 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_or_imm()
543 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_and_imm()
549 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_sub_imm()
[all …]
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX86BaseImpl.h210 void AssemblerX86Base<TraitsType>::setcc(BrCond condition, ByteRegister dst) { in setcc()
230 void AssemblerX86Base<TraitsType>::mov(Type Ty, GPRRegister dst, in mov()
249 void AssemblerX86Base<TraitsType>::mov(Type Ty, GPRRegister dst, in mov()
264 void AssemblerX86Base<TraitsType>::mov(Type Ty, GPRRegister dst, in mov()
280 void AssemblerX86Base<TraitsType>::mov(Type Ty, const Address &dst, in mov()
296 void AssemblerX86Base<TraitsType>::mov(Type Ty, const Address &dst, in mov()
334 void AssemblerX86Base<TraitsType>::movzx(Type SrcTy, GPRRegister dst, in movzx()
353 void AssemblerX86Base<TraitsType>::movzx(Type SrcTy, GPRRegister dst, in movzx()
373 void AssemblerX86Base<TraitsType>::movsx(Type SrcTy, GPRRegister dst, in movsx()
389 void AssemblerX86Base<TraitsType>::movsx(Type SrcTy, GPRRegister dst, in movsx()
[all …]
/external/owasp/sanitizer/tools/
Dupdate_tree_in_svn.py61 def remove(src, dst): run(['rm', dst]) argument
63 def svn_delete(src, dst): svn_deletes.append(dst) argument
65 def recurse(src, dst): argument
74 def copy(src, dst): run(['cp', '-f', src, dst]) argument
76 def copy_if_different(src, dst): argument
79 def svn_add(src, dst): argument
90 def cnf(src, dst): conflict = True argument
92 def mkdir(src, dst): run(['mkdir', dst]) argument
111 def handle(src, dst): argument
/external/mesa3d/src/mesa/x86/rtasm/
Dx86sse.c145 struct x86_reg dst, in emit_op_modrm()
307 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm()
355 struct x86_reg dst, in x86_mov()
362 struct x86_reg dst, in x86_xor()
369 struct x86_reg dst, in x86_cmp()
376 struct x86_reg dst, in x86_lea()
384 struct x86_reg dst, in x86_test()
392 struct x86_reg dst, in x86_add()
406 struct x86_reg dst, in x86_sub()
413 struct x86_reg dst, in x86_or()
[all …]
/external/deqp/framework/referencerenderer/
DrrVertexAttrib.cpp60 inline void readOrder (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const void* ptr) in readOrder()
72 inline void readUnormOrder (tcu::Vec4& dst, const int size, const void* ptr) in readUnormOrder()
86 inline void readSnormClamp (tcu::Vec4& dst, const int size, const void* ptr) in readSnormClamp()
101 inline void readSnormScale (tcu::Vec4& dst, const int size, const void* ptr) in readSnormScale()
115 inline void readHalf (tcu::Vec4& dst, const int size, const void* ptr) in readHalf()
126 inline void readFixed (tcu::Vec4& dst, const int size, const void* ptr) in readFixed()
137 inline void readDouble (tcu::Vec4& dst, const int size, const void* ptr) in readDouble()
155 inline void readUint2101010Rev (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const … in readUint2101010Rev()
167 inline void readInt2101010Rev (typename tcu::Vector<DstScalarType, 4>& dst, const int size, const v… in readInt2101010Rev()
179 inline void readUnorm2101010RevOrder (tcu::Vec4& dst, const int size, const void* ptr) in readUnorm2101010RevOrder()
[all …]
/external/icu/icu4c/source/common/
Dcpputils.h28 inline void uprv_arrayCopy(const double* src, double* dst, int32_t count) in uprv_arrayCopy()
33 double* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy()
37 inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count) in uprv_arrayCopy()
42 int8_t* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy()
46 inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count) in uprv_arrayCopy()
51 int16_t* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy()
55 inline void uprv_arrayCopy(const int32_t* src, int32_t* dst, int32_t count) in uprv_arrayCopy()
60 int32_t* dst, int32_t dstStart, int32_t count) in uprv_arrayCopy()
66 UChar *dst, int32_t dstStart, int32_t count) in uprv_arrayCopy()
74 uprv_arrayCopy(const icu::UnicodeString *src, icu::UnicodeString *dst, int32_t count) in uprv_arrayCopy()
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_exec.c90 micro_abs(union tgsi_exec_channel *dst, in micro_abs()
100 micro_arl(union tgsi_exec_channel *dst, in micro_arl()
110 micro_arr(union tgsi_exec_channel *dst, in micro_arr()
120 micro_ceil(union tgsi_exec_channel *dst, in micro_ceil()
130 micro_clamp(union tgsi_exec_channel *dst, in micro_clamp()
142 micro_cmp(union tgsi_exec_channel *dst, in micro_cmp()
154 micro_cos(union tgsi_exec_channel *dst, in micro_cos()
164 micro_d2f(union tgsi_exec_channel *dst, in micro_d2f()
174 micro_d2i(union tgsi_exec_channel *dst, in micro_d2i()
184 micro_d2u(union tgsi_exec_channel *dst, in micro_d2u()
[all …]
/external/python/cpython2/Lib/plat-mac/
Dmacostools.py32 def mkalias(src, dst, relative=None): argument
58 def mkdirs(dst): argument
75 def touched(dst): argument
81 def touched_ae(dst): argument
90 def copy(src, dst, createpath=0, copydates=1, forcetype=None): argument
130 def copytree(src, dst, copydates=1): argument
/external/skia/src/opts/
DSkSwizzler_opts.h21 static void RGBA_to_rgbA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_rgbA_portable()
38 static void RGBA_to_bgrA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_bgrA_portable()
55 static void RGBA_to_BGRA_portable(uint32_t* dst, const void* vsrc, int count) { in RGBA_to_BGRA_portable()
69 static void RGB_to_RGB1_portable(uint32_t dst[], const void* vsrc, int count) { in RGB_to_RGB1_portable()
83 static void RGB_to_BGR1_portable(uint32_t dst[], const void* vsrc, int count) { in RGB_to_BGR1_portable()
97 static void gray_to_RGB1_portable(uint32_t dst[], const void* vsrc, int count) { in gray_to_RGB1_portable()
107 static void grayA_to_RGBA_portable(uint32_t dst[], const void* vsrc, int count) { in grayA_to_RGBA_portable()
120 static void grayA_to_rgbA_portable(uint32_t dst[], const void* vsrc, int count) { in grayA_to_rgbA_portable()
134 static void inverted_CMYK_to_RGB1_portable(uint32_t* dst, const void* vsrc, int count) { in inverted_CMYK_to_RGB1_portable()
152 static void inverted_CMYK_to_BGR1_portable(uint32_t* dst, const void* vsrc, int count) { in inverted_CMYK_to_BGR1_portable()
[all …]
/external/valgrind/none/tests/amd64/
Dsse4-64.c92 ULong src64, V128* dst, V128* res ) in showIGVV()
395 V128 src, dst; in test_BLENDPD() local
409 V128 src, dst; in test_BLENDPS() local
435 V128 src, dst; in test_DPPD() local
702 V128 src, dst; in test_DPPS() local
973 V128 src, dst; in test_INSERTPS() local
1244 V128 src, dst; in test_MPSADBW() local
1262 V128 src, dst; in test_PACKUSDW() local
1286 V128 src, dst; in test_PBLENDW() local
1552 V128 src, dst; in test_PCMPEQQ() local
[all …]
/external/vixl/src/aarch64/
Dlogic-aarch64.cc402 void Simulator::ld1(VectorFormat vform, LogicVRegister dst, uint64_t addr) { in ld1()
412 LogicVRegister dst, in ld1()
419 void Simulator::ld1r(VectorFormat vform, LogicVRegister dst, uint64_t addr) { in ld1r()
615 LogicVRegister dst, in st2()
630 LogicVRegister dst, in st2()
641 LogicVRegister dst, in st3()
660 LogicVRegister dst, in st3()
673 LogicVRegister dst, in st4()
696 LogicVRegister dst, in st4()
711 LogicVRegister dst, in cmp()
[all …]
/external/v8/src/s390/
Dmacro-assembler-s390.cc172 void MacroAssembler::Move(Register dst, Handle<Object> value) { in Move()
176 void MacroAssembler::Move(Register dst, Register src, Condition cond) { in Move()
182 void MacroAssembler::Move(DoubleRegister dst, DoubleRegister src) { in Move()
258 Register object, int offset, Register value, Register dst, in RecordWriteField()
300 Register dst, in RecordWriteForMap()
454 const Register dst = scratch; in RecordWriteCodeEntryField() local
594 void MacroAssembler::StoreToSafepointRegisterSlot(Register src, Register dst) { in StoreToSafepointRegisterSlot()
598 void MacroAssembler::LoadFromSafepointRegisterSlot(Register dst, Register src) { in LoadFromSafepointRegisterSlot()
631 void MacroAssembler::CanonicalizeNaN(const DoubleRegister dst, in CanonicalizeNaN()
639 void MacroAssembler::ConvertIntToDouble(Register src, DoubleRegister dst) { in ConvertIntToDouble()
[all …]
/external/pdfium/xfa/fxbarcode/
DBC_UtilCodingConvert.cpp14 CFX_ByteString& dst) { in UnicodeToLocale()
19 CFX_ByteString& dst) { in LocaleToUtf8()
25 CFX_ArrayTemplate<uint8_t>& dst) { in LocaleToUtf8()
34 CFX_ByteString& dst) { in Utf8ToLocale()
45 CFX_ByteString& dst) { in Utf8ToLocale()
52 CFX_ByteString& dst) { in UnicodeToUTF8()
/external/libvpx/libvpx/vpx_dsp/mips/
Dintrapred_msa.c20 static void intra_predict_vert_4x4_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_4x4_msa()
29 static void intra_predict_vert_8x8_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_8x8_msa()
44 static void intra_predict_vert_16x16_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_16x16_msa()
57 static void intra_predict_vert_32x32_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_32x32_msa()
71 static void intra_predict_horiz_4x4_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_4x4_msa()
83 static void intra_predict_horiz_8x8_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_8x8_msa()
101 static void intra_predict_horiz_16x16_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_16x16_msa()
124 static void intra_predict_horiz_32x32_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_32x32_msa()
154 const uint8_t *src_left, uint8_t *dst, in intra_predict_dc_4x4_msa()
175 static void intra_predict_dc_tl_4x4_msa(const uint8_t *src, uint8_t *dst, in intra_predict_dc_tl_4x4_msa()
[all …]
/external/skia/src/images/
DSkImageEncoderFns.h38 static inline void transform_scanline_memcpy(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_memcpy()
43 static inline void transform_scanline_index8_opaque(char* SK_RESTRICT dst, in transform_scanline_index8_opaque()
55 static inline void transform_scanline_index8_unpremul(char* SK_RESTRICT dst, in transform_scanline_index8_unpremul()
66 static inline void transform_scanline_gray(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_gray()
82 static inline void transform_scanline_565(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_565()
97 static inline void transform_scanline_RGBX(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_RGBX()
112 static inline void transform_scanline_BGRX(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_BGRX()
127 static inline void transform_scanline_444(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_444()
141 static inline void transform_scanline_rgbA(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_rgbA()
149 static inline void transform_scanline_bgrA(char* SK_RESTRICT dst, const char* SK_RESTRICT src, in transform_scanline_bgrA()
[all …]
/external/valgrind/VEX/priv/
Dhost_amd64_isel.c310 static AMD64Instr* mk_iMOVsd_RR ( HReg src, HReg dst ) in mk_iMOVsd_RR()
319 static AMD64Instr* mk_vMOVsd_RR ( HReg src, HReg dst ) in mk_vMOVsd_RR()
365 HReg dst, in iselIntExpr_single_instruction()
840 HReg dst = newVRegV(env); in generate_zeroes_V128() local
849 HReg dst = newVRegV(env); in generate_ones_V128() local
860 HReg dst = generate_ones_V128(env); in do_sse_NotV128() local
938 HReg dst = newVRegI(env); in iselIntExpr_R_wrk() local
974 HReg dst = newVRegI(env); in iselIntExpr_R_wrk() local
1001 HReg dst = newVRegI(env); in iselIntExpr_R_wrk() local
1021 HReg dst = newVRegI(env); in iselIntExpr_R_wrk() local
[all …]
/external/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_vec4_generator.cpp33 struct brw_reg dst, in generate_math1_gen4()
56 struct brw_reg dst, in generate_math_gen6()
75 struct brw_reg dst, in generate_math2_gen4()
111 struct brw_reg dst, in generate_tex()
416 struct brw_reg dst, in generate_gs_set_write_offset()
457 struct brw_reg dst, in generate_gs_set_vertex_count()
493 struct brw_reg dst, in generate_gs_svb_write()
535 struct brw_reg dst, in generate_gs_svb_set_destination_index()
548 struct brw_reg dst, in generate_gs_set_dword_2()
560 struct brw_reg dst) in generate_gs_prepare_channel_masks()
[all …]

12345678910>>...86