/external/angle/src/image_util/ |
D | imageformats.cpp | 17 void L8::readColor(gl::ColorF *dst, const L8 *src) in readColor() 26 void L8::writeColor(L8 *dst, const gl::ColorF *src) in writeColor() 31 void L8::average(L8 *dst, const L8 *src1, const L8 *src2) in average() 36 void R8::readColor(gl::ColorUI *dst, const R8 *src) in readColor() 44 void R8::readColor(gl::ColorF *dst, const R8 *src) in readColor() 52 void R8::writeColor(R8 *dst, const gl::ColorUI *src) in writeColor() 57 void R8::writeColor(R8 *dst, const gl::ColorF *src) in writeColor() 62 void R8::average(R8 *dst, const R8 *src1, const R8 *src2) in average() 67 void A8::readColor(gl::ColorF *dst, const A8 *src) in readColor() 75 void A8::writeColor(A8 *dst, const gl::ColorF *src) in writeColor() [all …]
|
/external/v8/src/codegen/ia32/ |
D | assembler-ia32.h | 480 void mov_b(Register dst, Register src) { mov_b(dst, Operand(src)); } in mov_b() 482 void mov_b(Register dst, int8_t imm8) { mov_b(Operand(dst), imm8); } in mov_b() 483 void mov_b(Operand dst, int8_t src) { mov_b(dst, Immediate(src)); } in mov_b() 488 void mov_w(Operand dst, int16_t src) { mov_w(dst, Immediate(src)); } in mov_w() 502 void movsx_b(Register dst, Register src) { movsx_b(dst, Operand(src)); } in movsx_b() 505 void movsx_w(Register dst, Register src) { movsx_w(dst, Operand(src)); } in movsx_w() 508 void movzx_b(Register dst, Register src) { movzx_b(dst, Operand(src)); } in movzx_b() 511 void movzx_w(Register dst, Register src) { movzx_w(dst, Operand(src)); } in movzx_w() 517 void cmov(Condition cc, Register dst, Register src) { in cmov() 557 void adc(Register dst, Register src) { adc(dst, Operand(src)); } in adc() [all …]
|
D | assembler-ia32.cc | 510 void Assembler::pop(Register dst) { in pop() 516 void Assembler::pop(Operand dst) { in pop() 527 void Assembler::mov_b(Register dst, Operand src) { in mov_b() 534 void Assembler::mov_b(Operand dst, const Immediate& src) { in mov_b() 541 void Assembler::mov_b(Operand dst, Register src) { in mov_b() 548 void Assembler::mov_w(Register dst, Operand src) { in mov_w() 555 void Assembler::mov_w(Operand dst, Register src) { in mov_w() 562 void Assembler::mov_w(Operand dst, const Immediate& src) { in mov_w() 571 void Assembler::mov(Register dst, int32_t imm32) { in mov() 577 void Assembler::mov(Register dst, const Immediate& x) { in mov() [all …]
|
/external/v8/src/wasm/baseline/s390/ |
D | liftoff-assembler-s390.h | 90 void LiftoffAssembler::LoadFromInstance(Register dst, int offset, int size) { in LoadFromInstance() 94 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, int offset) { in LoadTaggedPointerFromInstance() 102 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 106 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 120 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 134 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() 192 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot() 204 void LiftoffAssembler::LoadReturnStackSlot(LiftoffRegister dst, int offset, in LoadReturnStackSlot() 214 void LiftoffAssembler::Move(Register dst, Register src, ValueType type) { in Move() 218 void LiftoffAssembler::Move(DoubleRegister dst, DoubleRegister src, in Move() [all …]
|
/external/v8/src/wasm/baseline/ppc/ |
D | liftoff-assembler-ppc.h | 91 void LiftoffAssembler::LoadFromInstance(Register dst, int offset, int size) { in LoadFromInstance() 95 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, int offset) { in LoadTaggedPointerFromInstance() 103 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 107 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 121 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 135 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() 193 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot() 205 void LiftoffAssembler::LoadReturnStackSlot(LiftoffRegister dst, int offset, in LoadReturnStackSlot() 215 void LiftoffAssembler::Move(Register dst, Register src, ValueType type) { in Move() 219 void LiftoffAssembler::Move(DoubleRegister dst, DoubleRegister src, in Move() [all …]
|
/external/v8/src/wasm/baseline/x64/ |
D | liftoff-assembler-x64.h | 59 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Operand src, in Load() 84 inline void Store(LiftoffAssembler* assm, Operand dst, LiftoffRegister src, in Store() 239 void LiftoffAssembler::LoadFromInstance(Register dst, int offset, int size) { in LoadFromInstance() 250 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, int offset) { in LoadTaggedPointerFromInstance() 260 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 264 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 307 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() 313 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 742 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot() 765 Operand dst = liftoff::GetStackSlot(dst_offset); in MoveStackValue() local [all …]
|
/external/v8/src/wasm/baseline/mips/ |
D | liftoff-assembler-mips.h | 59 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Register base, in Load() 143 inline void ChangeEndiannessLoad(LiftoffAssembler* assm, LiftoffRegister dst, in ChangeEndiannessLoad() 363 void LiftoffAssembler::LoadFromInstance(Register dst, int32_t offset, in LoadFromInstance() 371 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, in LoadTaggedPointerFromInstance() 380 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 384 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 401 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 492 Register dst = no_reg; in Store() local 556 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() 614 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot() [all …]
|
/external/v8/src/wasm/baseline/mips64/ |
D | liftoff-assembler-mips64.h | 66 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, MemOperand src, in Load() 142 inline void ChangeEndiannessLoad(LiftoffAssembler* assm, LiftoffRegister dst, in ChangeEndiannessLoad() 343 void LiftoffAssembler::LoadFromInstance(Register dst, int32_t offset, in LoadFromInstance() 355 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, in LoadTaggedPointerFromInstance() 364 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 368 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 405 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 510 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() 568 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot() 582 void LiftoffAssembler::LoadReturnStackSlot(LiftoffRegister dst, int offset, in LoadReturnStackSlot() [all …]
|
/external/v8/src/wasm/baseline/arm64/ |
D | liftoff-assembler-arm64.h | 112 inline void EmitSimdShift(LiftoffAssembler* assm, VRegister dst, VRegister lhs, in EmitSimdShift() 137 inline void EmitSimdShiftRightImmediate(LiftoffAssembler* assm, VRegister dst, in EmitSimdShiftRightImmediate() 156 inline void EmitAnyTrue(LiftoffAssembler* assm, LiftoffRegister dst, in EmitAnyTrue() 167 inline void EmitAllTrue(LiftoffAssembler* assm, LiftoffRegister dst, in EmitAllTrue() 316 void LiftoffAssembler::LoadFromInstance(Register dst, int offset, int size) { in LoadFromInstance() 327 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, int offset) { in LoadTaggedPointerFromInstance() 337 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 341 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 376 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 578 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() [all …]
|
/external/v8/src/wasm/baseline/ia32/ |
D | liftoff-assembler-ia32.h | 41 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Register base, in Load() 141 const Operand& dst) { in MoveStackValue() 264 void LiftoffAssembler::LoadFromInstance(Register dst, int offset, int size) { in LoadFromInstance() 271 void LiftoffAssembler::LoadTaggedPointerFromInstance(Register dst, int offset) { in LoadTaggedPointerFromInstance() 279 void LiftoffAssembler::FillInstanceInto(Register dst) { in FillInstanceInto() 283 void LiftoffAssembler::LoadTaggedPointer(Register dst, Register src_addr, in LoadTaggedPointer() 321 void LiftoffAssembler::Load(LiftoffRegister dst, Register src_addr, in Load() 469 void LiftoffAssembler::AtomicLoad(LiftoffRegister dst, Register src_addr, in AtomicLoad() 1029 void LiftoffAssembler::LoadCallerFrameSlot(LiftoffRegister dst, in LoadCallerFrameSlot() 1063 void LiftoffAssembler::Move(Register dst, Register src, ValueType type) { in Move() [all …]
|
/external/mesa3d/prebuilt-intermediates/nir/ |
D | nir_constant_expressions.c | 580 int1_t dst = src0 * src1; in evaluate_amul() local 600 int8_t dst = src0 * src1; in evaluate_amul() local 619 int16_t dst = src0 * src1; in evaluate_amul() local 638 int32_t dst = src0 * src1; in evaluate_amul() local 657 int64_t dst = src0 * src1; in evaluate_amul() local 721 struct bool16_vec dst; in evaluate_b16all_fequal16() local 773 struct bool16_vec dst; in evaluate_b16all_fequal16() local 825 struct bool16_vec dst; in evaluate_b16all_fequal16() local 890 struct bool16_vec dst; in evaluate_b16all_fequal2() local 942 struct bool16_vec dst; in evaluate_b16all_fequal2() local [all …]
|
/external/v8/src/wasm/baseline/arm/ |
D | liftoff-assembler-arm.h | 122 inline void I64Binop(LiftoffAssembler* assm, LiftoffRegister dst, in I64Binop() 140 inline void I64BinopI(LiftoffAssembler* assm, LiftoffRegister dst, in I64BinopI() 155 inline void I64Shiftop(LiftoffAssembler* assm, LiftoffRegister dst, in I64Shiftop() 195 inline void EmitFloatMinOrMax(LiftoffAssembler* assm, RegisterType dst, in EmitFloatMinOrMax() 227 NeonDataType sdt, LiftoffRegister dst, in S128NarrowOp() 238 inline void F64x2Compare(LiftoffAssembler* assm, LiftoffRegister dst, in F64x2Compare() 268 inline void Store(LiftoffAssembler* assm, LiftoffRegister src, MemOperand dst, in Store() 307 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, MemOperand src, in Load() 360 inline void EmitSimdShift(LiftoffAssembler* assm, LiftoffRegister dst, in EmitSimdShift() 376 inline void EmitSimdShiftImmediate(LiftoffAssembler* assm, LiftoffRegister dst, in EmitSimdShiftImmediate() [all …]
|
/external/google-benchmark/test/ |
D | benchmark_gtest.cc | 12 std::vector<int> dst; in TEST() local 18 std::vector<int64_t> dst; in TEST() local 24 std::vector<int> dst; in TEST() local 30 std::vector<int64_t> dst; in TEST() local 36 std::vector<int8_t> dst; in TEST() local 42 std::vector<int64_t> dst; in TEST() local 51 std::vector<int> dst; in TEST() local 57 std::vector<int> dst; in TEST() local 63 std::vector<int> dst; in TEST() local 69 std::vector<int> dst; in TEST() local [all …]
|
/external/skia/src/images/ |
D | SkImageEncoderFns.h | 19 static inline void transform_scanline_memcpy(char* dst, const char* src, int width, int bpp) { in transform_scanline_memcpy() 23 static inline void transform_scanline_A8_to_GrayAlpha(char* dst, const char* src, int width, int) { in transform_scanline_A8_to_GrayAlpha() 31 static void skcms(char* dst, const char* src, int n, in skcms() 38 static inline void transform_scanline_gray(char* dst, const char* src, int width, int) { in transform_scanline_gray() 44 static inline void transform_scanline_565(char* dst, const char* src, int width, int) { in transform_scanline_565() 50 static inline void transform_scanline_RGBX(char* dst, const char* src, int width, int) { in transform_scanline_RGBX() 56 static inline void transform_scanline_BGRX(char* dst, const char* src, int width, int) { in transform_scanline_BGRX() 62 static inline void transform_scanline_444(char* dst, const char* src, int width, int) { in transform_scanline_444() 68 static inline void transform_scanline_rgbA(char* dst, const char* src, int width, int) { in transform_scanline_rgbA() 74 static inline void transform_scanline_bgrA(char* dst, const char* src, int width, int) { in transform_scanline_bgrA() [all …]
|
/external/v8/src/codegen/x64/ |
D | assembler-x64.h | 595 void movq(Register dst, int64_t value) { movq(dst, Immediate64(value)); } in movq() 596 void movq(Register dst, uint64_t value) { in movq() 635 void cmpb(Register dst, Immediate src) { in cmpb() 641 void cmpb(Register dst, Register src) { arithmetic_op_8(0x3A, dst, src); } in cmpb() 643 void cmpb(Register dst, Operand src) { arithmetic_op_8(0x3A, dst, src); } in cmpb() 645 void cmpb(Operand dst, Register src) { arithmetic_op_8(0x38, src, dst); } in cmpb() 647 void cmpb(Operand dst, Immediate src) { in cmpb() 651 void cmpw(Operand dst, Immediate src) { in cmpw() 655 void cmpw(Register dst, Immediate src) { in cmpw() 659 void cmpw(Register dst, Operand src) { arithmetic_op_16(0x3B, dst, src); } in cmpw() [all …]
|
D | assembler-x64.cc | 672 void Assembler::immediate_arithmetic_op(byte subcode, Register dst, in immediate_arithmetic_op() 690 void Assembler::immediate_arithmetic_op(byte subcode, Operand dst, in immediate_arithmetic_op() 705 void Assembler::immediate_arithmetic_op_16(byte subcode, Register dst, in immediate_arithmetic_op_16() 724 void Assembler::immediate_arithmetic_op_16(byte subcode, Operand dst, in immediate_arithmetic_op_16() 740 void Assembler::immediate_arithmetic_op_8(byte subcode, Operand dst, in immediate_arithmetic_op_8() 750 void Assembler::immediate_arithmetic_op_8(byte subcode, Register dst, in immediate_arithmetic_op_8() 763 void Assembler::shift(Register dst, Immediate shift_amount, int subcode, in shift() 780 void Assembler::shift(Operand dst, Immediate shift_amount, int subcode, in shift() 797 void Assembler::shift(Register dst, int subcode, int size) { in shift() 804 void Assembler::shift(Operand dst, int subcode, int size) { in shift() [all …]
|
/external/skqp/src/images/ |
D | SkImageEncoderFns.h | 19 static inline void transform_scanline_memcpy(char* dst, const char* src, int width, int bpp) { in transform_scanline_memcpy() 23 static inline void transform_scanline_A8_to_GrayAlpha(char* dst, const char* src, int width, int) { in transform_scanline_A8_to_GrayAlpha() 31 static void skcms(char* dst, const char* src, int n, in skcms() 38 static inline void transform_scanline_gray(char* dst, const char* src, int width, int) { in transform_scanline_gray() 44 static inline void transform_scanline_565(char* dst, const char* src, int width, int) { in transform_scanline_565() 50 static inline void transform_scanline_RGBX(char* dst, const char* src, int width, int) { in transform_scanline_RGBX() 56 static inline void transform_scanline_BGRX(char* dst, const char* src, int width, int) { in transform_scanline_BGRX() 62 static inline void transform_scanline_444(char* dst, const char* src, int width, int) { in transform_scanline_444() 68 static inline void transform_scanline_rgbA(char* dst, const char* src, int width, int) { in transform_scanline_rgbA() 74 static inline void transform_scanline_bgrA(char* dst, const char* src, int width, int) { in transform_scanline_bgrA() [all …]
|
/external/mesa3d/src/gallium/auxiliary/rtasm/ |
D | rtasm_x86sse.c | 288 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/mesa3d/prebuilt-intermediates/main/ |
D | format_pack.c | 57 pack_ubyte_a8b8g8r8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_a8b8g8r8_unorm() 85 pack_ubyte_x8b8g8r8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_x8b8g8r8_unorm() 109 pack_ubyte_r8g8b8a8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_r8g8b8a8_unorm() 137 pack_ubyte_r8g8b8x8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_r8g8b8x8_unorm() 161 pack_ubyte_b8g8r8a8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_b8g8r8a8_unorm() 189 pack_ubyte_b8g8r8x8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_b8g8r8x8_unorm() 213 pack_ubyte_a8r8g8b8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_a8r8g8b8_unorm() 241 pack_ubyte_x8r8g8b8_unorm(const uint8_t src[4], void *dst) in pack_ubyte_x8r8g8b8_unorm() 265 pack_ubyte_b5g6r5_unorm(const uint8_t src[4], void *dst) in pack_ubyte_b5g6r5_unorm() 288 pack_ubyte_r5g6b5_unorm(const uint8_t src[4], void *dst) in pack_ubyte_r5g6b5_unorm() [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceAssemblerX86BaseImpl.h | 210 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/u-boot/drivers/video/ |
D | console_rotate.c | 27 uint8_t *dst = line; in console_set_row_1() local 35 uint16_t *dst = line; in console_set_row_1() local 43 uint32_t *dst = line; in console_set_row_1() local 62 void *dst; in console_move_rows_1() local 101 uint8_t *dst = line; in console_putc_xy_1() local 112 uint16_t *dst = line; in console_putc_xy_1() local 123 uint32_t *dst = line; in console_putc_xy_1() local 155 uint8_t *dst = line; in console_set_row_2() local 163 uint16_t *dst = line; in console_set_row_2() local 171 uint32_t *dst = line; in console_set_row_2() local [all …]
|
/external/v8/src/codegen/s390/ |
D | macro-assembler-s390.cc | 285 void TurboAssembler::Move(Register dst, Handle<HeapObject> value, in Move() 303 void TurboAssembler::Move(Register dst, ExternalReference reference) { in Move() 314 void TurboAssembler::Move(Register dst, Register src, Condition cond) { in Move() 324 void TurboAssembler::Move(DoubleRegister dst, DoubleRegister src) { in Move() 351 void TurboAssembler::RotateInsertSelectBits(Register dst, Register src, in RotateInsertSelectBits() 364 void TurboAssembler::BranchRelativeOnIdxHighP(Register dst, Register inc, in BranchRelativeOnIdxHighP() 482 void TurboAssembler::SmiUntag(Register dst, const MemOperand& src) { in SmiUntag() 491 void TurboAssembler::SmiUntagField(Register dst, const MemOperand& src) { in SmiUntagField() 553 Register value, Register dst, in RecordWriteField() 798 void TurboAssembler::CanonicalizeNaN(const DoubleRegister dst, in CanonicalizeNaN() [all …]
|
/external/libaom/libaom/aom_dsp/mips/ |
D | intrapred_msa.c | 22 static void intra_predict_vert_4x4_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_4x4_msa() 31 static void intra_predict_vert_8x8_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_8x8_msa() 46 static void intra_predict_vert_16x16_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_16x16_msa() 59 static void intra_predict_vert_32x32_msa(const uint8_t *src, uint8_t *dst, in intra_predict_vert_32x32_msa() 73 static void intra_predict_horiz_4x4_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_4x4_msa() 85 static void intra_predict_horiz_8x8_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_8x8_msa() 103 static void intra_predict_horiz_16x16_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_16x16_msa() 126 static void intra_predict_horiz_32x32_msa(const uint8_t *src, uint8_t *dst, in intra_predict_horiz_32x32_msa() 156 const uint8_t *src_left, uint8_t *dst, in intra_predict_dc_4x4_msa() 177 static void intra_predict_dc_tl_4x4_msa(const uint8_t *src, uint8_t *dst, in intra_predict_dc_tl_4x4_msa() [all …]
|
/external/swiftshader/src/Shader/ |
D | ShaderCore.cpp | 657 void ShaderCore::mov(Vector4f &dst, const Vector4f &src, bool integerDestination) in mov() 672 void ShaderCore::neg(Vector4f &dst, const Vector4f &src) in neg() 680 void ShaderCore::ineg(Vector4f &dst, const Vector4f &src) in ineg() 688 void ShaderCore::f2b(Vector4f &dst, const Vector4f &src) in f2b() 696 void ShaderCore::b2f(Vector4f &dst, const Vector4f &src) in b2f() 704 void ShaderCore::f2i(Vector4f &dst, const Vector4f &src) in f2i() 712 void ShaderCore::i2f(Vector4f &dst, const Vector4f &src) in i2f() 720 void ShaderCore::f2u(Vector4f &dst, const Vector4f &src) in f2u() 728 void ShaderCore::u2f(Vector4f &dst, const Vector4f &src) in u2f() 736 void ShaderCore::i2b(Vector4f &dst, const Vector4f &src) in i2b() [all …]
|
/external/mesa3d/src/mesa/x86/rtasm/ |
D | x86sse.c | 147 struct x86_reg dst, in emit_op_modrm() 309 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm ) in x86_mov_reg_imm() 357 struct x86_reg dst, in x86_mov() 364 struct x86_reg dst, in x86_xor() 371 struct x86_reg dst, in x86_cmp() 378 struct x86_reg dst, in x86_lea() 386 struct x86_reg dst, in x86_test() 394 struct x86_reg dst, in x86_add() 408 struct x86_reg dst, in x86_sub() 415 struct x86_reg dst, in x86_or() [all …]
|