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

1 2 34 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
map.go 24 if want, got := 3, lenMap_ssa(v); got != want {
25 fmt.Printf("expected len(map) = %d, got %d", want, got)
33 if want, got := 0, lenMap_ssa(v); got != want {
34 fmt.Printf("expected len(nil) = %d, got %d", want, got)
regalloc.go 24 got := phiOverwrite_ssa()
25 if got != want {
26 println("phiOverwrite_ssa()=", want, ", got", got)
42 got := phiOverwriteBig_ssa()
43 if got != want {
44 println("phiOverwriteBig_ssa()=", want, ", got", got)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
map.go 24 if want, got := 3, lenMap_ssa(v); got != want {
25 fmt.Printf("expected len(map) = %d, got %d", want, got)
33 if want, got := 0, lenMap_ssa(v); got != want {
34 fmt.Printf("expected len(nil) = %d, got %d", want, got)
regalloc.go 24 got := phiOverwrite_ssa()
25 if got != want {
26 println("phiOverwrite_ssa()=", want, ", got", got)
42 got := phiOverwriteBig_ssa()
43 if got != want {
44 println("phiOverwriteBig_ssa()=", want, ", got", got)
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/arm/
objdump.exp 48 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble --start-address=6 $objfile"]
52 if [regexp $want $got] then {
58 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS --disassemble --start-address=10 $objfile"]
62 if [regexp $want $got] then {
84 set got [binutils_run $OBJDUMP "-dr $objfile $objfile"]
88 if [regexp $want $got] then {
106 set got [binutils_run $OBJDUMP "-D $objfile $objfile"]
110 if [regexp $want $got] then {
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-i386/
pr20244-1b.d 4 #objdump: -s -j .got
9 Contents of section .got:
pr20244-2b.d 4 #objdump: -s -j .got.plt
9 Contents of section .got.plt:
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mips-elf/
got-page-1.d 1 #name: GOT page test 1
2 #source: got-page-1.s
3 #ld: -T got-page-1.ld -shared
got-page-3a.s 2 lw $5,%got(\sym\@)($gp)
9 lw $4,%got(foo+0x120000)($gp)
13 lw $4,%got(foo-0x8000)($gp)
15 lw $4,%got(foo+0x800)($gp)
19 lw $4,%got(foo-0x1000000)($gp)
21 lw $4,%got(foo-0xffffff)($gp)
25 lw $4,%got(foo+0x120000)($gp)
29 lw $4,%got(bar)($gp)
31 lw $4,%got(bar+0x20000)($gp)
33 lw $4,%got(bar+0x40000)($gp
    [all...]
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-powerpc/
tlsopt5.s 3 addi 3,2,gd@got@tlsgd
tlsopt5_32.s 3 addi 3,13,gd@got@tlsgd
tocnovar.d 13 +01 +\.opd \.got
14 +02 +\.opd \.got
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/
compress.exp 47 set got [remote_exec host "cmp ${testfile}.o ${compressedfile}gnu.o"]
49 set exec_output [lindex $got 1]
72 set got [binutils_run $AR "rc ${libfile}.a ${compressedfile}.o ${compressedfile2}.o ${compressedfile3}.o"]
73 if ![string match "" $got] then {
79 set got [binutils_run $OBJCOPY "--compress-debug-sections ${testfile}.o ${copyfile}.o"]
80 if ![string match "" $got] then {
101 set got [binutils_run $OBJCOPY "--decompress-debug-sections ${compressedfile}.o ${copyfile}.o"]
102 if ![string match "" $got] then {
123 set got [binutils_run $OBJCOPY "--decompress-debug-sections ${libfile}.a ${copyfile}.a"]
124 if ![string match "" $got] then
    [all...]
objdump.exp 34 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -i"]
55 if [regexp $want $got] then {
75 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -f $testfile"]
79 if ![regexp $want $got] then {
87 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -h $testfile"]
91 if ![regexp $want $got all text_name text_size data_name data_size] then {
118 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -t $testfile"]
121 while {[regexp "(\[a-z\]*_symbol)(.*)" $got all symbol rest]} {
123 set got $rest
137 set got [binutils_run $OBJDUMP "$OBJDUMPFLAGS -r $testfile"
    [all...]
  /external/tensorflow/tensorflow/go/
operation_test.go 48 if got, want := op.Name(), "my_placeholder"; got != want {
49 t.Errorf("Got '%s', want '%s'", got, want)
51 if got, want := op.Type(), "Placeholder"; got != want {
52 t.Errorf("Got '%s', want '%s'", got, want)
78 if got, want := n, 2; got != want
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
sqrt_test.go 20 got := new(Float).SetPrec(53)
21 got.Sqrt(NewFloat(r))
23 if got.Cmp(want) != 0 {
24 t.Fatalf("Sqrt(%g) =\n got %g;\nwant %g", r, got, want)
56 got := new(Float).SetPrec(prec).Sqrt(x)
59 if got.Cmp(want) != 0 {
61 prec, test.x, got, want)
65 // If got holds the square root of x to precision p, then
66 // got = ?x +
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
sqrt_test.go 20 got := new(Float).SetPrec(53)
21 got.Sqrt(NewFloat(r))
23 if got.Cmp(want) != 0 {
24 t.Fatalf("Sqrt(%g) =\n got %g;\nwant %g", r, got, want)
56 got := new(Float).SetPrec(prec).Sqrt(x)
59 if got.Cmp(want) != 0 {
61 prec, test.x, got, want)
65 // If got holds the square root of x to precision p, then
66 // got = ?x +
    [all...]
  /external/autotest/server/site_tests/enterprise_CFM_HuddlyUpdater/
parse_unittest.py 32 got = parse.parse_fw_vers(chunk)
33 self.assertDictEqual(want, got)
  /external/llvm/test/MC/AArch64/
elf-reloc-pcreladdressing.s 7 adrp x5, :got:some_label
  /external/valgrind/none/tests/x86-linux/
seg_override.stdout.exp 2 got 65536 bytes
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue20266.go 18 if got, want := C.issue20266, 20266; got != want {
19 t.Errorf("got %d, want %d", got, want)
  /prebuilts/go/darwin-x86/src/runtime/
numcpu_freebsd_test.go 10 got := runTestProg(t, "testprog", "FreeBSDNumCPU")
12 if got != want {
13 t.Fatalf("expected %q, but got:\n%s", want, got)
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue21963.go 24 if got, want := f(x[:], &y), int32(-5); got != want {
25 panic(fmt.Sprintf("wanted %d, got %d", want, got))
  /prebuilts/go/linux-x86/misc/cgo/test/
issue20266.go 18 if got, want := C.issue20266, 20266; got != want {
19 t.Errorf("got %d, want %d", got, want)
  /prebuilts/go/linux-x86/src/runtime/
numcpu_freebsd_test.go 10 got := runTestProg(t, "testprog", "FreeBSDNumCPU")
12 if got != want {
13 t.Fatalf("expected %q, but got:\n%s", want, got)

Completed in 1689 milliseconds

1 2 34 5 6 7 8 91011>>