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

1 2

  /external/clang/test/Analysis/
bstring.c 152 // mempcpy()
161 #define mempcpy(a,b,c) __mempcpy_chk(a,b,c,(size_t)-1) macro
165 #define mempcpy BUILTIN(mempcpy) macro
166 void *mempcpy(void *restrict s1, const void *restrict s2, size_t n);
175 mempcpy(dst, src, 4); // no-warning
177 if (mempcpy(dst, src, 4) != &dst[4]) {
189 mempcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element}}
196 mempcpy(dst, src, 4); // expected-warning{{Memory copy function overflows destination buffer}}
203 mempcpy(dst+1, src+2, 2); // no-warnin
    [all...]
  /external/elfutils/lib/
xstrndup.c 29 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
  /external/elfutils/libebl/
eblmachineflagname.c 62 *((char *) mempcpy (cp, machstr, buf + len - cp - 1)) = '\0';
66 cp = mempcpy (cp, machstr, machstrlen);
eblstrtab.c 293 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len);
eblgstrtab.c 304 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len * nodep->width);
eblopenbackend.c 243 strcpy (mempcpy (symname, machines[cnt].prefix,
  /external/elfutils/
config-compat-darwin.h 49 static inline void *mempcpy (void * __dest, const void * __src, size_t __n) function
55 #define __mempcpy mempcpy
config-compat-freebsd.h 52 static inline void *mempcpy (void * __dest, const void * __src, size_t __n) function
58 #define __mempcpy mempcpy
  /ndk/sources/host-tools/make-3.81/glob/
glob.c 180 # undef mempcpy macro
181 # define mempcpy(Dest, Src, Len) __mempcpy (Dest, Src, Len) macro
407 alt_start = mempcpy (onealt, pattern, begin - pattern);
465 mempcpy (mempcpy (alt_start, p, next - p), rest, rest_len);
562 *((char *) mempcpy (drive_spec, pattern, dirlen)) = '\0';
578 *((char *) mempcpy (newp, pattern, dirlen)) = '\0';
706 mempcpy (mempcpy (newp, home_dir, home_len),
729 *((char *) mempcpy (newp, dirname + 1, end_name - dirname)
    [all...]
  /external/e2fsprogs/intl/
localealias.c 19 /* Tell glibc's <string.h> to provide a prototype for mempcpy().
79 # ifndef mempcpy
80 # define mempcpy __mempcpy macro
226 mempcpy (mempcpy (full_fname, fname, fname_len),
dcigettext.c 19 /* Tell glibc's <string.h> to provide a prototype for mempcpy().
162 static void *mempcpy (void *dest, const void *src, size_t n);
570 stpcpy (mempcpy (stpcpy (stpcpy (xdomainname, categoryname), "/"),
657 mempcpy (newp->msgid, msgid1, msgid_len);
1182 mempcpy (void *dest, const void *src, size_t n) function
    [all...]
loadmsgcat.c 19 /* Tell glibc's <string.h> to provide a prototype for mempcpy().
815 *((char *) mempcpy (charset, charsetstr, len)) = '\0';
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 50 #undef mempcpy macro
78 #define mempcpy(dest, src, len) \ macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 38 # undef mempcpy macro
64 __NTH (mempcpy (void *__restrict __dest, __const void *__restrict __src, function
  /ndk/sources/host-tools/sed-4.2.1/lib/
string.in.h 92 extern void *mempcpy (void *restrict __dest, void const *restrict __src,
96 # undef mempcpy macro
97 # define mempcpy(a,b,n) \ macro
98 (GL_LINK_WARNING ("mempcpy is unportable - " \
99 "use gnulib module mempcpy for portability"), \
100 mempcpy (a, b, n))
  /external/elfutils/libasm/
asm_begin.c 125 result->fname = stpcpy (mempcpy (result->tmp_fname, fname, fname_len),
  /external/clang/INPUTS/
stpcpy-test.c 8 #define mempcpy(dest, src, n) __mempcpy (dest, src, n) macro
  /external/valgrind/main/memcheck/tests/
str_tester.c     [all...]
  /external/elfutils/src/
size.c 380 cp = mempcpy (cp, prefix, prefix_len);
681 cp = mempcpy (cp, prefix, prefix_len);
nm.c     [all...]
strip.c 408 cp = mempcpy (cp, prefix, prefix_len);
448 strcpy (mempcpy (tmp_debug_fname, debug_fname, debug_fname_len),
    [all...]
ldgeneric.c 218 strcpy (mempcpy (stpcpy (fname, "libld_"), emulation, emulation_len), ".so");
229 strcpy (mempcpy (initname, emulation, emulation_len), "_ld_init");
346 memcpy (mempcpy (stpcpy (mempcpy (rfname, path->pname,
369 memcpy (stpcpy (mempcpy (rfname, path->pname, dirlen), "/"),
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
string.h 234 extern void *mempcpy (void *__restrict __dest,
  /external/elfutils/libelf/
elf32_updatefile.c 255 last_position = mempcpy (last_position,
  /external/valgrind/main/memcheck/
mc_replace_strmem.c 923 /* mempcpy */
938 RECORD_OVERLAP_ERROR("mempcpy", dst, src, len); \
956 GLIBC25_MEMPCPY(VG_Z_LIBC_SONAME, mempcpy)
958 GLIBC25_MEMPCPY(VG_Z_LD_SO_1, mempcpy) /* ld.so.1 */
    [all...]

Completed in 4356 milliseconds

1 2