Home
last modified time | relevance | path

Searched refs:bufsz (Results 1 – 6 of 6) sorted by relevance

/external/icu4c/extra/uconv/
Duconv.cpp563 bufsz(0), signature(0) {} in ConvertFile()
567 bufsz = bufferSize; in setBufferSize()
569 buf = new char[2 * bufsz]; in setBufferSize()
570 outbuf = buf + bufsz; in setBufferSize()
573 fromoffsets = new int32_t[bufsz + 1]; in setBufferSize()
598 size_t bufsz; member in ConvertFile
764 rd = fread(buf, 1, bufsz, infile); in convertFile()
784 flush = (UBool)(rd != bufsz); in convertFile()
791 unibuf = unibufp = u.getBuffer((int32_t)bufsz); in convertFile()
795 ucnv_toUnicode(convfrom, &unibufp, unibuf + bufsz, &cbufp, in convertFile()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/cdrom/aix/
DSDL_syscdrom.c146 int bufsz; in CheckMounts() local
151 bufsz = 10; in CheckMounts()
161 ret = mntctl ( MCTL_QUERY, bufsz, buffer ); in CheckMounts()
165 bufsz = *(int*)buffer; /* Required size is in first word. */ in CheckMounts()
169 buffer = (char*)SDL_malloc(bufsz); in CheckMounts()
174 bufsz ); in CheckMounts()
/external/kernel-headers/original/linux/
Dkexec.h48 size_t bufsz; member
56 compat_size_t bufsz; member
/external/openssl/crypto/rand/
Drand_win.c299 DWORD bufsz=0; in RAND_poll()
304 buf = realloc(buf,bufsz+8192); in RAND_poll()
307 bufsz += 8192; in RAND_poll()
309 length = bufsz; in RAND_poll()
Drand_os2.c83 …*DosQuerySysState) (ULONG func, ULONG arg1, ULONG pid, ULONG _res_, PVOID buf, ULONG bufsz) = NULL;
/external/chromium/third_party/libevent/
Devdns.c2916 DWORD bufsz = 0, type = 0; in config_nameserver_from_reg_key() local
2919 if (RegQueryValueEx(key, subkey, 0, &type, NULL, &bufsz) in config_nameserver_from_reg_key()
2922 if (!(buf = malloc(bufsz))) in config_nameserver_from_reg_key()
2925 if (RegQueryValueEx(key, subkey, 0, &type, (LPBYTE)buf, &bufsz) in config_nameserver_from_reg_key()
2926 == ERROR_SUCCESS && bufsz > 1) { in config_nameserver_from_reg_key()