Home
last modified time | relevance | path

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

12345678910>>...33

/external/autotest/frontend/afe/
Drpc_utils_unittest.py62 got = rpc_utils._convert_to_kwargs_only(func, (1, 2), {})
63 self.assertEquals(got, {'a': 1, 'b': 2})
69 got = rpc_utils._convert_to_kwargs_only(func, (), {'a': 1, 'b': 2})
70 self.assertEquals(got, {'a': 1, 'b': 2})
76 got = rpc_utils._convert_to_kwargs_only(func, (1, 2), {'c': 3})
77 self.assertEquals(got, {'a': 1, 'b': 2, 'c': 3})
83 got = rpc_utils._convert_to_kwargs_only(func, (1,), {'b': 2, 'c': 3})
84 self.assertEquals(got, {'a': 1, 'b': 2, 'c': 3})
90 got = rpc_utils._convert_to_kwargs_only(func, (1, 2), {})
91 self.assertEquals(got, {'a': 1, 'b': 2})
[all …]
/external/llvm/test/MC/Mips/
Dmacro-la-pic.s9 la $5, symbol # CHECK: lw $5, %got(symbol)($gp) # encoding: [0x8f,0x85,A,A]
10 …# CHECK: # fixup A - offset: 0, value: %got(symbol), kind: fixup_Mip…
11 la $5, symbol($6) # CHECK: lw $5, %got(symbol)($gp) # encoding: [0x8f,0x85,A,A]
12 …# CHECK: # fixup A - offset: 0, value: %got(symbol), kind: fixup_Mip…
14 la $6, symbol($6) # CHECK: lw $1, %got(symbol)($gp) # encoding: [0x8f,0x81,A,A]
15 …# CHECK: # fixup A - offset: 0, value: %got(symbol), kind: fixup_Mip…
17 la $5, symbol+8 # CHECK: lw $5, %got(symbol+8)($gp) # encoding: [0x8f,0x85,A,A]
18 …# CHECK: # fixup A - offset: 0, value: %got(symbol+8), kind: fixup_M…
19 la $5, symbol+8($6) # CHECK: lw $5, %got(symbol+8)($gp) # encoding: [0x8f,0x85,A,A]
20 …# CHECK: # fixup A - offset: 0, value: %got(symbol+8), kind: fixup_M…
[all …]
Delf-relsym.s47 lw $2, %got($.str)($1)
49 lw $3, %got(gc1)($1)
51 lw $2, %got($.str1)($1)
53 lw $3, %got(gc2)($1)
55 lw $2, %got($CPI0_0)($1)
57 lw $2, %got(gd1)($1)
59 lw $3, %got($CPI0_1)($1)
61 lw $1, %got(gd2)($1)
/external/e2fsprogs/contrib/
Dmake-sparse.c29 int got, total = 0; in full_read() local
33 got = read(fd, buf, count); in full_read()
34 if (got == -1) { in full_read()
39 if (got == 0) { in full_read()
45 buf += got; in full_read()
46 total += got; in full_read()
47 count -= got; in full_read()
54 int fd, got, i; in main() local
68 got = full_read(0, buf, sizeof(buf)); in main()
69 if (got == 0) in main()
[all …]
/external/llvm/test/MC/PowerPC/
Dppc64-fixup-explicit.s21 addi 4, 3, target@got
29 ld 1, target@got(2)
31 # CHECK-BE: addis 3, 2, target@got@ha # encoding: [0x3c,0x62,A,A]
32 # CHECK-LE: addis 3, 2, target@got@ha # encoding: [A,A,0x62,0x3c]
33 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@ha, kind: fi…
34 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@got@ha, kind: fi…
37 addis 3, 2, target@got@ha
39 # CHECK-BE: addi 4, 3, target@got@l # encoding: [0x38,0x83,A,A]
40 # CHECK-LE: addi 4, 3, target@got@l # encoding: [A,A,0x83,0x38]
41 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@l, kind: fix…
[all …]
Dppc64-fixups.s274 addi 4, 3, target@got
282 ld 1, target@got(2)
284 # CHECK-BE: addis 3, 2, target@got@ha # encoding: [0x3c,0x62,A,A]
285 # CHECK-LE: addis 3, 2, target@got@ha # encoding: [A,A,0x62,0x3c]
286 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@ha, kind: fi…
287 # CHECK-LE-NEXT: # fixup A - offset: 0, value: target@got@ha, kind: fi…
290 addis 3, 2, target@got@ha
292 # CHECK-BE: addi 4, 3, target@got@l # encoding: [0x38,0x83,A,A]
293 # CHECK-LE: addi 4, 3, target@got@l # encoding: [A,A,0x83,0x38]
294 # CHECK-BE-NEXT: # fixup A - offset: 2, value: target@got@l, kind: fix…
[all …]
/external/protobuf/examples/
Dadd_person_test.go25 got, err := promptForAddress(strings.NewReader(in))
29 if got.Id != 12345 {
30 t.Errorf("promptForAddress(%q) got %d, want ID %d", in, got.Id, 12345)
32 if got.Name != "Example Name" {
33 t.Errorf("promptForAddress(%q) => want name %q, got %q", "Example Name", got.Name)
35 if got.Email != "name@example.com" {
36 t.Errorf("promptForAddress(%q) => want email %q, got %q", "name@example.com", got.Email)
45 if len(got.Phones) != len(want) {
46 t.Errorf("want %d phone numbers, got %d", len(want), len(got.Phones))
48 phones := len(got.Phones)
[all …]
Dlist_people_test.go24 got := buf.String()
30 if got != want {
31 t.Errorf("writePerson(%s) =>\n\t%q, want %q", p.String(), got, want)
97 got := strings.Split(buf.String(), "\n")
98 if len(got) != len(want) {
103 len(got),
106 lines := len(got)
111 if got[i] != want[i] {
116 got[i],
/external/flatbuffers/tests/
Dgo_test.go146 if got := monster.Hp(); 80 != got {
147 fail(FailString("hp", 80, got))
151 if got := monster.Mana(); 150 != got {
152 fail(FailString("mana", 150, got))
155 if got := monster.Name(); !bytes.Equal([]byte("MyMonster"), got) {
156 fail(FailString("name", "MyMonster", got))
173 if got := vec.X(); float32(1.0) != got {
174 fail(FailString("Pos.X", float32(1.0), got))
177 if got := vec.Y(); float32(2.0) != got {
178 fail(FailString("Pos.Y", float32(2.0), got))
[all …]
/external/e2fsprogs/misc/
Dbadblocks.c361 long got; in do_read() local
383 got = read (dev, buffer, try * block_size); in do_read()
386 if (got < 0) in do_read()
387 got = 0; in do_read()
388 if (got & 511) in do_read()
389 fprintf(stderr, _("Weird value (%ld) in do_read\n"), got); in do_read()
390 got /= block_size; in do_read()
391 if (d_flag && got == try) { in do_read()
427 return got; in do_read()
437 long got; in do_write() local
[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 …]
/external/autotest/utils/
Dlabellib_unittest.py30 got = labellib.parse_keyval_label('pool:suites')
31 self.assertEqual(got, labellib.KeyvalLabel('pool', 'suites'))
34 got = labellib.parse_keyval_label('pool:suites:penthouse')
35 self.assertEqual(got, labellib.KeyvalLabel('pool', 'suites:penthouse'))
42 got = labellib.format_keyval_label(
44 self.assertEqual(got, 'pool:suites')
47 got = labellib.format_keyval_label(
49 self.assertEqual(got, 'pool:suites:penthouse')
148 got = labellib.parse_cros_version('lumpy-release/R27-3773.0.0')
149 self.assertEqual(got, labellib.CrosVersion('lumpy-release', 'lumpy',
[all …]
/external/python/cpython2/Lib/test/
Dtest_popen2.py64 got = r.read()
65 self.assertEqual(expected_out, got.strip(), "wrote %r read %r" %
66 (teststr, got))
69 got = e.read()
70 self.assertFalse(got, "unexpected %r on stderr" % got)
91 got = r.read()
92 self.assertEqual(got, self.teststr + "\n")
104 got = r.read()
105 self.assertEqual(got, self.teststr + "\n")
106 got = e.read()
[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/deqp/modules/egl/
DteglApiCase.cpp107 void ApiCase::expectBoolean (EGLBoolean expected, EGLBoolean got) in expectBoolean() argument
109 if (expected != got) in expectBoolean()
111 …d: " << eglu::getBooleanStr(expected) << ", Got: " << eglu::getBooleanStr(got) << TestLog::EndMes… in expectBoolean()
117 void ApiCase::expectNoContext (EGLContext got) in expectNoContext() argument
119 if (got != EGL_NO_CONTEXT) in expectNoContext()
124 eglDestroyContext(getDisplay(), got); in expectNoContext()
128 void ApiCase::expectNoSurface (EGLSurface got) in expectNoSurface() argument
130 if (got != EGL_NO_SURFACE) in expectNoSurface()
135 eglDestroySurface(getDisplay(), got); in expectNoSurface()
139 void ApiCase::expectNoDisplay (EGLDisplay got) in expectNoDisplay() argument
[all …]
DteglApiCase.hpp55 void expectBoolean (eglw::EGLBoolean expected, eglw::EGLBoolean got);
57 void expectNoContext (eglw::EGLContext got);
58 void expectNoSurface (eglw::EGLSurface got);
59 void expectNoDisplay (eglw::EGLDisplay got);
60 void expectNull (const void* got);
62 inline void expectTrue (eglw::EGLBoolean got) { expectBoolean(EGL_TRUE, got); } in expectTrue() argument
63 inline void expectFalse (eglw::EGLBoolean got) { expectBoolean(EGL_FALSE, got); } in expectFalse() argument
/external/autotest/server/hosts/
Dhost_info_unittest.py212 got = self.store.get()
213 self._verify_host_info_data(got, ['label1'], {'attrib1': 'val1'})
219 got = self.store.get()
220 self._verify_host_info_data(got, ['label1'], {'attrib1': 'val1'})
223 got = self.store.get()
224 self._verify_host_info_data(got, ['label1'], {'attrib1': 'val1'})
230 got = self.store.get(force_refresh=True)
231 self._verify_host_info_data(got, ['label1'], {'attrib1': 'val1'})
234 got = self.store.get(force_refresh=True)
235 self._verify_host_info_data(got, ['label1', 'label2'], {})
[all …]
Dshadowing_store_unittest.py54 got = store.get(force_refresh=True)
55 self.assertEqual(got, init_info)
63 got = store.get(force_refresh=True)
64 self.assertEqual(got, init_info)
79 got = store.get(force_refresh=True)
80 self.assertEqual(got, p_info)
96 got = store.get(force_refresh=True)
97 self.assertEqual(got, p_info)
99 self.assertEqual(got, shadow.get())
101 got = store.get(force_refresh=True)
[all …]
Dcros_host_unittest.py16 got = cros_host.CrosHost.get_chameleon_arguments({
20 self.assertEqual(got, {'chameleon_host': 'host'})
23 got = cros_host.CrosHost.get_plankton_arguments({
27 self.assertEqual(got, {'plankton_host': 'host'})
30 got = cros_host.CrosHost.get_servo_arguments({
34 self.assertEqual(got, {servo_host.SERVO_HOST_ATTR: 'host'})
/external/llvm/test/CodeGen/Mips/msa/
D3r-a.ll28 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_add_a_b_ARG1)
29 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_add_a_b_ARG2)
33 ; CHECK-DAG: lw [[R3:\$[0-9]+]], %got(llvm_mips_add_a_b_RES)
53 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_add_a_h_ARG1)
54 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_add_a_h_ARG2)
58 ; CHECK-DAG: lw [[R3:\$[0-9]+]], %got(llvm_mips_add_a_h_RES)
78 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_add_a_w_ARG1)
79 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_add_a_w_ARG2)
83 ; CHECK-DAG: lw [[R3:\$[0-9]+]], %got(llvm_mips_add_a_w_RES)
103 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_add_a_d_ARG1)
[all …]
D2rf.ll20 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_flog2_w_ARG1)
23 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_flog2_w_RES)
41 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_flog2_d_ARG1)
44 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_flog2_d_RES)
59 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_flog2_w_ARG1)
62 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_flog2_w_RES)
77 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_flog2_d_ARG1)
80 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_flog2_d_RES)
98 ; CHECK-DAG: lw [[R1:\$[0-9]+]], %got(llvm_mips_frint_w_ARG1)
101 ; CHECK-DAG: lw [[R2:\$[0-9]+]], %got(llvm_mips_frint_w_RES)
[all …]
/external/llvm/test/CodeGen/Mips/Fast-ISel/
Dlogopm.ll36 ; CHECK-DAG: lw $[[UB_ADDR:[0-9]+]], %got(ub)($[[REG_GP]])
37 ; CHECK-DAG: lw $[[UB2_ADDR:[0-9]+]], %got(ub2)($[[REG_GP]])
38 ; CHECK-DAG: lw $[[UB1_ADDR:[0-9]+]], %got(ub1)($[[REG_GP]])
59 ; CHECK-DAG: lw $[[UB_ADDR:[0-9]+]], %got(ub)($[[REG_GP]])
60 ; CHECK-DAG: lw $[[UB1_ADDR:[0-9]+]], %got(ub1)($[[REG_GP]])
82 ; CHECK-DAG: lw $[[UB_ADDR:[0-9]+]], %got(ub)($[[REG_GP]])
84 ; CHECK-DAG: lw $[[UB1_ADDR:[0-9]+]], %got(ub1)($[[REG_GP]])
107 ; CHECK-DAG: lw $[[UB_ADDR:[0-9]+]], %got(ub)($[[REG_GP]])
108 ; CHECK-DAG: lw $[[UB2_ADDR:[0-9]+]], %got(ub2)($[[REG_GP]])
109 ; CHECK-DAG: lw $[[UB1_ADDR:[0-9]+]], %got(ub1)($[[REG_GP]])
[all …]
Dshftopm.ll23 ; CHECK-DAG: lw $[[S3_ADDR:[0-9]+]], %got(s3)($[[REG_GP]])
24 ; CHECK-DAG: lw $[[S2_ADDR:[0-9]+]], %got(s2)($[[REG_GP]])
25 ; CHECK-DAG: lw $[[S1_ADDR:[0-9]+]], %got(s1)($[[REG_GP]])
42 ; CHECK-DAG: lw $[[S3_ADDR:[0-9]+]], %got(s3)($[[REG_GP]])
43 ; CHECK-DAG: lw $[[S1_ADDR:[0-9]+]], %got(s1)($[[REG_GP]])
61 ; CHECK-DAG: lw $[[US3_ADDR:[0-9]+]], %got(us3)($[[REG_GP]])
62 ; CHECK-DAG: lw $[[US2_ADDR:[0-9]+]], %got(us2)($[[REG_GP]])
63 ; CHECK-DAG: lw $[[US1_ADDR:[0-9]+]], %got(us1)($[[REG_GP]])
79 ; CHECK-DAG: lw $[[US3_ADDR:[0-9]+]], %got(us3)($[[REG_GP]])
80 ; CHECK-DAG: lw $[[US1_ADDR:[0-9]+]], %got(us1)($[[REG_GP]])
[all …]
Dfpcmpa.ll19 ; CHECK-DAG: lw $[[REG_F2_GOT:[0-9]+]], %got(f2)(${{[0-9]+}})
20 ; CHECK-DAG: lw $[[REG_F1_GOT:[0-9]+]], %got(f1)(${{[0-9]+}})
40 ; CHECK-DAG: lw $[[REG_F2_GOT:[0-9]+]], %got(f2)(${{[0-9]+}})
41 ; CHECK-DAG: lw $[[REG_F1_GOT:[0-9]+]], %got(f1)(${{[0-9]+}})
60 ; CHECK-DAG: lw $[[REG_F2_GOT:[0-9]+]], %got(f2)(${{[0-9]+}})
61 ; CHECK-DAG: lw $[[REG_F1_GOT:[0-9]+]], %got(f1)(${{[0-9]+}})
81 ; CHECK-DAG: lw $[[REG_F2_GOT:[0-9]+]], %got(f2)(${{[0-9]+}})
82 ; CHECK-DAG: lw $[[REG_F1_GOT:[0-9]+]], %got(f1)(${{[0-9]+}})
101 ; CHECK-DAG: lw $[[REG_F2_GOT:[0-9]+]], %got(f2)(${{[0-9]+}})
102 ; CHECK-DAG: lw $[[REG_F1_GOT:[0-9]+]], %got(f1)(${{[0-9]+}})
[all …]
/external/valgrind/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

12345678910>>...33