HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 226 - 250 of 6525) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvpx/libvpx/vpx_dsp/mips/
intrapred_msa.c 20 static void intra_predict_vert_4x4_msa(const uint8_t *src, uint8_t *dst,
26 SW4(src_data, src_data, src_data, src_data, dst, dst_stride);
29 static void intra_predict_vert_8x8_msa(const uint8_t *src, uint8_t *dst,
38 SW(src_data1, dst);
39 SW(src_data2, (dst + 4));
40 dst += dst_stride;
44 static void intra_predict_vert_16x16_msa(const uint8_t *src, uint8_t *dst,
52 ST_UB(src0, dst);
53 dst += dst_stride;
57 static void intra_predict_vert_32x32_msa(const uint8_t *src, uint8_t *dst,
    [all...]
  /build/make/tools/libhost/
CopyFile.c 50 static int copyFileRecursive(const char* src, const char* dst, bool isCmdLine, unsigned int options);
98 static void printCopyMsg(const char* src, const char* dst, unsigned int options)
101 printf(" '%s' --> '%s'\n", src, dst);
104 static void printNotNewerMsg(const char* src, const char* dst, unsigned int options)
108 printf(" '%s' is up-to-date\n", dst);
116 static int copyFileContents(const char* dst, int dstFd, const char* src, int srcFd)
136 "acp: failed writing '%s': %s\n", dst, strerror(errno));
141 dst, writeCount, readCount);
160 static int setPermissions(const char* dst, const struct stat* pSrcStat, unsigned int options)
173 if (utime(dst, &ut) != 0)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
Base64.java 110 byte[] dst = new byte[codeLength];
125 dst[didx++] = base64[bits6];
127 dst[didx++] = base64[bits6];
129 dst[didx++] = base64[bits6];
131 dst[didx++] = base64[bits6];
136 dst[didx++] = 0x0A;
144 dst[didx++] = base64[bits6];
146 dst[didx++] = base64[bits6];
148 dst[didx++] = base64[bits6];
149 dst[didx++] = (byte) '=';
    [all...]
  /system/media/audio_utils/
format.c 25 void memcpy_by_audio_format(void *dst, audio_format_t dst_format,
37 if (dst != src) {
39 memcpy(dst, src, count * audio_bytes_per_sample(dst_format));
50 memcpy_to_i16_from_float((int16_t*)dst, (float*)src, count);
53 memcpy_to_i16_from_u8((int16_t*)dst, (uint8_t*)src, count);
56 memcpy_to_i16_from_p24((int16_t*)dst, (uint8_t*)src, count);
59 memcpy_to_i16_from_i32((int16_t*)dst, (int32_t*)src, count);
62 memcpy_to_i16_from_q8_23((int16_t*)dst, (int32_t*)src, count);
71 memcpy_to_float_from_i16((float*)dst, (int16_t*)src, count);
74 memcpy_to_float_from_u8((float*)dst, (uint8_t*)src, count)
    [all...]
  /external/webp/src/enc/
picture_rescale_enc.c 28 // into 'dst'. Mark 'dst' as not owning any memory.
30 WebPPicture* const dst) {
31 assert(src != NULL && dst != NULL);
32 *dst = *src;
33 WebPPictureResetBuffers(dst);
59 int WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) {
60 if (src == NULL || dst == NULL) return 0;
61 if (src == dst) return 1;
63 PictureGrabSpecs(src, dst);
    [all...]
  /bionic/libc/arch-arm64/denver64/bionic/
memcpy_base.S 45 #define dst x6 define
61 mov dst, dstin
74 add dst, dst, tmp1
80 stp A_l, A_h, [dst, #-48]
83 stp A_l, A_h, [dst, #-32]
86 stp A_l, A_h, [dst, #-16]
93 add dst, dst, count
94 stp A_l, A_h, [dst, #-16
    [all...]
  /art/compiler/utils/x86/
assembler_x86.h 330 void movl(Register dst, const Immediate& src);
331 void movl(Register dst, Register src);
333 void movl(Register dst, const Address& src);
334 void movl(const Address& dst, Register src);
335 void movl(const Address& dst, const Immediate& imm);
336 void movl(const Address& dst, Label* lbl);
338 void movntl(const Address& dst, Register src);
340 void bswapl(Register dst);
342 void bsfl(Register dst, Register src);
343 void bsfl(Register dst, const Address& src)
    [all...]
  /external/Microsoft-GSL/tests/
algorithm_tests.cpp 31 std::array<int, 10> dst{};
34 span<int> dst_span(dst);
40 CHECK(dst[i] == src[i]);
41 CHECK(dst[i + src.size()] == src[i]);
48 std::array<int, 10> dst{};
51 span<int> dst_span(dst);
57 CHECK(dst[i] == src[i]);
58 CHECK(dst[i + src.size()] == src[i]);
65 std::array<int, 10> dst{};
68 span<int, 10> dst_span(dst);
    [all...]
  /external/skia/src/opts/
SkBlitRow_opts.h 28 void blit_row_color32(SkPMColor* dst, const SkPMColor* src, int count, SkPMColor color) {
36 Sk4px::MapSrc(count, dst, src, [&](const Sk4px& src4) -> Sk4px {
57 // In this variant of SkPMSrcOver each NEON register, dst.val[i], src.val[i], contains the value
60 static inline uint8x8x4_t SkPMSrcOver_neon8(uint8x8x4_t dst, uint8x8x4_t src) {
63 result.val[0] = vadd_u8(src.val[0], SkMulDiv255Round_neon8(nalphas, dst.val[0]));
64 result.val[1] = vadd_u8(src.val[1], SkMulDiv255Round_neon8(nalphas, dst.val[1]));
65 result.val[2] = vadd_u8(src.val[2], SkMulDiv255Round_neon8(nalphas, dst.val[2]));
66 result.val[3] = vadd_u8(src.val[3], SkMulDiv255Round_neon8(nalphas, dst.val[3]));
70 // In this variant of SkPMSrcOver dst and src contain the color components of two consecutive
72 static inline uint8x8_t SkPMSrcOver_neon2(uint8x8_t dst, uint8x8_t src)
    [all...]
SkBlitRow_opts_SSE2.cpp 20 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
31 SkASSERT(((size_t)dst & 0x03) == 0);
32 while (((size_t)dst & 0x0F) != 0) {
33 *dst = SkPMLerp(*src, *dst, src_scale);
35 dst++;
40 __m128i *d = reinterpret_cast<__m128i*>(dst);
54 dst = reinterpret_cast<SkPMColor*>(d);
58 *dst = SkPMLerp(*src, *dst, src_scale)
    [all...]
  /external/skqp/src/opts/
SkBlitRow_opts.h 28 void blit_row_color32(SkPMColor* dst, const SkPMColor* src, int count, SkPMColor color) {
36 Sk4px::MapSrc(count, dst, src, [&](const Sk4px& src4) -> Sk4px {
57 // In this variant of SkPMSrcOver each NEON register, dst.val[i], src.val[i], contains the value
60 static inline uint8x8x4_t SkPMSrcOver_neon8(uint8x8x4_t dst, uint8x8x4_t src) {
63 result.val[0] = vadd_u8(src.val[0], SkMulDiv255Round_neon8(nalphas, dst.val[0]));
64 result.val[1] = vadd_u8(src.val[1], SkMulDiv255Round_neon8(nalphas, dst.val[1]));
65 result.val[2] = vadd_u8(src.val[2], SkMulDiv255Round_neon8(nalphas, dst.val[2]));
66 result.val[3] = vadd_u8(src.val[3], SkMulDiv255Round_neon8(nalphas, dst.val[3]));
70 // In this variant of SkPMSrcOver dst and src contain the color components of two consecutive
72 static inline uint8x8_t SkPMSrcOver_neon2(uint8x8_t dst, uint8x8_t src)
    [all...]
SkBlitRow_opts_SSE2.cpp 20 void S32_Blend_BlitRow32_SSE2(SkPMColor* SK_RESTRICT dst,
31 SkASSERT(((size_t)dst & 0x03) == 0);
32 while (((size_t)dst & 0x0F) != 0) {
33 *dst = SkPMLerp(*src, *dst, src_scale);
35 dst++;
40 __m128i *d = reinterpret_cast<__m128i*>(dst);
54 dst = reinterpret_cast<SkPMColor*>(d);
58 *dst = SkPMLerp(*src, *dst, src_scale)
    [all...]
  /external/valgrind/none/tests/s390x/
cu42.stdout.exp 5 dst len: 0
11 dst address difference: 0 dst len: 2000
15 dst address difference: 0 dst len: 2000
19 dst address difference: 0 dst len: 2000
23 dst address difference: 0 dst len: 2000
27 dst address difference: 0 dst len: 200
    [all...]
  /external/clang/test/Analysis/
bstring.c 53 char dst[4] = {0}; local
55 memcpy(dst, src, 4); // no-warning
57 clang_analyzer_eval(memcpy(dst, src, 4) == dst); // expected-warning{{TRUE}}
61 clang_analyzer_eval(dst[0] != 0); // expected-warning{{UNKNOWN}}
66 char dst[10]; local
68 memcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element}}
73 char dst[1]; local
75 memcpy(dst, src, 4); // expected-warning{{Memory copy function overflows destination buffer}}
80 char dst[3] local
87 char dst[10]; local
94 char dst[3]; local
173 char dst[5] = {0}; local
186 char dst[10]; local
193 char dst[1]; local
200 char dst[3]; local
207 char dst[10]; local
214 char dst[3]; local
262 int dst[5] = {0}; local
332 char dst[4] = {0}; local
345 char dst[10]; local
352 char dst[1]; local
445 char dst[4] = {0}; local
456 char dst[10]; local
463 char dst[1]; local
    [all...]
  /external/compiler-rt/lib/msan/
msan_poisoning.h 29 // Copy origin from src (app address) to dst (app address), creating chained
32 void CopyOrigin(const void *dst, const void *src, uptr size, StackTrace *stack);
34 // memmove() shadow and origin. Dst and src are application addresses.
36 void MoveShadowAndOrigin(const void *dst, const void *src, uptr size,
39 // memcpy() shadow and origin. Dst and src are application addresses.
41 void CopyShadowAndOrigin(const void *dst, const void *src, uptr size,
46 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack);
52 void SetOrigin(const void *dst, uptr size, u32 origin);
55 void PoisonMemory(const void *dst, uptr size, StackTrace *stack);
  /external/libvpx/libvpx/third_party/libyuv/source/
rotate_mips.cc 26 uint8* dst, int dst_stride, int width) {
36 "andi $t0, %[dst], 0x3 \n"
41 //dst + dst_stride word aligned
61 "sw $s0, 0(%[dst]) \n"
64 "sw $s1, 4(%[dst]) \n"
66 " addu %[dst], %[dst], %[dst_stride] \n"
68 //dst + dst_stride unaligned
88 "swr $s0, 0(%[dst]) \n"
89 "swl $s0, 3(%[dst]) \n
    [all...]
  /external/libyuv/files/source/
rotate_dspr2.cc 26 uint8* dst,
38 "andi $t0, %[dst], 0x3 \n"
43 // dst + dst_stride word aligned
63 "sw $s0, 0(%[dst]) \n"
66 "sw $s1, 4(%[dst]) \n"
68 " addu %[dst], %[dst], %[dst_stride] \n"
70 // dst + dst_stride unaligned
90 "swr $s0, 0(%[dst]) \n"
91 "swl $s0, 3(%[dst]) \n
    [all...]
  /external/skia/src/core/
SkCubicClipper.cpp 107 bool SkCubicClipper::clipCubic(const SkPoint srcPts[4], SkPoint dst[4]) {
112 dst[0] = srcPts[3];
113 dst[1] = srcPts[2];
114 dst[2] = srcPts[1];
115 dst[3] = srcPts[0];
118 memcpy(dst, srcPts, 4 * sizeof(SkPoint));
125 if (dst[3].fY <= ctop || dst[0].fY >= cbot) {
133 if (dst[0].fY < ctop && ChopMonoAtY(dst, ctop, &t))
    [all...]
SkPixmapPriv.h 27 * Copy the pixels in this pixmap into dst, applying the orientation transformations specified
30 static bool Orient(const SkPixmap& dst, const SkPixmap& src, OrientFlags);
36 * Decode an image and then copy into dst, applying origin.
38 * @param dst SkPixmap to write the final image, after
44 static bool Orient(const SkPixmap& dst, SkEncodedOrigin origin,
47 const SkPixmap* tmp = &dst;
49 auto info = dst.info();
61 if (tmp != &dst) {
62 return Orient(dst, *tmp, OriginToOrient(origin));
  /external/skqp/src/core/
SkCubicClipper.cpp 107 bool SkCubicClipper::clipCubic(const SkPoint srcPts[4], SkPoint dst[4]) {
112 dst[0] = srcPts[3];
113 dst[1] = srcPts[2];
114 dst[2] = srcPts[1];
115 dst[3] = srcPts[0];
118 memcpy(dst, srcPts, 4 * sizeof(SkPoint));
125 if (dst[3].fY <= ctop || dst[0].fY >= cbot) {
133 if (dst[0].fY < ctop && ChopMonoAtY(dst, ctop, &t))
    [all...]
SkPixmapPriv.h 27 * Copy the pixels in this pixmap into dst, applying the orientation transformations specified
30 static bool Orient(const SkPixmap& dst, const SkPixmap& src, OrientFlags);
36 * Decode an image and then copy into dst, applying origin.
38 * @param dst SkPixmap to write the final image, after
44 static bool Orient(const SkPixmap& dst, SkEncodedOrigin origin,
47 const SkPixmap* tmp = &dst;
49 auto info = dst.info();
61 if (tmp != &dst) {
62 return Orient(dst, *tmp, OriginToOrient(origin));
  /external/syslinux/lzo/src/
lzo1x_d2.c 39 lzo_bytep dst, lzo_uintp dst_len,
43 lzo_bytep dst, lzo_uintp dst_len,
46 return lzo1x_decompress_safe(src, src_len, dst, dst_len, wrkmem);
50 lzo_bytep dst, lzo_uintp dst_len,
54 lzo_bytep dst, lzo_uintp dst_len,
57 return lzo1x_decompress_safe(src, src_len, dst, dst_len, wrkmem);
  /external/valgrind/none/tests/linux/
mremap2.stdout.exp 6 maymv 0 fixed 0 newsz 19 dstpo 0 dst 0x........ ->
12 maymv 0 fixed 0 newsz 19 dstpo 1 dst 0x........ ->
18 maymv 0 fixed 0 newsz 20 dstpo 0 dst 0x........ ->
24 maymv 0 fixed 0 newsz 20 dstpo 1 dst 0x........ ->
30 maymv 0 fixed 0 newsz 21 dstpo 0 dst 0x........ ->
36 maymv 0 fixed 0 newsz 21 dstpo 1 dst 0x........ ->
42 maymv 0 fixed 0 newsz 29 dstpo 0 dst 0x........ ->
48 maymv 0 fixed 0 newsz 29 dstpo 1 dst 0x........ ->
54 maymv 0 fixed 0 newsz 30 dstpo 0 dst 0x........ ->
60 maymv 0 fixed 0 newsz 30 dstpo 1 dst 0x........ ->
    [all...]
  /external/webp/src/utils/
color_cache_utils.c 43 VP8LColorCache* const dst) {
45 assert(dst != NULL);
46 assert(src->hash_bits_ == dst->hash_bits_);
47 memcpy(dst->colors_, src->colors_,
48 ((size_t)1u << dst->hash_bits_) * sizeof(*dst->colors_));
  /external/mesa3d/src/mesa/x86/rtasm/
x86sse.h 129 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm );
139 void mmx_movd( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
140 void mmx_movq( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
141 void mmx_packssdw( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
142 void mmx_packuswb( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
144 void sse2_cvtps2dq( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
145 void sse2_cvttps2dq( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
146 void sse2_movd( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
147 void sse2_packssdw( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
148 void sse2_packsswb( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
    [all...]

Completed in 660 milliseconds

1 2 3 4 5 6 7 8 91011>>