HomeSort by relevance Sort by last modified time
    Searched refs:dst0 (Results 1 - 25 of 44) sorted by null

1 2

  /bionic/libc/string/
bcopy.c 52 memcpy(void *dst0, const void *src0, size_t length)
56 memmove(void *dst0, const void *src0, size_t length)
59 bcopy(const void *src0, void *dst0, size_t length)
63 char *dst = dst0;
124 return (dst0);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 462 LLVMValueRef dst0 = NULL; local
479 dst0 = bld->bld_base.base.undef;
485 dst0 = lp_build_floor(&bld->bld_base.base, src0);
489 dst0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
498 dst0 = lp_build_rcp(&bld->bld_base.base, src0);
505 dst0 = lp_build_rsqrt(&bld->bld_base.base, tmp0);
517 dst0 = lp_build_mul(&bld->bld_base.base, src0, src1);
523 dst0 = lp_build_add(&bld->bld_base.base, src0, src1);
540 dst0 = lp_build_max(&bld->bld_base.base, src0, src1);
546 dst0 = lp_build_max(&bld->bld_base.base, src0, src1)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 462 LLVMValueRef dst0 = NULL; local
479 dst0 = bld->bld_base.base.undef;
485 dst0 = lp_build_floor(&bld->bld_base.base, src0);
489 dst0 = lp_build_emit_fetch(&bld->bld_base, inst, 0, LP_CHAN_ALL);
498 dst0 = lp_build_rcp(&bld->bld_base.base, src0);
505 dst0 = lp_build_rsqrt(&bld->bld_base.base, tmp0);
517 dst0 = lp_build_mul(&bld->bld_base.base, src0, src1);
523 dst0 = lp_build_add(&bld->bld_base.base, src0, src1);
540 dst0 = lp_build_max(&bld->bld_base.base, src0, src1);
546 dst0 = lp_build_max(&bld->bld_base.base, src0, src1)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 1066 void handleTEX(Value *dst0[4], int R, int S, int L, int C, int Dx, int Dy);
1067 void handleTXF(Value *dst0[4], int R);
1068 void handleTXQ(Value *dst0[4], enum TexQuery);
1069 void handleLIT(Value *dst0[4]);
    [all...]
nv50_ir_from_sm4.cpp 111 void emitTex(Value *dst0[4], TexInstruction *, const uint8_t swizzle[4]);
112 void handleLOAD(Value *dst0[4]);
113 void handleSAMPLE(operation, Value *dst0[4]);
114 void handleQUERY(Value *dst0[4], enum TexQuery query);
115 void handleDP(Value *dst0[4], int dim);
    [all...]
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_from_tgsi.cpp 1066 void handleTEX(Value *dst0[4], int R, int S, int L, int C, int Dx, int Dy);
1067 void handleTXF(Value *dst0[4], int R);
1068 void handleTXQ(Value *dst0[4], enum TexQuery);
1069 void handleLIT(Value *dst0[4]);
    [all...]
nv50_ir_from_sm4.cpp 111 void emitTex(Value *dst0[4], TexInstruction *, const uint8_t swizzle[4]);
112 void handleLOAD(Value *dst0[4]);
113 void handleSAMPLE(operation, Value *dst0[4]);
114 void handleQUERY(Value *dst0[4], enum TexQuery query);
115 void handleDP(Value *dst0[4], int dim);
    [all...]
  /external/pixman/pixman/
pixman-arm-neon-asm-bilinear.S 253 * Macros for loading destination pixels into register 'dst0' and 'dst1'.
256 .macro bilinear_load_dst_0565_src numpix, dst0, dst1, dst01
259 .macro bilinear_load_dst_8888_src numpix, dst0, dst1, dst01
262 .macro bilinear_load_dst_8888 numpix, dst0, dst1, dst01
264 vld1.32 {dst0, dst1}, [OUT]
266 vld1.32 {dst0}, [OUT]
268 vld1.32 {dst0[0]}, [OUT]
275 .macro bilinear_load_dst_8888_over numpix, dst0, dst1, dst01
276 bilinear_load_dst_8888 numpix, dst0, dst1, dst01
279 .macro bilinear_load_dst_8888_add numpix, dst0, dst1, dst0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_flatshade.c 86 /** Copy all the color attributes from src vertex to dst0 & dst1 vertices */
88 struct vertex_header *dst0,
96 COPY_4FV(dst0->data[attr], src->data[attr]);
102 COPY_3FV(dst0->data[attr], src->data[attr]);
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_flatshade.c 86 /** Copy all the color attributes from src vertex to dst0 & dst1 vertices */
88 struct vertex_header *dst0,
96 COPY_4FV(dst0->data[attr], src->data[attr]);
102 COPY_3FV(dst0->data[attr], src->data[attr]);
  /external/chromium_org/third_party/libwebp/dsp/
