HomeSort by relevance Sort by last modified time
    Searched refs:bufsz (Results 1 - 14 of 14) sorted by null

  /external/valgrind/main/coregrind/m_ume/
main.c 73 SizeT bufsz = 4096, fsz; local
100 if (fsz < bufsz)
101 bufsz = fsz;
103 res = VG_(pread)(fd, buf, bufsz, 0);
104 if (sr_isError(res) || sr_Res(res) != bufsz) {
108 bufsz = sr_Res(res);
112 if ((*exe_handlers[i].match_fn)(buf, bufsz)) {
  /external/kernel-headers/original/linux/
kexec.h 48 size_t bufsz; member in struct:kexec_segment
56 compat_size_t bufsz; member in struct:compat_kexec_segment
  /external/icu4c/extra/uconv/
uconv.cpp 537 bufsz(0), signature(0) {}
541 bufsz = bufferSize;
543 buf = new char[2 * bufsz];
544 outbuf = buf + bufsz;
547 fromoffsets = new int32_t[bufsz + 1];
572 size_t bufsz; member in class:ConvertFile
738 rd = fread(buf, 1, bufsz, infile);
758 flush = (UBool)(rd != bufsz);
765 unibuf = unibufp = u.getBuffer((int32_t)bufsz);
767 // Use bufsz instead of u.getCapacity() for the targetLimi
1101 size_t bufsz = DEFAULT_BUFSZ; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
run.c 457 int bufsz = recsize; local
460 if ((buf = (char *) malloc(bufsz)) == NULL)
468 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "array"))
507 int bufsz = recsize; local
509 if ((buf = (char *) malloc(bufsz)) == NULL)
515 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "awkdelete"))
535 int bufsz = recsize; local
547 if ((buf = (char *) malloc(bufsz)) == NULL) {
554 if (!adjbuf(&buf, &bufsz, strlen(buf)+strlen(s)+nsub+1, recsize, 0, "intest"))
947 int bufsz=3*recsize local
970 int bufsz=3*recsize; local
1751 int bufsz = recsize; local
1812 int bufsz = recsize; local
    [all...]
lex.c 362 static int bufsz = 500; local
364 if (buf == 0 && (buf = (char *) malloc(bufsz)) == NULL)
367 if (!adjbuf(&buf, &bufsz, bp-buf+2, 500, &bp, "string"))
508 static int bufsz = 500; local
511 if (buf == 0 && (buf = (char *) malloc(bufsz)) == NULL)
515 if (!adjbuf(&buf, &bufsz, bp-buf+3, 500, &bp, "regexpr"))
b.c 294 static int bufsz = 100; local
297 if (buf == 0 && (buf = (uschar *) malloc(bufsz)) == NULL)
315 if (!adjbuf((char **) &buf, &bufsz, bp-buf+2, 100, (char **) &bp, "cclenter1"))
323 if (!adjbuf((char **) &buf, &bufsz, bp-buf+2, 100, (char **) &bp, "cclenter2"))
771 static int bufsz = 100; local
795 if (buf == 0 && (buf = (uschar *) malloc(bufsz)) == NULL)
805 if (!adjbuf((char **) &buf, &bufsz, n, n, (char **) &bp, "relex1"))
824 if (!adjbuf((char **) &buf, &bufsz, bp-buf+1, 100, (char **) &bp, "relex2"))
  /external/qemu/distrib/sdl-1.2.12/src/cdrom/aix/
SDL_syscdrom.c 146 int bufsz; local
151 bufsz = 10;
161 ret = mntctl ( MCTL_QUERY, bufsz, buffer );
165 bufsz = *(int*)buffer; /* Required size is in first word. */
169 buffer = (char*)SDL_malloc(bufsz);
174 bufsz );
  /external/openssl/crypto/rand/
rand_os2.c 83 APIRET APIENTRY(*DosQuerySysState) (ULONG func, ULONG arg1, ULONG pid, ULONG _res_, PVOID buf, ULONG bufsz) = NULL;
rand_win.c 299 DWORD bufsz=0;
304 buf = realloc(buf,bufsz+8192);
307 bufsz += 8192;
309 length = bufsz;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 99 constexpr int bufsz = 1024; variable
  /ndk/sources/host-tools/make-3.81/
dir.c 1138 static unsigned int bufsz;
1149 if (sizeof *d - sizeof d->d_name + len > bufsz)
1153 bufsz *= 2;
1154 if (sizeof *d - sizeof d->d_name + len > bufsz)
1155 bufsz = sizeof *d - sizeof d->d_name + len;
1156 buf = xmalloc (bufsz);
1128 static unsigned int bufsz; local
  /external/libmtp/examples/
sendtr.c 64 static char *prompt (const char *prompt, char *buffer, size_t bufsz, int required)
70 if ( fgets(buffer, bufsz, stdin) == NULL ) {
  /external/openssh/
misc.c 626 read_keyfile_line(FILE *f, const char *filename, char *buf, size_t bufsz,
629 while (fgets(buf, bufsz, f) != NULL) {
  /external/chromium/third_party/libevent/
evdns.c 2916 DWORD bufsz = 0, type = 0; local
    [all...]

Completed in 641 milliseconds