HomeSort by relevance Sort by last modified time
    Searched refs:got (Results 26 - 50 of 3305) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
chan.go 29 if want, got := 3, lenChan_ssa(v); got != want {
30 fmt.Printf("expected len(chan) = %d, got %d", want, got)
38 if want, got := 0, lenChan_ssa(v); got != want {
39 fmt.Printf("expected len(nil) = %d, got %d", want, got)
48 if want, got := 25, capChan_ssa(v); got != want
    [all...]
cmp.go 23 if wanted, got := true, eq_ssa(6); wanted != got {
24 fmt.Printf("eq_ssa: expected %v, got %v\n", wanted, got)
27 if wanted, got := false, eq_ssa(7); wanted != got {
28 fmt.Printf("eq_ssa: expected %v, got %v\n", wanted, got)
32 if wanted, got := false, neq_ssa(6); wanted != got {
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
script_test_4.t 40 .got : { *(.got .toc) }
41 .got.plt : { *(.got.plt) }
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
nogot2.d 6 [ ]*\[.*\][ ]+.*\.got\.plt.*
pr19636-2a.d 4 #readelf : -r --wide -x .got -x .got.plt --dyn-syms
15 Hex dump of section '.got':
18 Hex dump of section '.got.plt':
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68k/
got-multigot-15-er.d 2 #ld: -shared --got=multigot
3 #error: .*GOT overflow.*
got-negative-15-er.d 2 #ld: -shared --got=negative
3 #error: .*GOT overflow.*
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
tls-hidden2-got.d 4 Contents of section \.got:
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
lea1i.d 8 [ ]*\[.*\][ ]+.*\.got .*
nogot2.d 6 [ ]*\[.*\][ ]+.*\.got\.plt.*
  /external/autotest/utils/
gslib_unittest.py 18 got = gslib.escape('foo[]*?#')
19 self.assertEqual(got, 'foo%5b%5d%2a%3f%23')
23 got = gslib.escape('foo\x88')
24 self.assertEqual(got, 'foo%88')
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue10925.go 13 var got [][]string
15 f = func(ss []string) { got = append(got, ss) }
19 if got[0][0] != "one" || got[1][0] != "two" || got[2][0] != "three" {
21 fmt.Println("Expected [[one] [two] [three]], got", got)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue10925.go 13 var got [][]string
15 f = func(ss []string) { got = append(got, ss) }
19 if got[0][0] != "one" || got[1][0] != "two" || got[2][0] != "three" {
21 fmt.Println("Expected [[one] [two] [three]], got", got)
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
vk_layer_data.h 28 typename std::unordered_map<void *, DATA_T *>::const_iterator got; local
31 got = layer_data_map.find(data_key);
33 if (got == layer_data_map.end()) {
37 debug_data = got->second;
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
gc-relocs-309.s 6 ldr x1, :got:sym309_notused
gc-relocs-311.s 5 adrp x3,:got:gempy
  /build/soong/ui/build/
environment_test.go 26 got := initial.Environ()
27 if len(got) != 1 || got[0] != "TEST2=0" {
28 t.Errorf("Expected [TEST2=0], got: %v", got)
35 got := initial.Environ()
36 if len(got) != 1 || got[0] != "TEST2=0" {
37 t.Errorf("Expected [TEST2=0], got: %v", got)
    [all...]
  /external/e2fsprogs/contrib/
make-sparse.c 29 int got, total = 0; local
33 got = read(fd, buf, count);
34 if (got == -1) {
39 if (got == 0) {
45 buf += got;
46 total += got;
47 count -= got;
54 int fd, got, i; local
68 got = full_read(0, buf, sizeof(buf));
69 if (got == 0
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
intrinsics_test.go 11 if got := sys.Ctz64(x); got != i {
12 t.Errorf("Ctz64(%d)=%d, want %d", x, got, i)
19 if got := sys.Ctz32(x); got != i {
20 t.Errorf("Ctz32(%d)=%d, want %d", x, got, i)
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
intrinsics_test.go 11 if got := sys.Ctz64(x); got != i {
12 t.Errorf("Ctz64(%d)=%d, want %d", x, got, i)
19 if got := sys.Ctz32(x); got != i {
20 t.Errorf("Ctz32(%d)=%d, want %d", x, got, i)
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
dlltool.exp 90 set got [binutils_run $NM "tmpdir/libalias.a"]
97 if [regexp $want $got] then {
103 set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias.a"]
106 if [regexp $want $got] then {
124 set got [binutils_run $NM "tmpdir/libalias2.a"]
131 if [regexp $want $got] then {
137 set got [binutils_run $OBJDUMP "-s -j .idata\$6 tmpdir/libalias2.a"]
140 if [regexp $want $got] then {
171 set got [binutils_run $NM "tmpdir/libalias_nu.a"]
174 if [regexp $want $got] then
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/
mixed-mode-reloc.s 5 movl xtrn@got(%ebx), %eax
10 movl xtrn@got(%ebx), %eax
15 movq xtrn@got(%rbx), %rax
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/
binutils.exp 76 set got [remote_exec host "$READELF $readelf_options --wide tmpdir/$test" "" "/dev/null" "tmpdir/$test.exp"]
77 if { [lindex $got 0] != 0 || ![string match "" [lindex $got 1]] } then {
78 send_log "$got\n"
85 set got [remote_exec host "grep GNU_RELRO tmpdir/$test.exp"]
86 if { ![string match "*GNU_RELRO*" $got] } then {
87 set got [remote_exec host "cat tmpdir/$test.exp"]
88 if { [string match "*.data.rel.ro*" $got]
89 || [string match "*.dynamic*" $got]
90 || [string match "*.got*" $got
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
compound.go 26 if want, got := a, string_ssa(a, b, true); got != want {
27 fmt.Printf("string_ssa(%v, %v, true) = %v, want %v\n", a, b, got, want)
30 if want, got := b, string_ssa(a, b, false); got != want {
31 fmt.Printf("string_ssa(%v, %v, false) = %v, want %v\n", a, b, got, want)
62 if want, got := a, complex64_ssa(a, b, true); got != want {
63 fmt.Printf("complex64_ssa(%v, %v, true) = %v, want %v\n", a, b, got, want)
66 if want, got := b, complex64_ssa(a, b, false); got != want
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
rewrite_test.go 15 if got := nto(x); got != i {
16 t.Errorf("expected nto(0x%X) = %d, got %d", x, i, got)
18 if got := nlz(x); got != 64-i {
19 t.Errorf("expected nlz(0x%X) = %d, got %d", x, 64-i, got)
34 if got := nto(tx); got != ntoExp
    [all...]

Completed in 523 milliseconds

12 3 4 5 6 7 8 91011>>