HomeSort by relevance Sort by last modified time
    Searched defs:buf (Results 51 - 75 of 7209) sorted by null

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
perror.c 60 static char buf[ASCII_STRING_MAX]; local
70 (void)strerror_r(errno, buf, sizeof(buf));
71 (void)fprintf(stderr, "%s%s%s\n", s, separator, buf);
tmpnam.c 63 static char buf[L_tmpnam]; local
66 s = buf;
  /external/autotest/client/site_tests/security_AltSyscall/src/
adjtimex.c 15 struct timex buf; local
19 memset(&buf, 0, sizeof(buf));
20 ret = adjtimex(&buf);
33 buf.modes = ADJ_MAXERROR;
34 ret = adjtimex(&buf);
clock_adjtime.c 15 struct timex buf; local
19 memset(&buf, 0, sizeof(buf));
20 ret = clock_adjtime(CLOCK_REALTIME, &buf);
33 buf.modes = ADJ_MAXERROR;
34 ret = clock_adjtime(CLOCK_REALTIME, &buf);
  /external/clang/test/Sema/
builtin-longjmp.c 17 jmp_buf buf; variable
26 __builtin_longjmp(buf, 1); // expected-error {{__builtin_longjmp is not supported for the current target}}
32 if (!__builtin_setjmp(buf)) // expected-error {{__builtin_setjmp is not supported for the current target}}
  /external/compiler-rt/test/asan/TestCases/Posix/
interception-in-shared-lib-test.cc 20 char buf[10]; local
21 my_memset(buf, 11);
strerror_r_test.cc 10 char buf[1024]; local
11 char *res = (char *)strerror_r(300, buf, sizeof(buf));
  /external/compiler-rt/test/asan/TestCases/Windows/
longjmp.cc 11 static jmp_buf buf; variable
19 if (0 == setjmp(buf))
20 longjmp(buf, 1);
  /external/compiler-rt/test/asan/TestCases/
longjmp.cc 8 static jmp_buf buf; variable
16 if (0 == setjmp(buf))
17 longjmp(buf, 1);
  /external/compiler-rt/test/esan/TestCases/
workingset-midreport.cpp 18 char *buf = (char *)mmap(0, size, PROT_READ | PROT_WRITE, local
27 buf[i] = i;
35 munmap(buf, size);
workingset-samples.cpp 13 char *buf = (char *)mmap(0, size, PROT_READ | PROT_WRITE, local
22 buf[i] = i;
25 munmap(buf, size);
  /external/compiler-rt/test/msan/Linux/
glob.cc 13 char buf[1024]; local
14 snprintf(buf, sizeof(buf), "%s/%s", argv[1], "glob_test_root/*a");
17 int res = glob(buf, 0, 0, &globbuf);
glob_nomatch.cc 11 char buf[1024]; local
12 snprintf(buf, sizeof(buf), "%s/%s", argv[1], "glob_test_root/*c");
15 int res = glob(buf, 0, 0, &globbuf);
  /external/compiler-rt/test/msan/
c-strdup.c 12 char buf[] = "abc"; local
13 char *p = strdup(buf);
scandir_null.cc 22 char buf[1024]; local
23 snprintf(buf, sizeof(buf), "%s/%s", argv[1], "scandir_test_root/");
26 int res = scandir(buf, &d, NULL, NULL);
  /external/fio/lib/
strntol.c 11 char buf[24]; local
19 if (!sz || sz >= sizeof(buf)) {
25 memcpy(buf, beg, sz);
26 buf[sz] = '\0';
27 ret = strtol(buf, end, base);
31 *end = (char *)str + (*end - buf);
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
rdbuf.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 const std::istrstream in(buf);
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
rdbuf.pass.cpp 22 char buf[] = "123 4.5 dog"; local
23 const std::ostrstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
rdbuf.pass.cpp 22 char buf[] = "123 4.5 dog"; local
23 const std::strstream out(buf, 0);
26 assert(buf == std::string("a23 4.5 dog"));
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
cp_size_cp.pass.cpp 22 char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
41 char buf[] = "abcd"; local
42 std::strstreambuf sb(buf, sizeof(buf), buf);
58 char buf[] = "abcd" local
73 char buf[10] = "abcd"; local
    [all...]
scp_size_scp.pass.cpp 22 signed char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 signed char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
41 signed char buf[] = "abcd"; local
42 std::strstreambuf sb(buf, sizeof(buf), buf);
58 signed char buf[] = "abcd" local
73 signed char buf[10] = "abcd"; local
    [all...]
ucp_size_ucp.pass.cpp 22 unsigned char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 unsigned char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
41 unsigned char buf[] = "abcd"; local
42 std::strstreambuf sb(buf, sizeof(buf), buf);
58 unsigned char buf[] = "abcd" local
73 unsigned char buf[10] = "abcd"; local
    [all...]
  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
default.pass.cpp 38 std::stringbuf buf; local
39 assert(buf.str() == "");
42 std::wstringbuf buf; local
43 assert(buf.str() == L"");
46 testbuf<char> buf; local
47 buf.check();
50 testbuf<wchar_t> buf; local
51 buf.check();
  /external/libjpeg-turbo/md5/
md5cmp.c 37 char *md5sum = NULL, buf[65]; local
47 md5sum = MD5File(argv[2], buf);
  /external/libxml2/python/tests/
inbuf.py 17 buf = libxml2.inputBuffer(f) variable
21 del buf

Completed in 693 milliseconds

1 23 4 5 6 7 8 91011>>