Searched defs:dst (Results 1 - 25 of 1170) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dwarn-write-strings.c8 void test(wchar_t *dst) { argument
9 dst[0] = 0; // Ok.
/external/mksh/src/
H A Dstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
29 strlcpy(char *dst, const char *src, size_t siz) argument
37 while (--siz && (*dst++ = *s++))
40 /* not enough room in dst */
42 /* safe to NUL-terminate dst since we copied <= siz-1 chars */
43 *dst = '\0';
/external/tcpdump/missing/
H A Dinet_pton.c51 inet_pton(int af, const char *src, void *dst) argument
57 return inet_aton (src, dst);
/external/clang/test/CodeGen/
H A Darm-neon-misc.c14 void t1(uint64_t *src, uint8_t *dst) { argument
18 vst1q_lane_u64(dst, q, 1);
24 void t2(uint64_t *src1, uint8_t *src2, uint64x2_t *dst) { argument
32 *dst = q;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_stat.cc18 void StatAggregate(u64 *dst, u64 *src) { argument
22 dst[i] += src[i];
/external/dhcpcd/compat/
H A Dstrlcpy.c33 strlcpy(char *dst, const char *src, size_t size) argument
40 if (!(*dst++ = *src++))
46 *dst = '\0';
/external/e2fsprogs/lib/uuid/
H A Dcopy.c37 void uuid_copy(uuid_t dst, const uuid_t src) argument
43 for (i=0, cp1 = dst, cp2 = src; i < 16; i++)
/external/eigen/doc/examples/
H A DTemplateKeyword_flexible.cpp7 void copyUpperTriangularPart(MatrixBase<Derived1>& dst, const MatrixBase<Derived2>& src) argument
10 dst.template triangularView<Upper>() = src.template triangularView<Upper>();
H A DTemplateKeyword_simple.cpp6 void copyUpperTriangularPart(MatrixXf& dst, const MatrixXf& src) argument
8 dst.triangularView<Upper>() = src.triangularView<Upper>();
/external/icu4c/common/
H A Dcwchar.c23 U_CAPI wchar_t *uprv_wcscat(wchar_t *dst, const wchar_t *src) { argument
24 wchar_t *start=dst;
25 while(*dst!=0) {
26 ++dst;
28 while((*dst=*src)!=0) {
29 ++dst;
35 U_CAPI wchar_t *uprv_wcscpy(wchar_t *dst, const wchar_t *src) { argument
36 wchar_t *start=dst;
37 while((*dst=*src)!=0) {
38 ++dst;
[all...]
H A Dcpputils.h26 inline void uprv_arrayCopy(const double* src, double* dst, int32_t count) argument
27 { uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
31 double* dst, int32_t dstStart, int32_t count)
32 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
35 inline void uprv_arrayCopy(const int8_t* src, int8_t* dst, int32_t count) argument
36 { uprv_memcpy(dst, src, (size_t)(count * sizeof(*src))); }
40 int8_t* dst, int32_t dstStart, int32_t count)
41 { uprv_memcpy(dst+dstStart, src+srcStart, (size_t)(count * sizeof(*src))); }
44 inline void uprv_arrayCopy(const int16_t* src, int16_t* dst, int32_t count) argument
45 { uprv_memcpy(dst, sr
30 uprv_arrayCopy(const double* src, int32_t srcStart, double* dst, int32_t dstStart, int32_t count) argument
39 uprv_arrayCopy(const int8_t* src, int32_t srcStart, int8_t* dst, int32_t dstStart, int32_t count) argument
48 uprv_arrayCopy(const int16_t* src, int32_t srcStart, int16_t* dst, int32_t dstStart, int32_t count) argument
53 uprv_arrayCopy(const int32_t* src, int32_t* dst, int32_t count) argument
57 uprv_arrayCopy(const int32_t* src, int32_t srcStart, int32_t* dst, int32_t dstStart, int32_t count) argument
63 uprv_arrayCopy(const UChar *src, int32_t srcStart, UChar *dst, int32_t dstStart, int32_t count) argument
72 uprv_arrayCopy(const icu::UnicodeString *src, icu::UnicodeString *dst, int32_t count) argument
80 uprv_arrayCopy(const icu::UnicodeString *src, int32_t srcStart, icu::UnicodeString *dst, int32_t dstStart, int32_t count) argument
[all...]
/external/llvm/lib/Support/
H A Dregstrlcpy.c24 * Copy src to string dst of size siz. At most siz-1 characters
29 llvm_strlcpy(char *dst, const char *src, size_t siz) argument
31 char *d = dst;
43 /* Not enough room in dst, add NUL and traverse rest of src */
46 *d = '\0'; /* NUL-terminate dst */
/external/openssh/openbsd-compat/
H A Dstrlcpy.c28 * Copy src to string dst of size siz. At most siz-1 characters
33 strlcpy(char *dst, const char *src, size_t siz) argument
35 char *d = dst;
47 /* Not enough room in dst, add NUL and traverse rest of src */
50 *d = '\0'; /* NUL-terminate dst */
H A Dstrlcat.c28 * Appends src to string dst of size siz (unlike strncat, siz is the
29 * full size of dst, not space left). At most siz-1 characters
30 * will be copied. Always NUL terminates (unless siz <= strlen(dst)).
31 * Returns strlen(src) + MIN(siz, strlen(initial dst)).
35 strlcat(char *dst, const char *src, size_t siz) argument
37 char *d = dst;
42 /* Find the end of dst and adjust bytes left but don't go past end */
45 dlen = d - dst;
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_mixer_MMX.c40 void SDL_MixAudio_MMX_S16(char* dst,char* src,unsigned int size,int volume) argument
72 /* pr� charger le buffer dst dans mm7 */
73 " movq (%0),%%mm7\n" /* mm7 = dst[0] */
95 /* pr� charger le buffer dst dans mm5 */
96 " movq 8(%0),%%mm5\n" /* mm5 = dst[1] */
110 " paddsw %%mm7,%%mm3\n" /* mm3 = adjust_volume(src)+dst */
116 " paddsw %%mm5,%%mm6\n" /* mm6 = adjust_volume(src)+dst */
130 : "r" (dst), "r"(src),"m"(size),
142 void SDL_MixAudio_MMX_S8(char* dst,char* src,unsigned int size,int volume) argument
201 : "r" (dst), "
[all...]
/external/skia/legacy/src/opts/
H A DSkUtils_opts_SSE2.cpp13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count) argument
15 SkASSERT(dst != NULL && count >= 0);
17 // dst must be 2-byte aligned.
18 SkASSERT((((size_t) dst) & 0x01) == 0);
21 while (((size_t)dst) & 0x0F) {
22 *dst++ = value;
25 __m128i *d = reinterpret_cast<__m128i*>(dst);
34 dst = reinterpret_cast<uint16_t*>(d);
37 *dst++ = value;
42 void sk_memset32_SSE2(uint32_t *dst, uint32_ argument
[all...]
/external/skia/src/images/
H A DSkBitmapFactory.cpp16 bool SkBitmapFactory::DecodeBitmap(SkBitmap* dst, const SkData* data, Constraints constraint) { argument
17 if (NULL == data || data->size() == 0 || dst == NULL) {
36 tmp.swap(*dst);
/external/skia/src/opts/
H A DSkUtils_opts_SSE2.cpp13 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count) argument
15 SkASSERT(dst != NULL && count >= 0);
17 // dst must be 2-byte aligned.
18 SkASSERT((((size_t) dst) & 0x01) == 0);
21 while (((size_t)dst) & 0x0F) {
22 *dst++ = value;
25 __m128i *d = reinterpret_cast<__m128i*>(dst);
34 dst = reinterpret_cast<uint16_t*>(d);
37 *dst++ = value;
42 void sk_memset32_SSE2(uint32_t *dst, uint32_ argument
[all...]
/external/elfutils/libelf/
H A Dgelf_update_rel.c62 gelf_update_rel (Elf_Data *dst, int ndx, GElf_Rel *src) argument
64 Elf_Data_Scn *data_scn = (Elf_Data_Scn *) dst;
68 if (dst == NULL)
H A Dgelf_update_rela.c62 gelf_update_rela (Elf_Data *dst, int ndx, GElf_Rela *src) argument
64 Elf_Data_Scn *data_scn = (Elf_Data_Scn *) dst;
68 if (dst == NULL)
/external/ipsec-tools/src/racoon/
H A Drsalist.h51 struct netaddr *dst; member in struct:rsa_key
55 int rsa_key_insert(struct genlist *list, struct netaddr *src, struct netaddr *dst, RSA *rsa);
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Didct_blk_v6.c16 unsigned char *dst,
24 vp8_dequant_idct_add_v6 (q, dq, dst, stride);
27 vp8_dc_only_idct_add_v6 (q[0]*dq[0], dst, stride, dst, stride);
32 vp8_dequant_idct_add_v6 (q+16, dq, dst+4, stride);
35 vp8_dc_only_idct_add_v6 (q[16]*dq[0], dst+4, stride, dst+4, stride);
40 vp8_dequant_idct_add_v6 (q+32, dq, dst+8, stride);
43 vp8_dc_only_idct_add_v6 (q[32]*dq[0], dst+8, stride, dst
15 vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
[all...]
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Didct_blk_neon.c18 unsigned char *dst, int stride);
20 unsigned char *dst, int stride);
24 unsigned char *dst,
34 idct_dequant_full_2x_neon (q, dq, dst, stride);
36 idct_dequant_0_2x_neon (q, dq[0], dst, stride);
42 idct_dequant_full_2x_neon (q+32, dq, dst+8, stride);
44 idct_dequant_0_2x_neon (q+32, dq[0], dst+8, stride);
47 dst += 4*stride;
23 vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
/external/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_sse2.c16 unsigned char *dst, int dst_stride);
19 unsigned char *dst, int dst_stride);
23 unsigned char *dst, int stride, char *eobs)
32 vp8_idct_dequant_full_2x_sse2 (q, dq, dst, stride);
34 vp8_idct_dequant_0_2x_sse2 (q, dq, dst, stride);
39 vp8_idct_dequant_full_2x_sse2 (q+32, dq, dst+8, stride);
41 vp8_idct_dequant_0_2x_sse2 (q+32, dq, dst+8, stride);
44 dst += stride*4;
21 vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
/external/linux-tools-perf/util/include/linux/
H A Dbitmap.h24 static inline void bitmap_zero(unsigned long *dst, int nbits) argument
27 *dst = 0UL;
30 memset(dst, 0, len);

Completed in 590 milliseconds

1234567891011>>