HomeSort by relevance Sort by last modified time
    Searched refs:buf (Results 226 - 250 of 13174) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Demangle/
Demangle.h 16 /// The mangled_name is demangled into buf and returned. If the buffer is not
26 char *itaniumDemangle(const char *mangled_name, char *buf, size_t *n,
  /toolchain/binutils/binutils-2.27/gold/
nacl.cc 39 char* buf = NULL; local
40 if (vasprintf(&buf, format, args) < 0)
43 gold_error(_("%s: %s"), this->file_.filename().c_str(), buf);
44 free(buf);
  /external/valgrind/none/tests/s390x/
mvcl.c 146 print_buf(const char *prefix, char *buf, uint32_t len)
153 putchar(buf[i]);
174 uint8_t byte, buf[10], small[5], i; local
183 run_test(NULL, 0, buf, sizeof buf, 0x00);
184 run_test(NULL, 0, buf, sizeof buf, 0xFF);
189 memset(buf, 'x', sizeof buf);
190 run_test(buf, sizeof buf, NULL, 0, 'a')
    [all...]
  /external/compiler-rt/test/sanitizer_common/TestCases/Posix/
getpass.cc 23 char buf[1024]; local
24 int res = read(master, buf, sizeof(buf));
25 write(1, buf, res);
27 while ((res = read(master, buf, sizeof(buf))) > 0) write(1, buf, res);
  /external/conscrypt/platform/src/main/java/org/conscrypt/
Hex.java 35 char[] buf = new char[bytes.length * 2]; local
38 buf[c++] = DIGITS[(b >> 4) & 0xf];
39 buf[c++] = DIGITS[b & 0xf];
41 return new String(buf);
46 char[] buf = new char[bufLen]; local
50 buf[--cursor] = DIGITS[i & 0xf];
53 return new String(buf, cursor, bufLen - cursor);
  /external/libgsm/src/
toast_alaw.c 317 int alaw_input P1((buf), gsm_signal * buf)
321 for (i = 0; i < 160 && (c = fgetc(in)) != EOF; i++) buf[i] = A2S( c );
326 int alaw_output P1((buf), gsm_signal * buf)
330 for (i = 0; i < 160; i++, buf++)
331 if (fputc( S2A( *buf ), out) == EOF) return -1;
toast_ulaw.c     [all...]
  /external/strace/tests/
netlink_kobject_uevent.c 43 char *const buf = tail_alloc(DEFAULT_STRLEN + 1); local
44 buf[0] = '=';
45 fill_memory_ex(buf + 1, DEFAULT_STRLEN, 0, DEFAULT_STRLEN);
47 rc = sendto(fd, buf + 1, DEFAULT_STRLEN, MSG_DONTWAIT, NULL, 0);
49 print_quoted_memory(buf + 1, DEFAULT_STRLEN);
53 rc = sendto(fd, buf, DEFAULT_STRLEN + 1, MSG_DONTWAIT, NULL, 0);
55 print_quoted_memory(buf, DEFAULT_STRLEN);
uio.c 42 char buf[4]; local
43 struct iovec iov = { buf, sizeof(buf) };
47 assert(pread(0, buf, sizeof(buf), offset) == 4);
52 assert(pwrite(0, buf, sizeof(buf), offset) == 4);
  /external/strace/tests-m32/
netlink_kobject_uevent.c 43 char *const buf = tail_alloc(DEFAULT_STRLEN + 1); local
44 buf[0] = '=';
45 fill_memory_ex(buf + 1, DEFAULT_STRLEN, 0, DEFAULT_STRLEN);
47 rc = sendto(fd, buf + 1, DEFAULT_STRLEN, MSG_DONTWAIT, NULL, 0);
49 print_quoted_memory(buf + 1, DEFAULT_STRLEN);
53 rc = sendto(fd, buf, DEFAULT_STRLEN + 1, MSG_DONTWAIT, NULL, 0);
55 print_quoted_memory(buf, DEFAULT_STRLEN);
uio.c 42 char buf[4]; local
43 struct iovec iov = { buf, sizeof(buf) };
47 assert(pread(0, buf, sizeof(buf), offset) == 4);
52 assert(pwrite(0, buf, sizeof(buf), offset) == 4);
  /external/strace/tests-mx32/
netlink_kobject_uevent.c 43 char *const buf = tail_alloc(DEFAULT_STRLEN + 1); local
44 buf[0] = '=';
45 fill_memory_ex(buf + 1, DEFAULT_STRLEN, 0, DEFAULT_STRLEN);
47 rc = sendto(fd, buf + 1, DEFAULT_STRLEN, MSG_DONTWAIT, NULL, 0);
49 print_quoted_memory(buf + 1, DEFAULT_STRLEN);
53 rc = sendto(fd, buf, DEFAULT_STRLEN + 1, MSG_DONTWAIT, NULL, 0);
55 print_quoted_memory(buf, DEFAULT_STRLEN);
uio.c 42 char buf[4]; local
43 struct iovec iov = { buf, sizeof(buf) };
47 assert(pread(0, buf, sizeof(buf), offset) == 4);
52 assert(pwrite(0, buf, sizeof(buf), offset) == 4);

Completed in 601 milliseconds

1 2 3 4 5 6 7 8 91011>>