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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue9076.go 14 var _ int32 = 100/unsafe.Sizeof(int(0)) + 1 // GC_ERROR "100 \/ unsafe.Sizeof\(int\(0\)\) \+ 1"
15 var _ int32 = Hundred/unsafe.Sizeof(int(0)) + 1 // GC_ERROR "Hundred \/ unsafe.Sizeof\(int\(0\)\) \+ 1"
bug239.go 15 println(Sizeof(x))
20 bug239.go:15: undefined: Sizeof
bug339.go 16 size := unsafe.Sizeof(a)
17 if size != 2*unsafe.Sizeof((*int)(nil)) {
issue12944.go 12 _ = unsafe.Sizeof([0]byte{}[0]) // ERROR "out of bounds"
issue17270.go 11 const _ = (unsafe.Sizeof)(0)
bug279.go 14 n := unsafe.Sizeof(0)
16 println("BUG sizeof 0", n)
25 n = unsafe.Sizeof("")
27 println("BUG sizeof \"\"", n)
bug240.go 13 println(unsafe.Sizeof(x)) // ERROR "undefined"
  /prebuilts/go/linux-x86/test/fixedbugs/
issue9076.go 14 var _ int32 = 100/unsafe.Sizeof(int(0)) + 1 // GC_ERROR "100 \/ unsafe.Sizeof\(int\(0\)\) \+ 1"
15 var _ int32 = Hundred/unsafe.Sizeof(int(0)) + 1 // GC_ERROR "Hundred \/ unsafe.Sizeof\(int\(0\)\) \+ 1"
bug239.go 15 println(Sizeof(x))
20 bug239.go:15: undefined: Sizeof
bug339.go 16 size := unsafe.Sizeof(a)
17 if size != 2*unsafe.Sizeof((*int)(nil)) {
issue12944.go 12 _ = unsafe.Sizeof([0]byte{}[0]) // ERROR "out of bounds"
issue17270.go 11 const _ = (unsafe.Sizeof)(0)
bug279.go 14 n := unsafe.Sizeof(0)
16 println("BUG sizeof 0", n)
25 n = unsafe.Sizeof("")
27 println("BUG sizeof \"\"", n)
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue11925.go 31 if C.sizeof_struct_a11925 != unsafe.Sizeof(C.struct_a11925{}) {
32 t.Errorf("size of a changed: C %d, Go %d", C.sizeof_struct_a11925, unsafe.Sizeof(C.struct_a11925{}))
34 if C.sizeof_struct_b11925 != unsafe.Sizeof(C.struct_b11925{}) {
35 t.Errorf("size of b changed: C %d, Go %d", C.sizeof_struct_b11925, unsafe.Sizeof(C.struct_b11925{}))
  /prebuilts/go/linux-x86/misc/cgo/test/
issue11925.go 31 if C.sizeof_struct_a11925 != unsafe.Sizeof(C.struct_a11925{}) {
32 t.Errorf("size of a changed: C %d, Go %d", C.sizeof_struct_a11925, unsafe.Sizeof(C.struct_a11925{}))
34 if C.sizeof_struct_b11925 != unsafe.Sizeof(C.struct_b11925{}) {
35 t.Errorf("size of b changed: C %d, Go %d", C.sizeof_struct_b11925, unsafe.Sizeof(C.struct_b11925{}))
  /prebuilts/go/darwin-x86/test/fixedbugs/bug479.dir/
a.go 11 const C = unsafe.Sizeof(S2{})
  /prebuilts/go/linux-x86/test/fixedbugs/bug479.dir/
a.go 11 const C = unsafe.Sizeof(S2{})
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
stubs.go 9 const PtrSize = 4 << (^uintptr(0) >> 63) // unsafe.Sizeof(uintptr(0)) but an ideal const
10 const RegSize = 4 << (^Uintreg(0) >> 63) // unsafe.Sizeof(uintreg(0)) but an ideal const
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
stubs.go 9 const PtrSize = 4 << (^uintptr(0) >> 63) // unsafe.Sizeof(uintptr(0)) but an ideal const
10 const RegSize = 4 << (^Uintreg(0) >> 63) // unsafe.Sizeof(uintreg(0)) but an ideal const
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
sizeof_test.go 18 const _64bit = unsafe.Sizeof(uintptr(0)) == 8
38 t.Errorf("unsafe.Sizeof(%T) = %d, want %d", tt.val, got, want)
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
sizeof_test.go 18 const _64bit = unsafe.Sizeof(uintptr(0)) == 8
38 t.Errorf("unsafe.Sizeof(%T) = %d, want %d", tt.val, got, want)
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
sizeof_test.go 18 const _64bit = unsafe.Sizeof(uintptr(0)) == 8
37 t.Errorf("unsafe.Sizeof(%T) = %d, want %d", tt.val, got, want)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
sizeof_test.go 18 const _64bit = unsafe.Sizeof(uintptr(0)) == 8
38 t.Errorf("unsafe.Sizeof(%T) = %d, want %d", tt.val, got, want)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
sizeof_test.go 18 const _64bit = unsafe.Sizeof(uintptr(0)) == 8
38 t.Errorf("unsafe.Sizeof(%T) = %d, want %d", tt.val, got, want)
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
sizeof_test.go 18 const _64bit = unsafe.Sizeof(uintptr(0)) == 8
37 t.Errorf("unsafe.Sizeof(%T) = %d, want %d", tt.val, got, want)

Completed in 1472 milliseconds

1 2 3 4 5 6 7 8 91011>>