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

  /frameworks/base/media/jni/
android_media_MediaDataSource.cpp 83 jint numread = env->CallIntMethod(mMediaDataSourceObj, mReadMethod, local
92 if (numread < 0) {
93 if (numread != -1) {
98 // numread == -1 indicates EOF
102 if ((size_t)numread > size) {
108 ALOGV("readAt %lld / %zu => %d.", (long long)offset, size, numread);
109 env->GetByteArrayRegion(mByteArrayObj, 0, numread, (jbyte*)mMemory->pointer());
110 return numread;
  /external/svox/PicoLangInstallerDeuDeu/src/com/svox/pico/voice/deu/deu/
InstallerActivity.java 94 int numread = 0; local
96 numread = zis.read(buf);
97 if (numread <= 0) {
100 out.write(buf, 0, numread);
  /external/svox/PicoLangInstallerEngGbr/src/com/svox/pico/voice/eng/gbr/
InstallerActivity.java 94 int numread = 0; local
96 numread = zis.read(buf);
97 if (numread <= 0) {
100 out.write(buf, 0, numread);
  /external/svox/PicoLangInstallerEngUsa/src/com/svox/pico/voice/eng/usa/
InstallerActivity.java 94 int numread = 0; local
96 numread = zis.read(buf);
97 if (numread <= 0) {
100 out.write(buf, 0, numread);
  /external/svox/PicoLangInstallerFraFra/src/com/svox/pico/voice/fra/fra/
InstallerActivity.java 94 int numread = 0; local
96 numread = zis.read(buf);
97 if (numread <= 0) {
100 out.write(buf, 0, numread);
  /external/svox/PicoLangInstallerItaIta/src/com/svox/pico/voice/ita/ita/
InstallerActivity.java 94 int numread = 0; local
96 numread = zis.read(buf);
97 if (numread <= 0) {
100 out.write(buf, 0, numread);
  /external/svox/PicoLangInstallerSpaEsp/src/com/svox/pico/voice/spa/esp/
InstallerActivity.java 94 int numread = 0; local
96 numread = zis.read(buf);
97 if (numread <= 0) {
100 out.write(buf, 0, numread);
  /external/svox/picolanginstaller/src/com/svox/langpack/installer/
InstallerActivity.java 95 int numread = 0; local
97 numread = zis.read(buf);
98 if (numread <= 0) {
101 out.write(buf, 0, numread);
  /external/libevent/
arc4random.c 127 size_t numread = 0; local
130 while (numread < count) {
131 result = read(fd, buf+numread, count-numread);
136 numread += result;
139 return (ssize_t)numread;
  /external/libvncserver/test/
bmp.c 113 int numread=0, totalread=0, pixel[3], i, j; local
125 if((numread=sscanf(temps, "%d %d %d", w, h, &scalefactor))==EOF)
129 if((numread=sscanf(temps, "%d %d", h, &scalefactor))==EOF)
133 if((numread=sscanf(temps, "%d", &scalefactor))==EOF)
137 totalread+=numread;
  /external/sonivox/arm-wt-22k/host_src/
eas_hostmm.c 322 EAS_I32 numread; local
323 return EAS_HWReadFile(hwInstData, file, p, 1, &numread);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
itertoolsmodule.c 332 int numread; member in struct:__anon5513
355 tdo->numread = 0;
378 if (i < tdo->numread)
382 assert(i == tdo->numread);
386 tdo->numread++;
398 for (i = 0; i < tdo->numread; i++)
424 for (i=0 ; i<tdo->numread ; i++)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
itertoolsmodule.c 332 int numread; member in struct:__anon5848
355 tdo->numread = 0;
378 if (i < tdo->numread)
382 assert(i == tdo->numread);
386 tdo->numread++;
398 for (i = 0; i < tdo->numread; i++)
409 for (i=0 ; i<tdo->numread ; i++)
    [all...]
  /external/python/cpython2/Modules/
itertoolsmodule.c 330 int numread; member in struct:__anon30347
353 tdo->numread = 0;
376 if (i < tdo->numread)
380 assert(i == tdo->numread);
384 tdo->numread++;
396 for (i = 0; i < tdo->numread; i++)
422 for (i=0 ; i<tdo->numread ; i++)
    [all...]

Completed in 258 milliseconds