HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 201 - 225 of 4141) sorted by null

1 2 3 4 5 6 7 891011>>

  /system/core/libcutils/arch-arm64/
android_memset.S 41 #define dst x0 define
88 add dst, dst, tmp1
92 stp A_l, A_l, [dst, #-48]
94 stp A_l, A_l, [dst, #-32]
96 stp A_l, A_l, [dst, #-16]
100 add dst, dst, count
101 stp A_l, A_l, [dst, #-16] /* Repeat some/all of last store. */
108 str A_l, [dst], #
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
LittleEndian.java 73 public static void setInt8(byte[] dst, int offset, int value) {
74 dst[offset] = (byte) value;
80 public static void setInt16(byte[] dst, int offset, int value) {
81 dst[offset + 0] = (byte) (value & 0xFF);
82 dst[offset + 1] = (byte) ((value >>> 8) & 0xFF);
88 public static void setInt32(byte[] dst, int offset, long value)
96 dst[offset + 0] = (byte) (value & 0xFF);
97 dst[offset + 1] = (byte) ((value >>> 8) & 0xFF);
98 dst[offset + 2] = (byte) ((value >>> 16) & 0xFF);
99 dst[offset + 3] = (byte) ((value >>> 24) & 0xFF)
    [all...]
  /external/elfutils/src/libelf/
elf_getphdrnum.c 41 __elf_getphdrnum_rdlock (elf, dst)
43 size_t *dst;
52 *dst = (elf->class == ELFCLASS32
56 if (*dst == PN_XNUM)
69 *dst = scns->data[0].shdr.e32->sh_info;
75 *dst = scns->data[0].shdr.e64->sh_info;
83 elf_getphdrnum (elf, dst)
85 size_t *dst;
99 result = __elf_getphdrnum_rdlock (elf, dst);
107 *dst = 0
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.c 287 struct x86_reg dst,
290 switch (dst.mod) {
293 emit_modrm(p, dst, src);
300 emit_modrm(p, src, dst);
454 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm )
456 DUMP_RI( dst, imm );
457 assert(dst.file == file_REG32);
458 assert(dst.mod == mod_REG);
459 emit_1ub(p, 0xb8 + dst.idx);
463 void x86_mov_imm( struct x86_function *p, struct x86_reg dst, int imm
    [all...]
  /external/skia/src/images/
transform_scanline.h 21 * Transform 'width' pixels from 'src' buffer into 'dst' buffer,
25 int width, char* SK_RESTRICT dst);
28 * Identity transformation: just copy bytes from src to dst.
31 char* SK_RESTRICT dst) {
32 memcpy(dst, src, width);
41 char* SK_RESTRICT dst) {
45 *dst++ = SkPacked16ToR32(c);
46 *dst++ = SkPacked16ToG32(c);
47 *dst++ = SkPacked16ToB32(c);
56 char* SK_RESTRICT dst) {
    [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...]
  /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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_extend.c 17 uint8_t *dst, int dst_pitch,
26 uint8_t *dst_ptr1 = dst - extend_left;
27 uint8_t *dst_ptr2 = dst + w;
41 src_ptr1 = dst - extend_left;
42 src_ptr2 = dst + dst_pitch * (h - 1) - extend_left;
43 dst_ptr1 = dst + dst_pitch * (-extend_top) - extend_left;
44 dst_ptr2 = dst + dst_pitch * (h) - extend_left;
59 YV12_BUFFER_CONFIG *dst) {
79 const int et_a = dst->border >> (dst->alpha_height != dst->y_height)
    [all...]
  /external/webp/src/enc/
picture_rescale.c 24 // into 'dst'. Mark 'dst' as not owning any memory.
26 WebPPicture* const dst) {
27 assert(src != NULL && dst != NULL);
28 *dst = *src;
29 WebPPictureResetBuffers(dst);
36 uint8_t* dst, int dst_stride, int width, int height) {
38 memcpy(dst, src, width);
40 dst += dst_stride;
65 int WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) {
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_Core_MixInSoft_D16C31_SAT.c 31 LVM_INT16 *dst,
58 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
60 *dst++ = 0x7FFF;
62 *dst++ = - 0x8000;
64 *dst++ = (LVM_INT16)Temp;
77 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 */
79 *dst++ = 0x7FFF;
81 *dst++ = - 0x8000;
83 *dst++ = (LVM_INT16)Temp;
96 Temp = ((LVM_INT32)*dst) + (((LVM_INT32)*(src++) * CurrentShort)>>15); /* Q15 + Q15*Q15>>15 into Q15 *
    [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 25 uint8* dst, int dst_stride,
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/skia/src/core/
SkCubicClipper.cpp 108 bool SkCubicClipper::clipCubic(const SkPoint srcPts[4], SkPoint dst[4]) {
113 dst[0] = srcPts[3];
114 dst[1] = srcPts[2];
115 dst[2] = srcPts[1];
116 dst[3] = srcPts[0];
119 memcpy(dst, srcPts, 4 * sizeof(SkPoint));
126 if (dst[3].fY <= ctop || dst[0].fY >= cbot) {
134 if (dst[0].fY < ctop && chopMonoCubicAtY(dst, ctop, &t))
    [all...]
SkTime.cpp 11 void SkTime::DateTime::toISO8601(SkString* dst) const {
12 if (dst) {
17 dst->printf("%04u-%02u-%02uT%02u:%02u:%02u%c%02d:%02d",
  /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...]
  /libcore/benchmarks/src/benchmarks/
ArrayCopyBenchmark.java 29 char[] dst = new char[8192]; local
31 dst[i] = src[i];
39 char[] dst = new char[8192]; local
40 System.arraycopy(src, 0, dst, 0, 8192);
47 char[] dst = Arrays.copyOf(src, 8192); local
54 char[] dst = Arrays.copyOfRange(src, 0, 8192); local
  /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...]
  /external/libedit/src/
chartype.c 80 char *dst; local
90 dst = conv->cbuff;
92 used = (ssize_t)(conv->csize - (size_t)(dst - conv->cbuff));
94 used = dst - conv->cbuff;
99 dst = conv->cbuff + used;
101 used = ct_encode_char(dst, (size_t)5, *s);
105 dst += used;
107 *dst = '\0';
192 ct_encode_char(char *dst, size_t len, Char c)
197 l = ct_wctomb(dst, c)
213 Char *dst; local
    [all...]
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsncpy.c 44 * Copy src to dst, truncating or null-padding to always copy n bytes.
45 * Return dst.
48 wcsncpy(wchar_t * __restrict dst, const wchar_t * __restrict src, size_t n)
51 wchar_t *d = dst;
63 return (dst);
  /external/deqp/framework/common/
tcuImageIO.hpp 39 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName);
41 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName);
44 void loadPKM (CompressedTexture& dst, const tcu::Archive& archive, const char* fileName);
  /external/eigen/Eigen/src/Core/
EigenBase.h 51 /** \internal Don't use it, but do the equivalent: \code dst = *this; \endcode */
52 template<typename Dest> inline void evalTo(Dest& dst) const
53 { derived().evalTo(dst); }
55 /** \internal Don't use it, but do the equivalent: \code dst += *this; \endcode */
56 template<typename Dest> inline void addTo(Dest& dst) const
62 dst += res;
65 /** \internal Don't use it, but do the equivalent: \code dst -= *this; \endcode */
66 template<typename Dest> inline void subTo(Dest& dst) const
72 dst -= res;
75 /** \internal Don't use it, but do the equivalent: \code dst.applyOnTheRight(*this); \endcode *
    [all...]
  /external/libvpx/libvpx/vp9/common/mips/dspr2/
vp9_convolve8_avg_dspr2.c 25 uint8_t *dst,
52 vp9_prefetch_store(dst + dst_stride);
56 dst_ptr = dst + x;
181 dst += dst_stride;
187 uint8_t *dst,
213 vp9_prefetch_store(dst + dst_stride);
214 vp9_prefetch_store(dst + dst_stride + 32);
218 dst_ptr = dst + x;
343 dst += dst_stride;
348 uint8_t *dst, ptrdiff_t dst_stride
    [all...]
  /external/libvpx/libvpx/vpx_scale/generic/
vpx_scale.c 459 * YV12_BUFFER_CONFIG *dst : Pointer to buffer to hold scaled frame.
481 YV12_BUFFER_CONFIG *dst,
496 (unsigned char *) dst->y_buffer, dst->y_stride, dw, dh,
499 if (dw < (int)dst->y_width)
501 vpx_memset(dst->y_buffer + i * dst->y_stride + dw - 1, dst->y_buffer[i * dst->y_stride + dw - 2], dst->y_width - dw + 1)
    [all...]

Completed in 2120 milliseconds

1 2 3 4 5 6 7 891011>>