HomeSort by relevance Sort by last modified time
    Searched refs:mempcpy (Results 1 - 25 of 49) 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 clang_analyzer_eval(mempcpy(dst, src, 4) == &dst[4]); // expected-warning{{TRUE}}
188 mempcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element}}
195 mempcpy(dst, src, 4); // expected-warning{{Memory copy function overflows destination buffer}}
202 mempcpy(dst+1, src+2, 2); // no-warnin
    [all...]
  /external/elfutils/lib/
xstrndup.c 42 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
  /external/elfutils/libebl/
eblmachineflagname.c 98 *((char *) mempcpy (cp, machstr, buf + len - cp - 1)) = '\0';
102 cp = mempcpy (cp, machstr, machstrlen);
eblstrtab.c 315 *freep = (char *) mempcpy (*freep, nodep->string, nodep->len);
  /external/elfutils/bionic-fixup/
AndroidFixup.h 48 /* _mempcpy and mempcpy */
50 #define __mempcpy(dest, src, n) mempcpy(dest, src, n)
53 #ifndef mempcpy
56 static inline void *mempcpy(void *dest, const void *src, size_t n) function
  /external/elfutils/host-darwin-fixup/
AndroidFixup.h 49 static inline void *mempcpy (void * __dest, const void * __src, size_t __n) function
55 #define __mempcpy mempcpy
  /external/elfutils/libasm/
disasm_str.c 51 buffer->buf = mempcpy (buffer->buf, str, len);
asm_begin.c 152 result->fname = stpcpy (mempcpy (result->tmp_fname, fname, fname_len),
  /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...]
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/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
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include/ssp/
string.h 50 #undef mempcpy macro
78 #define mempcpy(dest, src, len) \ macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
string3.h 38 # undef mempcpy macro
64 __NTH (mempcpy (void *__restrict __dest, __const void *__restrict __src, function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include/ssp/
string.h 50 #undef mempcpy macro
78 #define mempcpy(dest, src, len) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/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/src/
findtextrel.c 218 *((char *) mempcpy (stpcpy (mempcpy (new_fname, rootdir, rootdir_len),
369 strcpy (mempcpy (stpcpy (mempcpy (mempcpy (difname, rootdir,
  /external/elfutils/libdwfl/
dwfl_build_id_find_elf.c 112 memcpy (mempcpy (name, dir, dirlen), id_name, sizeof id_name);
  /external/bison/lib/
string.in.h 169 _GL_FUNCDECL_SYS (mempcpy, void *,
174 _GL_CXXALIAS_SYS (mempcpy, void *,
177 _GL_CXXALIASWARN (mempcpy); variable
179 # undef mempcpy macro
181 _GL_WARN_ON_USE (mempcpy, "mempcpy is unportable - "
182 "use gnulib module mempcpy for portability");
    [all...]
  /external/bison/darwin-lib/
string.h 481 _GL_FUNCDECL_SYS (mempcpy, void *,
486 _GL_CXXALIAS_SYS (mempcpy, void *,
489 _GL_CXXALIASWARN (mempcpy);
491 # undef mempcpy macro
493 _GL_WARN_ON_USE (mempcpy, "mempcpy is unportable - "
494 "use gnulib module mempcpy for portability");
    [all...]
  /external/bison/linux-lib/
string.h 481 _GL_FUNCDECL_SYS (mempcpy, void *,
486 _GL_CXXALIAS_SYS (mempcpy, void *,
489 _GL_CXXALIASWARN (mempcpy);
491 # undef mempcpy macro
493 _GL_WARN_ON_USE (mempcpy, "mempcpy is unportable - "
494 "use gnulib module mempcpy for portability");
    [all...]
  /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...]

Completed in 2123 milliseconds

1 2