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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
arithConst.go     [all...]
arith.go 61 if want, got := uint64(0x7ffffffffffffff), rshNop1(allSet); want != got {
62 println("testShiftRemoval rshNop1 failed, wanted", want, "got", got)
65 if want, got := uint64(0x3ffffffffffffff), rshNop2(allSet); want != got {
66 println("testShiftRemoval rshNop2 failed, wanted", want, "got", got)
69 if want, got := uint64(0x7fffffffffffff), rshNop3(allSet); want != got {
    [all...]
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...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
arithConst.go     [all...]
arith.go 61 if want, got := uint64(0x7ffffffffffffff), rshNop1(allSet); want != got {
62 println("testShiftRemoval rshNop1 failed, wanted", want, "got", got)
65 if want, got := uint64(0x3ffffffffffffff), rshNop2(allSet); want != got {
66 println("testShiftRemoval rshNop2 failed, wanted", want, "got", got)
69 if want, got := uint64(0x7fffffffffffff), rshNop3(allSet); want != got {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
truncconst_test.go 16 if got := f52 - 1; got != f52want {
17 t.Errorf("f52-1 = %g, want %g", got, f52want)
19 if got := float64(f52) - 1; got != f52want {
20 t.Errorf("float64(f52)-1 = %g, want %g", got, f52want)
22 if got := f53 - 1; got != f53want {
23 t.Errorf("f53-1 = %g, want %g", got, f53want)
25 if got := float64(f53) - 1; got != 0
    [all...]
iface_test.go 20 if got := i.(int); got != 5 {
21 t.Errorf("wanted 5, got %d\n", got)
30 if got := i.(int); got != 5 {
31 t.Errorf("wanted 5, got %d\n", got)
37 if got := e2int3(x); got != 5
    [all...]
shift_test.go 303 if got := ofz64l64(5); got != 0 {
304 t.Errorf("0<<5 == %d, want 0", got)
306 if got := ofz64l32(5); got != 0 {
307 t.Errorf("0<<5 == %d, want 0", got)
309 if got := ofz64l16(5); got != 0 {
310 t.Errorf("0<<5 == %d, want 0", got)
312 if got := ofz64l8(5); got != 0
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
truncconst_test.go 16 if got := f52 - 1; got != f52want {
17 t.Errorf("f52-1 = %g, want %g", got, f52want)
19 if got := float64(f52) - 1; got != f52want {
20 t.Errorf("float64(f52)-1 = %g, want %g", got, f52want)
22 if got := f53 - 1; got != f53want {
23 t.Errorf("f53-1 = %g, want %g", got, f53want)
25 if got := float64(f53) - 1; got != 0
    [all...]
iface_test.go 20 if got := i.(int); got != 5 {
21 t.Errorf("wanted 5, got %d\n", got)
30 if got := i.(int); got != 5 {
31 t.Errorf("wanted 5, got %d\n", got)
37 if got := e2int3(x); got != 5
    [all...]
shift_test.go 303 if got := ofz64l64(5); got != 0 {
304 t.Errorf("0<<5 == %d, want 0", got)
306 if got := ofz64l32(5); got != 0 {
307 t.Errorf("0<<5 == %d, want 0", got)
309 if got := ofz64l16(5); got != 0 {
310 t.Errorf("0<<5 == %d, want 0", got)
312 if got := ofz64l8(5); got != 0
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
pr14215.s 1 .section .got
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
multi-got-hidden-1.d 1 #name: MIPS multi-got-hidden-1
3 #source: multi-got-1-1.s
4 #source: multi-got-1-2.s
5 #source: multi-got-hidden-1.s
multi-got-hidden-2.d 1 #name: MIPS multi-got-hidden-2
3 #source: multi-got-1-1.s
4 #source: multi-got-hidden-2.s
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/
pr14215.s 1 .section .got
  /prebuilts/go/darwin-x86/src/unicode/
graphic_test.go 17 got := IsControl(i)
25 if got != want {
26 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
33 got := IsLetter(i)
35 if got != want {
36 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
43 got := IsUpper(i)
45 if got != want
    [all...]
  /prebuilts/go/linux-x86/src/unicode/
graphic_test.go 17 got := IsControl(i)
25 if got != want {
26 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
33 got := IsLetter(i)
35 if got != want {
36 t.Errorf("%U incorrect: got %t; want %t", i, got, want)
43 got := IsUpper(i)
45 if got != want
    [all...]
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue18720.go 30 if got, want := C.HELLO_WORLD, "hello\000world"; got != want {
31 t.Errorf("C.HELLO_WORLD == %q, expected %q", got, want)
34 if got, want := C.VAR1, C.int(5); got != want {
35 t.Errorf("C.VAR1 == %v, expected %v", got, want)
38 if got, want := *C.ADDR, C.int(5); got != want {
39 t.Errorf("*C.ADDR == %v, expected %v", got, want)
42 if got, want := C.CALL, C.int(6); got != want
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/test/
issue18720.go 30 if got, want := C.HELLO_WORLD, "hello\000world"; got != want {
31 t.Errorf("C.HELLO_WORLD == %q, expected %q", got, want)
34 if got, want := C.VAR1, C.int(5); got != want {
35 t.Errorf("C.VAR1 == %v, expected %v", got, want)
38 if got, want := *C.ADDR, C.int(5); got != want {
39 t.Errorf("*C.ADDR == %v, expected %v", got, want)
42 if got, want := C.CALL, C.int(6); got != want
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
aarch64.ld 15 .got : { *(.got) *(.got.plt)}
relocs.ld 15 .got : { *(.got) *(.got.plt)}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-tic6x/
unwind.ld 16 .got : { *(.got) *(.got.plt)}
  /external/protobuf/examples/
add_person_test.go 25 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
    [all...]
  /external/vulkan-validation-layers/layers/
vk_layer_data.h 31 typename std::unordered_map<void *, DATA_T *>::const_iterator got; local
34 got = layer_data_map.find(data_key);
36 if (got == layer_data_map.end()) {
40 debug_data = got->second;
48 auto got = layer_data_map.find(data_key); local
49 assert(got != layer_data_map.end());
51 delete got->second;
52 layer_data_map.erase(got);

Completed in 526 milliseconds

1 2 3 4 5 6 7 8 91011>>