Home
last modified time | relevance | path

Searched refs:got (Results 1 – 25 of 560) sorted by relevance

12345678910>>...23

/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
DCipherInputStreamTest.java105 int got = cis.read(result); // the number of got bytes in testRead2() local
107 for (int j = 0; j < got - ind; j++) { in testRead2()
112 if (got == expected) { in testRead2()
114 } else if (got > expected) { in testRead2()
118 ind = got; in testRead2()
119 got += cis.read(result); in testRead2()
146 int got = skip + cis.read(result, 0, 1); // the number of got bytes in testRead3() local
148 for (int j = 0; j < got - ind; j++) { in testRead3()
152 if (got == expected) { in testRead3()
154 } else if (got > expected) { in testRead3()
[all …]
/external/e2fsprogs/contrib/
Dmake-sparse.c25 int got, total = 0; in full_read() local
29 got = read(fd, buf, count); in full_read()
30 if (got == -1) { in full_read()
35 if (got == 0) { in full_read()
41 buf += got; in full_read()
42 total += got; in full_read()
43 count -= got; in full_read()
50 int fd, got, i; in main() local
64 got = full_read(0, buf, sizeof(buf)); in main()
65 if (got == 0) in main()
[all …]
/external/llvm/test/MC/PowerPC/
Dppc64-fixup-explicit.s15 addi 4, 3, target@got
20 ld 1, target@got(2)
22 # CHECK: addis 3, 2, target@got@ha # encoding: [0x3c,0x62,A,A]
23 # CHECK-NEXT: # fixup A - offset: 2, value: target@got@ha, kind: fixup…
25 addis 3, 2, target@got@ha
27 # CHECK: addi 4, 3, target@got@l # encoding: [0x38,0x83,A,A]
28 # CHECK-NEXT: # fixup A - offset: 2, value: target@got@l, kind: fixup_…
30 addi 4, 3, target@got@l
32 # CHECK: addis 3, 2, target@got@h # encoding: [0x3c,0x62,A,A]
33 # CHECK-NEXT: # fixup A - offset: 2, value: target@got@h, kind: fixup_…
[all …]
Dppc64-fixups.s172 addi 4, 3, target@got
177 ld 1, target@got(2)
179 # CHECK: addis 3, 2, target@got@ha # encoding: [0x3c,0x62,A,A]
180 # CHECK-NEXT: # fixup A - offset: 2, value: target@got@ha, kind: fixup…
182 addis 3, 2, target@got@ha
184 # CHECK: addi 4, 3, target@got@l # encoding: [0x38,0x83,A,A]
185 # CHECK-NEXT: # fixup A - offset: 2, value: target@got@l, kind: fixup_…
187 addi 4, 3, target@got@l
189 # CHECK: addis 3, 2, target@got@h # encoding: [0x3c,0x62,A,A]
190 # CHECK-NEXT: # fixup A - offset: 2, value: target@got@h, kind: fixup_…
[all …]
/external/llvm/test/CodeGen/Mips/
Dhf16_1.ll168 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_1)(${{[0-9]+}})
171 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_2)(${{[0-9]+}})
174 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_5)(${{[0-9]+}})
177 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_6)(${{[0-9]+}})
180 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_10)(${{[0-9]+}})
183 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_0)(${{[0-9]+}})
186 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_1)(${{[0-9]+}})
189 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_2)(${{[0-9]+}})
192 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_5)(${{[0-9]+}})
195 ; 1: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_6)(${{[0-9]+}})
[all …]
Dfp16instrinsmc.ll91 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_1)(${{[0-9]+}})
105 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_df_2)(${{[0-9]+}})
119 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_1)(${{[0-9]+}})
133 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_df_2)(${{[0-9]+}})
147 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_1)(${{[0-9]+}})
161 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_df_2)(${{[0-9]+}})
175 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_1)(${{[0-9]+}})
189 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_df_2)(${{[0-9]+}})
203 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_sf_1)(${{[0-9]+}})
217 ;pic: lw ${{[0-9]+}}, %got(__mips16_call_stub_df_2)(${{[0-9]+}})
[all …]
/external/e2fsprogs/misc/
Dbadblocks.c329 long got; in do_read() local
347 got = read (dev, buffer, try * block_size); in do_read()
350 if (got < 0) in do_read()
351 got = 0; in do_read()
352 if (got & 511) in do_read()
353 fprintf(stderr, _("Weird value (%ld) in do_read\n"), got); in do_read()
354 got /= block_size; in do_read()
355 if (d_flag && got == try) { in do_read()
391 return got; in do_read()
401 long got; in do_write() local
[all …]
/external/e2fsprogs/util/
Dcopy_sparse.c67 int got, total = 0; in full_read() local
71 got = read(fd, buf, count); in full_read()
72 if (got == -1) { in full_read()
77 if (got == 0) { in full_read()
83 buf += got; in full_read()
84 total += got; in full_read()
85 count -= got; in full_read()
94 ssize_t got, got2; in copy_sparse_file() local
167 got = full_read(fd, buf, bs); in copy_sparse_file()
169 if (fd == 0 && got == 0) in copy_sparse_file()
[all …]
/external/valgrind/main/memcheck/tests/linux/
Dtimerfd-syscall.stderr.exp10 got timer ticks (1) after 0.5 s
13 got timer ticks (1) after 0.5 s
20 got about 20 timer ticks 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 about 20 timer ticks after about 2s
46 got timer ticks (1) after 0.1 s
/external/zlib/src/examples/
Denough.c206 big_t got; /* value returned from count() */ in count() local
221 got = num[index]; in count()
222 if (got) in count()
223 return got; /* we have -- return the saved result */ in count()
240 got = count(syms - use, len + 1, (left - use) << 1); in count()
241 sum += got; in count()
242 if (got == (big_t)0 - 1 || sum < got) /* overflow */ in count()
462 big_t got; /* return value of count() */ in main() local
536 got = count(n, 1, 2); in main()
537 sum += got; in main()
[all …]
/external/chromium_org/third_party/sqlite/src/tool/
Dshowjournal.c30 int got; in read_content() local
34 got = fread(pBuf, 1, N, db); in read_content()
35 if( got<0 ){ in read_content()
38 }else if( got<N ){ in read_content()
40 got, N, iOfst); in read_content()
41 memset(&pBuf[got], 0, N-got); in read_content()
/external/chromium_org/tools/telemetry/telemetry/unittest/
Dsimple_mock.py26 def VerifyEquals(self, got): argument
27 if self.name != got.name:
28 raise Exception('Self %s, got %s' % (repr(self), repr(got)))
29 if len(self.args) != len(got.args):
30 raise Exception('Self %s, got %s' % (repr(self), repr(got)))
33 got_a = got.args[i]
37 raise Exception('Self %s, got %s' % (repr(self), repr(got)))
/external/libppp/src/
Ddefs.c79 size_t got, total; in fullread() local
81 for (total = 0; total < n; total += got) in fullread()
82 switch ((got = read(fd, (char *)v + total, n - total))) { in fullread()
87 got = 0; in fullread()
124 int m, got, len; in Nam2mode() local
127 got = -1; in Nam2mode()
132 if (got != -1) in Nam2mode()
134 got = m; in Nam2mode()
137 return got == -1 ? 0 : modes[got].mode; in Nam2mode()
Dsig.c98 int got; in sig_Handle() local
107 got = 0; in sig_Handle()
111 got++; in sig_Handle()
115 } while (got); in sig_Handle()
/external/icu4c/test/intltest/
Dtransapi.cpp790 UnicodeString got, temp, message; in TestGetAdoptFilter() local
796 got = data; in TestGetAdoptFilter()
797 t->transliterate(got); in TestGetAdoptFilter()
800 doTest(message, got, exp); in TestGetAdoptFilter()
809 got = data; in TestGetAdoptFilter()
810 t->transliterate(got); in TestGetAdoptFilter()
813 doTest(message, got, exp); in TestGetAdoptFilter()
815 doTest("adoptFilter round trip", got, temp); in TestGetAdoptFilter()
821 got = data; in TestGetAdoptFilter()
822 t->transliterate(got); in TestGetAdoptFilter()
[all …]
/external/chromium_org/third_party/icu/source/test/intltest/
Dtransapi.cpp790 UnicodeString got, temp, message; in TestGetAdoptFilter() local
796 got = data; in TestGetAdoptFilter()
797 t->transliterate(got); in TestGetAdoptFilter()
800 doTest(message, got, exp); in TestGetAdoptFilter()
809 got = data; in TestGetAdoptFilter()
810 t->transliterate(got); in TestGetAdoptFilter()
813 doTest(message, got, exp); in TestGetAdoptFilter()
815 doTest("adoptFilter round trip", got, temp); in TestGetAdoptFilter()
821 got = data; in TestGetAdoptFilter()
822 t->transliterate(got); in TestGetAdoptFilter()
[all …]
/external/chromium_org/ppapi/native_client/tests/nacl_browser/fault_injection/
Dfault_pm_nameservice_test.cc45 size_t got; in dump_output() local
55 for (got = 0; got < nbytes; got += copied) { in dump_output()
56 copied = read(d, bytes.get() + got, nbytes - got); in dump_output()
62 printf("read(%d, ..., %u) -> %d\n", d, nbytes - got, copied); in dump_output()
66 for (size_t ix = 0; ix < got; ++ix) { in dump_output()
/external/chromium_org/ppapi/native_client/tests/nacl_browser/nameservice/
Dpm_nameservice_test.cc45 size_t got; in dump_output() local
55 for (got = 0; got < nbytes; got += copied) { in dump_output()
56 copied = read(d, bytes.get() + got, nbytes - got); in dump_output()
62 printf("read(%d, ..., %u) -> %d\n", d, nbytes - got, copied); in dump_output()
66 for (size_t ix = 0; ix < got; ++ix) { in dump_output()
/external/e2fsprogs/debugfs/
Ddump.c108 unsigned int got; in dump_file() local
119 retval = ext2fs_file_read(e2_file, buf, sizeof(buf), &got); in dump_file()
122 if (got == 0) in dump_file()
124 nbytes = write(fd, buf, got); in dump_file()
125 if ((unsigned) nbytes != got) in dump_file()
214 unsigned int got; in rdump_symlink() local
215 retval = ext2fs_file_read(e2_file, p, bytes, &got); in rdump_symlink()
220 bytes -= got; in rdump_symlink()
221 p += got; in rdump_symlink()
222 if (got == 0 || bytes == 0) in rdump_symlink()
/external/qemu/
Dalpha.ld28 .rel.got : { *(.rel.got) }
29 .rela.got : { *(.rela.got) }
75 .got : { *(.got.plt) *(.got) }
Darm.ld28 .rel.got : { *(.rel.got) }
29 .rela.got : { *(.rela.got) }
101 .got : { *(.got.plt) *(.got) }
Di386.ld30 .rel.got : { *(.rel.got) }
31 .rela.got : { *(.rela.got) }
101 .got : { *(.got.plt) *(.got) }
Di386-vl.ld31 .rel.got : { *(.rel.got) }
32 .rela.got : { *(.rela.got) }
88 .got : { *(.got.plt) *(.got) }
/external/compiler-rt/BlocksRuntime/tests/
Dfail.c83 char got[512]; in main() local
85 bool gotOutput = readfile(got, buffer); in main()
88 errorfile, got); in main()
92 char *where = strstr(got, desired); in main()
/external/chromium_org/chrome/test/pyautolib/
Dplugins_info.py81 got = filter(lambda x: x['path'] == path, self.Plugins())
82 if not got: return None
83 return got[0]

12345678910>>...23