HomeSort by relevance Sort by last modified time
    Searched refs:got (Results 1 - 25 of 381) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/contrib/
make-sparse.c 25 int got, total = 0; local
29 got = read(fd, buf, count);
30 if (got == -1) {
35 if (got == 0) {
41 buf += got;
42 total += got;
43 count -= got;
50 int fd, got, i; local
64 got = full_read(0, buf, sizeof(buf));
65 if (got == 0
    [all...]
  /external/valgrind/main/none/tests/x86-linux/
seg_override.stdout.exp 2 got 65536 bytes
  /external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
CipherInputStreamTest.java 83 + data[i] + ", Got: " + res + ".");
104 int ind = 0; // index into the data array (to check the got data)
105 int got = cis.read(result); // the number of got bytes local
107 for (int j = 0; j < got - ind; j++) {
112 if (got == expected) {
114 } else if (got > expected) {
118 ind = got;
119 got += cis.read(result);
143 int ind = skip; // index into the data array (to check the got data
146 int got = skip + cis.read(result, 0, 1); \/\/ the number of got bytes local
181 int got = skipped + cis.read(result, 0, 1); \/\/ the number of got bytes local
    [all...]
  /external/valgrind/main/none/tests/
pending.stdout.exp 4 4: got signal SIGUSR1
  /external/e2fsprogs/util/
copy_sparse.c 67 int got, total = 0; local
71 got = read(fd, buf, count);
72 if (got == -1) {
77 if (got == 0) {
83 buf += got;
84 total += got;
85 count -= got;
94 ssize_t got, got2; local
167 got = full_read(fd, buf, bs);
169 if (fd == 0 && got == 0
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 92 + data[i] + ", Got: " + res + ".");
113 int ind = 0; // index into the data array (to check the got data)
114 int got = cis.read(result); // the number of got bytes local
116 for (int j = 0; j < got - ind; j++) {
121 if (got == expected) {
123 } else if (got > expected) {
127 ind = got;
128 got += cis.read(result);
152 int ind = skip; // index into the data array (to check the got data
155 int got = skip + cis.read(result, 0, 1); \/\/ the number of got bytes local
190 int got = skipped + cis.read(result, 0, 1); \/\/ the number of got bytes local
    [all...]
  /prebuilt/darwin-x86/toolchain/i686-android-linux-4.4.3/i686-android-linux/lib/ldscripts/
i386linux.xr 24 *(.got)
i386linux.xu 24 *(.got)
i386linux.x 29 *(.got)
i386linux.xbn 29 *(.got)
i386linux.xn 29 *(.got)
  /prebuilt/linux-x86/toolchain/i686-android-linux-4.4.3/i686-android-linux/lib/ldscripts/
i386linux.xr 24 *(.got)
i386linux.xu 24 *(.got)
i386linux.x 29 *(.got)
i386linux.xbn 29 *(.got)
i386linux.xn 29 *(.got)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/lib/ldscripts/
i386linux.xr 24 *(.got)
i386linux.xu 24 *(.got)
i386linux.x 29 *(.got)
i386linux.xbn 29 *(.got)
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/i686-unknown-linux-gnu/lib/ldscripts/
i386linux.xr 24 *(.got)
i386linux.xu 24 *(.got)
  /external/icu4c/test/intltest/
dcfmapts.h 32 void verify(const UnicodeString& message, const UnicodeString& got, double expected);
  /external/valgrind/main/memcheck/tests/linux/
timerfd-syscall.stderr.exp 10 got timer ticks (1) after 0.5 s
13 got timer ticks (1) after 0.5 s
20 got timer ticks (20) after about 2s
23 got timer ticks (1) after 0.1 s
33 got timer ticks (1) after 0.5 s
36 got timer ticks (1) after 0.5 s
43 got timer ticks (20) after about 2s
46 got timer ticks (1) after 0.1 s
  /external/e2fsprogs/misc/
badblocks.c 326 long got; local
344 got = read (dev, buffer, try * block_size);
347 if (got < 0)
348 got = 0;
349 if (got & 511)
350 fprintf(stderr, _("Weird value (%ld) in do_read\n"), got);
351 got /= block_size;
352 if (d_flag && got == try) {
388 return got;
398 long got; local
437 int got; local
553 int i, try, got, nr_pattern, pat_idx; local
697 int got, used2, written; local
    [all...]

Completed in 233 milliseconds

1 2 3 4 5 6 7 8 91011>>