HomeSort by relevance Sort by last modified time
    Searched defs:buf (Results 1 - 25 of 5846) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/boringssl/src/crypto/x509/
x509_txt.c 58 #include <openssl/buf.h>
69 static char buf[100]; local
204 BIO_snprintf(buf,sizeof buf,"error number %ld",n);
205 return(buf);
  /external/clang/test/Analysis/
PR7218.c 3 char buf[2]; local
4 buf[0] = a;
5 return buf[1]; // expected-warning {{Undefined or garbage value returned to caller}}
  /external/compiler-rt/test/asan/TestCases/Linux/
syscalls.cc 19 char buf[1000]; local
20 __sanitizer_syscall_pre_recvmsg(0, buf - 1, 0);
  /external/e2fsprogs/lib/e2p/
getflags.c 32 struct stat buf; local
35 if (fstat (fd, &buf) == -1)
40 if (buf.st_flags & UF_IMMUTABLE)
44 if (buf.st_flags & UF_APPEND)
48 if (buf.st_flags & UF_NODUMP)
57 if (!fstat(fd, &buf) &&
58 !S_ISREG(buf.st_mode) && !S_ISDIR(buf.st_mode))
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
str.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 std::istrstream in(buf);
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
ccp_size.pass.cpp 22 const char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 const char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
cscp_size.pass.cpp 22 const signed char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 const signed char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
cucp_size.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);
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
overflow.pass.cpp 22 char buf[12] = "abc"; local
23 std::strstreambuf sb(buf, sizeof(buf), buf);
seekoff.pass.cpp 23 char buf[] = "0123456789"; local
24 std::strstreambuf sb(buf, 0);
39 char buf[] = "0123456789"; local
40 std::strstreambuf sb(buf, 0, buf);
seekpos.pass.cpp 23 char buf[] = "0123456789"; local
24 std::strstreambuf sb(buf, 0);
31 char buf[] = "0123456789"; local
32 std::strstreambuf sb(buf, 0, buf);
setbuf.pass.cpp 22 char buf[] = "0123456789"; local
23 std::strstreambuf sb(buf, 0);
  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.assign/
member_swap.pass.cpp 24 std::stringbuf buf; local
25 buf.swap(buf1);
26 assert(buf.str() == "testing");
31 std::stringbuf buf; local
32 buf.swap(buf1);
33 assert(buf.str() == "testing");
38 std::stringbuf buf; local
39 buf.swap(buf1);
40 assert(buf.str() == "testing");
45 std::wstringbuf buf; local
52 std::wstringbuf buf; local
59 std::wstringbuf buf; local
    [all...]
move.pass.cpp 24 std::stringbuf buf; local
25 buf = move(buf1);
26 assert(buf.str() == "testing");
30 std::stringbuf buf; local
31 buf = move(buf1);
32 assert(buf.str() == "testing");
36 std::stringbuf buf; local
37 buf = move(buf1);
38 assert(buf.str() == "testing");
42 std::wstringbuf buf; local
48 std::wstringbuf buf; local
54 std::wstringbuf buf; local
    [all...]
nonmember_swap.pass.cpp 26 std::stringbuf buf; local
27 swap(buf, buf1);
28 assert(buf.str() == "testing");
33 std::stringbuf buf; local
34 swap(buf, buf1);
35 assert(buf.str() == "testing");
40 std::stringbuf buf; local
41 swap(buf, buf1);
42 assert(buf.str() == "testing");
47 std::wstringbuf buf; local
54 std::wstringbuf buf; local
61 std::wstringbuf buf; local
    [all...]
  /external/libcxx/test/std/input.output/string.streams/stringbuf/stringbuf.cons/
default.pass.cpp 23 std::stringbuf buf; local
24 assert(buf.str() == "");
27 std::wstringbuf buf; local
28 assert(buf.str() == L"");
  /external/strace/tests/
getrandom.c 40 unsigned char buf[4]; local
42 if (syscall(__NR_getrandom, buf, sizeof(buf) - 1, 0) != sizeof(buf) - 1)
45 (int) buf[0], (int) buf[1], (int) buf[2]);
47 if (syscall(__NR_getrandom, buf, sizeof(buf), 1) != sizeof(buf))
    [all...]
  /external/valgrind/none/tests/x86/
cpuid_c.c 5 extern void get_cpuid0 ( unsigned int* buf );
6 extern void get_cpuid1 ( unsigned int* buf );
8 unsigned int buf[4]; variable
12 get_cpuid0(&buf[0]);
14 buf[0], buf[1], buf[2], buf[3] );
16 get_cpuid1(&buf[0]);
18 buf[0], buf[1], buf[2], buf[3] )
    [all...]
  /ndk/sources/cxx-stl/gabi++/tests/
test_gabixx_exceptions.cpp 21 char *buf; local
24 buf = new char[512];
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
str.pass.cpp 22 const char buf[] = "123 4.5 dog"; local
23 std::istrstream in(buf);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
ccp_size.pass.cpp 22 const char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 const char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
cscp_size.pass.cpp 22 const signed char buf[] = "abcd"; local
23 std::strstreambuf sb(buf, sizeof(buf));
32 const signed char buf[] = "abcd"; local
33 std::strstreambuf sb(buf, 0);
cucp_size.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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.virtuals/
overflow.pass.cpp 22 char buf[12] = "abc"; local
23 std::strstreambuf sb(buf, sizeof(buf), buf);
seekoff.pass.cpp 23 char buf[] = "0123456789"; local
24 std::strstreambuf sb(buf, 0);
39 char buf[] = "0123456789"; local
40 std::strstreambuf sb(buf, 0, buf);

Completed in 936 milliseconds

1 2 3 4 5 6 7 8 91011>>