HomeSort by relevance Sort by last modified time
    Searched defs:F2 (Results 1 - 25 of 266) sorted by null

1 2 3 4 5 6 7 8 91011

  /prebuilts/go/darwin-x86/test/dwarf/dwarf.dir/
z2.go 4 func F2() {}
  /prebuilts/go/linux-x86/test/dwarf/dwarf.dir/
z2.go 4 func F2() {}
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug481.go 16 func F2(s string) rune {
issue15013.go 15 return F2(), a[0]
20 func F2() int {
issue23522.go 28 func F2(f float64) *S {
40 s2 := F2(-1)
43 println("F2:", s2.u, s2.n)
issue4099.go 18 func F2([]byte)
25 F2(buf2[:]) // ERROR "buf2 escapes to heap"
issue4251.go 15 func F2(a [10]byte) []byte {
issue4283.go 15 func F2() bool {
  /prebuilts/go/darwin-x86/test/fixedbugs/bug492.dir/
a.go 14 func F2() s {
  /prebuilts/go/darwin-x86/test/fixedbugs/issue21120.dir/
b.go 21 func F2() string {
  /prebuilts/go/linux-x86/test/fixedbugs/
bug481.go 16 func F2(s string) rune {
issue15013.go 15 return F2(), a[0]
20 func F2() int {
issue23522.go 28 func F2(f float64) *S {
40 s2 := F2(-1)
43 println("F2:", s2.u, s2.n)
issue4099.go 18 func F2([]byte)
25 F2(buf2[:]) // ERROR "buf2 escapes to heap"
issue4251.go 15 func F2(a [10]byte) []byte {
issue4283.go 15 func F2() bool {
  /prebuilts/go/linux-x86/test/fixedbugs/bug492.dir/
a.go 14 func F2() s {
  /prebuilts/go/linux-x86/test/fixedbugs/issue21120.dir/
b.go 21 func F2() string {
  /external/clang/test/Lexer/
11-27-2007-FloatLiterals.c 11 float F2 = 01e-19f;
  /prebuilts/go/darwin-x86/test/
uintptrescapes2.go 21 func F2(a ...uintptr) {} // ERROR "escaping ...uintptr" "a does not escape"
30 F2(0, 1, uintptr(unsafe.Pointer(&v)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to F2: .?autotmp" "escapes to heap"
  /prebuilts/go/linux-x86/test/
uintptrescapes2.go 21 func F2(a ...uintptr) {} // ERROR "escaping ...uintptr" "a does not escape"
30 F2(0, 1, uintptr(unsafe.Pointer(&v)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to F2: .?autotmp" "escapes to heap"
  /external/libcxx/test/std/utilities/function.objects/arithmetic.operations/
divides.pass.cpp 29 typedef std::divides<> F2;
30 const F2 f2 = F2(); local
31 assert(f2(36, 4) == 9);
32 assert(f2(36.0, 4) == 9);
33 assert(f2(18, 4.0) == 4.5); // exact in binary
minus.pass.cpp 29 typedef std::minus<> F2;
30 const F2 f2 = F2(); local
31 assert(f2(3,2) == 1);
32 assert(f2(3.0, 2) == 1);
33 assert(f2(3, 2.5) == 0.5);
modulus.pass.cpp 29 typedef std::modulus<> F2;
30 const F2 f2 = F2(); local
31 assert(f2(36, 8) == 4);
32 assert(f2(36L, 8) == 4);
33 assert(f2(36, 8L) == 4);
multiplies.pass.cpp 29 typedef std::multiplies<> F2;
30 const F2 f2 = F2(); local
31 assert(f2(3,2) == 6);
32 assert(f2(3.0, 2) == 6);
33 assert(f2(3, 2.5) == 7.5); // exact in binary

Completed in 216 milliseconds

1 2 3 4 5 6 7 8 91011