dec_sse2.c 201 __m128i dst0, dst1, dst2, dst3; local
204 dst0 = _mm_loadl_epi64((__m128i*)&dst[0 * BPS]);
210 dst0 = _mm_cvtsi32_si128(*(int*)&dst[0 * BPS]);
216 dst0 = _mm_unpacklo_epi8(dst0, zero);
221 dst0 = _mm_add_epi16(dst0, T0);
226 dst0 = _mm_packus_epi16(dst0, dst0);
    [all...]
  /external/webp/src/dsp/
dec_sse2.c 201 __m128i dst0, dst1, dst2, dst3; local
204 dst0 = _mm_loadl_epi64((__m128i*)&dst[0 * BPS]);
210 dst0 = _mm_cvtsi32_si128(*(int*)&dst[0 * BPS]);
216 dst0 = _mm_unpacklo_epi8(dst0, zero);
221 dst0 = _mm_add_epi16(dst0, T0);
226 dst0 = _mm_packus_epi16(dst0, dst0);
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-gap-resolver-ia32.cc 396 Operand dst0 = cgen_->ToOperand(destination); local
399 __ mov(dst0, tmp);
500 Operand dst0 = cgen_->ToOperand(destination); local
502 __ movdbl(xmm0, dst0); // Save destination in xmm0.
504 __ mov(dst0, tmp);
  /external/opencv/cv/src/
cvsegmentation.cpp 352 CvMat dstub0, *dst0; local
355 CV_CALL( dst0 = cvGetMat( dstarr, &dstub0 ));
360 if( !CV_ARE_TYPES_EQ( src0, dst0 ))
363 if( !CV_ARE_SIZES_EQ( src0, dst0 ))
382 dst_pyramid[0] = dst0;
cvthresh.cpp 309 CvMat src0, dst0; local
327 dst = cvReshape( dst, &dst0, 1 );
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 441 Operand dst0 = cgen_->ToOperand(destination); local
443 __ movdbl(xmm0, dst0); // Save destination in xmm0.
445 __ mov(dst0, tmp);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_blorp.h 147 void setup(GLuint src0, GLuint dst0, GLuint dst1,
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_blorp.h 147 void setup(GLuint src0, GLuint dst0, GLuint dst1,
  /external/opencv/cxcore/src/
cxlogic.cpp 112 ( const uchar* src0, int step1, uchar* dst0, int step, CvSize size, \
117 for( ; size.height--; src0 += step1, dst0 += step ) \
120 uchar* dst = dst0; \
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program_alu.c 586 struct rc_dst_register dst0; local
590 dst0 = try_to_reuse_dst(c, inst);
592 dst0,
609 srcreg(RC_FILE_TEMPORARY, dst0.Index),
861 struct rc_dst_register dst0 = try_to_reuse_dst(c, inst); local
865 dst0 = try_to_reuse_dst(c, inst);
867 dst0,
882 srcreg(RC_FILE_TEMPORARY, dst0.Index),
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program_alu.c 586 struct rc_dst_register dst0; local
590 dst0 = try_to_reuse_dst(c, inst);
592 dst0,
609 srcreg(RC_FILE_TEMPORARY, dst0.Index),
861 struct rc_dst_register dst0 = try_to_reuse_dst(c, inst); local
865 dst0 = try_to_reuse_dst(c, inst);
867 dst0,
882 srcreg(RC_FILE_TEMPORARY, dst0.Index),
    [all...]
  /external/valgrind/main/VEX/priv/
guest_x86_toIR.c 1835 IRTemp dst0 = newTemp(ty); local
1948 IRTemp dst0 = newTemp(ty); local
2147 IRTemp dst0 = newTemp(ty); local
2289 IRTemp dst0 = newTemp(ty); local
2397 IRTemp dst0 = newTemp(ty); local
2805 IRTemp dst1, src, dst0; local
    [all...]
guest_amd64_toIR.c 2802 IRTemp dst0 = newTemp(ty); local
2918 IRTemp dst0 = newTemp(ty); local
3123 IRTemp dst0 = newTemp(ty); local
3278 IRTemp dst0 = newTemp(ty); local
3389 IRTemp dst0 = newTemp(ty); local
3849 IRTemp dst1, src, dst0; local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_loopfilter.c 803 uint8_t* const dst0 = dst->buf; local
926 uint8_t* const dst0 = dst->buf; local
    [all...]
  /external/chromium_org/v8/test/cctest/
test-assembler-arm.cc 1255 uint32_t dst0; member in struct:__anon17091
1357 uint32_t dst0; member in struct:__anon17092
    [all...]

Completed in 1227 milliseconds

1 2