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

<<11121314151617181920>>

  /external/compiler-rt/test/tsan/
fd_dup_norace.cc 12 char buf; local
13 read(fds[0], &buf, 1);
fd_dup_norace2.cc 17 char buf; local
18 int n = read(fd, &buf, 1);
fd_pipe_norace.cc 16 char buf; local
17 while (read(fds[0], &buf, 1) != 1) {
fd_socketpair_norace.cc 19 char buf; local
20 while (read(fds[0], &buf, 1) != 1) {
fd_stdout_race.cc 12 char buf; local
13 read(f, &buf, 1);
race_on_read.cc 9 char buf; variable
13 read(fd, &buf, 1);
18 read(fd, &buf, 1);
  /external/curl/docs/examples/
postit2-formadd.c 53 static const char buf[] = "Expect:"; local
82 headerlist = curl_slist_append(headerlist, buf);
postit2.c 53 static const char buf[] = "Expect:"; local
79 headerlist = curl_slist_append(headerlist, buf);
  /external/curl/tests/unit/
unit1398.c 32 char buf[3] = {'b', 'u', 'g'}; variable
40 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
51 rc = curl_msnprintf(output, 4, "%.*s", width, buf);
  /external/dhcpcd-6.8.2/crypt/
sha256.h 39 unsigned char buf[64]; member in struct:SHA256Context
  /external/dtc/tests/
appendprop2.c 43 void *fdt, *buf; local
50 buf = xmalloc(SPACE);
51 CHECK(fdt_open_into(fdt, buf, SPACE));
52 fdt = buf;
  /external/e2fsprogs/e2fsck/
badblocks.c 34 char buf[1024]; local
76 sprintf(buf, "badblocks -b %d -X %s%s%s %llu", fs->blocksize,
80 f = popen(buf, "r");
83 _("while trying popen '%s'"), buf);
  /external/e2fsprogs/lib/et/
et_name.c 22 static char buf[6]; variable
31 p = buf;
42 return(buf);
  /external/elfutils/libasm/
disasm_str.c 40 char *buf; member in struct:buffer
54 buffer->buf = mempcpy (buffer->buf, str, len);
66 struct buffer buffer = { .buf = *bufp, .len = len };
70 *bufp = buffer.buf;
  /external/fio/crc/
sha256.h 10 uint8_t *buf; member in struct:fio_sha256_ctx
sha512.h 7 uint8_t *buf; member in struct:fio_sha512_ctx
  /external/ipsec-tools/src/racoon/
logger.h 40 char **buf; member in struct:log
  /external/libbrillo/brillo/strings/
string_utils_unittest.cc 155 auto buf = string_utils::GetStringAsBytes(std::string{"\x80\0\1\xFF", 4}); local
156 ASSERT_EQ(4, buf.size());
157 EXPECT_EQ(128, buf[0]);
158 EXPECT_EQ(0, buf[1]);
159 EXPECT_EQ(1, buf[2]);
160 EXPECT_EQ(255, buf[3]);
  /external/libcups/cups/
md5-private.h 54 unsigned char buf[64]; /* accumulate block */ member in struct:_cups_md5_state_s
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.cons/
custom_alloc.pass.cpp 23 static char buf[10000]; local
25 return buf;
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.placement/
new.pass.cpp 25 char buf[sizeof(A)]; local
27 A* ap = new(buf) A;
28 assert((char*)ap == buf);
  /external/libcxx/test/std/re/re.alg/re.alg.replace/
test1.pass.cpp 35 char buf[100] = {0}; local
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
39 assert(r.base() == buf+40);
40 assert(buf == std::string("123-555-1234, 123-555-2345, 123-555-3456"));
47 char buf[100] = {0}; local
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
52 assert(r.base() == buf+43);
53 assert(buf == std::string("123-$555-1234, 123-$555-2345, 123-$555-3456"));
60 char buf[100] = {0}; local
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
73 char buf[100] = {0}; local
86 char buf[100] = {0}; local
99 char buf[100] = {0}; local
    [all...]
test2.pass.cpp 35 char buf[100] = {0}; local
36 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
39 assert(r.base() == buf+40);
40 assert(buf == std::string("123-555-1234, 123-555-2345, 123-555-3456"));
47 char buf[100] = {0}; local
48 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book)),
52 assert(r.base() == buf+43);
53 assert(buf == std::string("123-$555-1234, 123-$555-2345, 123-$555-3456"));
60 char buf[100] = {0}; local
61 Out r = std::regex_replace(Out(buf), Bi(std::begin(phone_book))
73 char buf[100] = {0}; local
86 char buf[100] = {0}; local
99 char buf[100] = {0}; local
    [all...]
  /external/libcxx/test/std/utilities/memory/ptr.align/
align.pass.cpp 20 char buf[N]; local
22 void* p = &buf[0];
25 assert(p == &buf[0]);
29 p = &buf[1];
32 assert(p == &buf[4]);
36 p = &buf[2];
39 assert(p == &buf[4]);
43 p = &buf[3];
46 assert(p == &buf[4]);
50 p = &buf[4]
    [all...]
  /external/libmicrohttpd/src/microhttpd/
md5.h 34 uint32_t buf[4]; member in struct:MD5Context
45 const void *buf,

Completed in 311 milliseconds

<<11121314151617181920>>