Searched defs:buf (Results 26 - 50 of 4210) sorted by relevance

1234567891011>>

/external/libcxx/test/depr/depr.str.strstreams/depr.istrstream/depr.istrstream.members/
H A Drdbuf.pass.cpp22 const char buf[] = "123 4.5 dog"; local
23 const std::istrstream in(buf);
/external/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
H A Drdbuf.pass.cpp22 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/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
H A Drdbuf.pass.cpp22 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/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
H A Dcp_size_cp.pass.cpp22 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[] local
73 char buf[10] = "abcd"; local
[all...]
H A Dscp_size_scp.pass.cpp22 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[] local
73 signed char buf[10] = "abcd"; local
[all...]
H A Ducp_size_ucp.pass.cpp22 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[] local
73 unsigned char buf[10] = "abcd"; local
[all...]
/external/ltrace/
H A Dmemstream.h29 char *buf; member in struct:memstream
/external/openssl/crypto/
H A Dcversion.c72 static char buf[sizeof(DATE)+11]; local
74 BIO_snprintf(buf,sizeof buf,"built on: %s",DATE);
75 return(buf);
83 static char buf[sizeof(CFLAGS)+11]; local
85 BIO_snprintf(buf,sizeof buf,"compiler: %s",CFLAGS);
86 return(buf);
94 static char buf[sizeof(PLATFORM)+11]; local
96 BIO_snprintf(buf,sizeo
[all...]
/external/openssl/crypto/x509/
H A Dx509_txt.c73 static char buf[100]; local
188 BIO_snprintf(buf,sizeof buf,"error number %ld",n);
189 return(buf);
/external/ppp/pppd/
H A Deui64.c51 static char buf[32]; local
53 snprintf(buf, 32, "%02x%02x:%02x%02x:%02x%02x:%02x%02x",
56 return buf;
/external/tcpdump/
H A Dmachdep.c62 static int buf[2] = { SSIN_UACPROC, UAC_SIGBUS }; local
64 if (setsysinfo(SSI_NVPAIRS, (caddr_t)buf, 1, 0, 0) < 0) {
/external/valgrind/main/VEX/test/
H A Dfstenv.c13 unsigned int* buf = malloc(7*sizeof(int)); local
14 do_fstenv(buf);
16 printf("%08x ", buf[i]);
/external/valgrind/main/memcheck/tests/
H A Derringfds.c11 char buf[10]; local
14 n = read ( fd, buf, 10 );
/external/chromium_org/content/browser/loader/
H A Dresource_buffer_unittest.cc11 scoped_refptr<ResourceBuffer> buf = new ResourceBuffer(); local
12 EXPECT_TRUE(buf->Initialize(100, 5, 10));
13 EXPECT_TRUE(buf->CanAllocate());
18 char* ptr = buf->Allocate(&size);
21 EXPECT_TRUE(buf->CanAllocate());
23 EXPECT_EQ(0, buf->GetLastAllocationOffset());
25 buf->ShrinkLastAllocation(2); // Less than our min allocation size.
26 EXPECT_EQ(0, buf->GetLastAllocationOffset());
27 EXPECT_TRUE(buf->CanAllocate());
33 char* ptr = buf
48 scoped_refptr<ResourceBuffer> buf = new ResourceBuffer(); local
64 scoped_refptr<ResourceBuffer> buf = new ResourceBuffer(); local
85 scoped_refptr<ResourceBuffer> buf = new ResourceBuffer(); local
119 scoped_refptr<ResourceBuffer> buf = new ResourceBuffer(); local
[all...]
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
H A Drecv.c10 ssize_t recv(int fd, void* buf, size_t len, int flags) { argument
11 return ki_recv(fd, buf, len, flags);
H A Dsend.c10 ssize_t send(int fd, const void* buf, size_t len, int flags) { argument
11 return ki_send(fd, buf, len, flags);
/external/chromium_org/third_party/angle/src/compiler/translator/
H A Dcompilerdebug.cpp26 char buf[kTraceBufferLen]; local
29 vsnprintf(buf, kTraceBufferLen, format, args);
32 parseContext->trace(buf);
/external/chromium_org/third_party/webrtc/common_audio/
H A Dwav_header_unittest.cc54 uint8_t buf[kSize]; local
55 memset(buf, 0xa4, sizeof(buf));
57 buf + 4, 17, 12345, webrtc::kWavFormatALaw, 1, 123457689);
76 EXPECT_EQ(0, memcmp(kExpectedBuf, buf, kSize));
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/examples/rexx/
H A Dscanio.c22 uchar *buf = (uchar*) malloc(((s->lim - s->bot) + 512)*sizeof(uchar)); local
23 memcpy(buf, s->bot, s->lim - s->bot);
24 s->tok = buf;
25 s->ptr = &buf[s->ptr - s->bot];
27 s->eot = &buf[s->eot - s->bot];
28 cursor = &buf[cursor - s->bot];
29 s->lim = &buf[s->lim - s->bot];
32 s->bot = buf;
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dreadv.cc15 char buf[2011]; local
18 char * volatile buf_ = buf;
21 iov[0].iov_base = buf + 1;
24 iov[1].iov_base = buf + 10;
/external/compiler-rt/test/msan/
H A Dbacktrace.cc11 void *buf[10]; local
12 int sz = backtrace(buf, sizeof(buf) / sizeof(*buf));
15 if (!buf[i])
17 char **s = backtrace_symbols(buf, sz);
H A Dc-strdup.c12 char buf[] = "abc"; local
13 char *p = strdup(buf);
H A Dgetaddrinfo.cc9 char buf[100000]; local
H A Dstrerror_r-non-gnu.c13 char buf[1000]; local
14 int res = strerror_r(EINVAL, buf, sizeof(buf));
16 volatile int z = strlen(buf);
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dgetpwnam_r_invalid_user.cc14 char buf[10000]; local
15 int res = getpwnam_r("no-such-user", &pwd, buf, sizeof(buf), &pwdres);

Completed in 422 milliseconds

1234567891011>>