Searched defs:to_size (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/asan/tests/
H A Dasan_str_test.cc120 size_t to_size = Ident(30); local
121 size_t from_size = Ident(6); // less than to_size
122 char *to = Ident((char*)malloc(to_size));
127 strcpy(to + to_size - from_size, from);
134 EXPECT_DEATH(Ident(strcpy(to + to_size, from)), RightOOBWriteMessage(0));
143 size_t to_size = Ident(20); local
144 size_t from_size = Ident(6); // less than to_size
145 char *to = Ident((char*)malloc(to_size));
154 strncpy(to, from, to_size);
155 strncpy(to, from + from_size - 1, to_size);
357 size_t to_size = Ident(100); local
395 size_t to_size = Ident(100); local
[all...]
/external/stlport/src/c_locale_win32/
H A Dc_locale_win32.c1719 int from_size, to_size, wbuf_size; local
1768 to_size = trim_size_t_to_int(buffer_size);
1771 buffer, to_size, NULL, FALSE);

Completed in 951 milliseconds