HomeSort by relevance Sort by last modified time
    Searched defs:to_size (Results 1 - 6 of 6) sorted by null

  /external/compiler-rt/test/asan/TestCases/
strcat_strict.c 14 void test1(char *to, int to_size, char *from) {
16 char* r = strcat(to + to_size, from);
19 void test2(char *to, int to_size, char *from) {
21 memset(to, 'z', to_size);
26 size_t to_size = 100; local
27 char *to = (char*)malloc(to_size);
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
strncat_strict.c 14 void test1(char *to, int to_size, char *from) {
16 char* r = strncat(to + to_size, from, 2);
19 void test2(char *to, int to_size, char *from) {
21 memset(to, 'z', to_size);
26 size_t to_size = 100; local
27 char *to = (char*)malloc(to_size);
33 if (!strcmp(argv[1], "test1")) test1(to, to_size, from);
37 if (!strcmp(argv[1], "test2")) test2(to, to_size, from);
  /external/libnl/include/netlink-private/route/
tc-api.h 46 size_t to_size; member in struct:rtnl_tc_ops
  /external/compiler-rt/lib/asan/tests/
asan_str_test.cc 150 size_t to_size = Ident(30); local
151 size_t from_size = Ident(6); // less than to_size
152 char *to = Ident((char*)malloc(to_size));
157 strcpy(to + to_size - from_size, from);
164 EXPECT_DEATH(Ident(strcpy(to + to_size, from)), RightOOBWriteMessage(0));
173 size_t to_size = Ident(20); local
174 size_t from_size = Ident(6); // less than to_size
175 char *to = Ident((char*)malloc(to_size));
184 strncpy(to, from, to_size);
185 strncpy(to, from + from_size - 1, to_size);
378 size_t to_size = Ident(100); local
413 size_t to_size = Ident(100); local
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 1719 int from_size, to_size, wbuf_size; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 1719 int from_size, to_size, wbuf_size; local
    [all...]

Completed in 159 milliseconds