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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vetpkg/
b.go 6 fmt.Printf("%d")
c.go 8 fmt.Printf("%d", 3, 4)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetpkg/
b.go 6 fmt.Printf("%d")
c.go 8 fmt.Printf("%d", 3, 4)
  /prebuilts/go/darwin-x86/src/math/bits/
example_test.go 15 fmt.Printf("LeadingZeros8(%08b) = %d\n", 1, bits.LeadingZeros8(1))
21 fmt.Printf("LeadingZeros16(%016b) = %d\n", 1, bits.LeadingZeros16(1))
27 fmt.Printf("LeadingZeros32(%032b) = %d\n", 1, bits.LeadingZeros32(1))
33 fmt.Printf("LeadingZeros64(%064b) = %d\n", 1, bits.LeadingZeros64(1))
39 fmt.Printf("TrailingZeros8(%08b) = %d\n", 14, bits.TrailingZeros8(14))
45 fmt.Printf("TrailingZeros16(%016b) = %d\n", 14, bits.TrailingZeros16(14))
51 fmt.Printf("TrailingZeros32(%032b) = %d\n", 14, bits.TrailingZeros32(14))
57 fmt.Printf("TrailingZeros64(%064b) = %d\n", 14, bits.TrailingZeros64(14))
63 fmt.Printf("OnesCount8(%08b) = %d\n", 14, bits.OnesCount8(14))
69 fmt.Printf("OnesCount16(%016b) = %d\n", 14, bits.OnesCount16(14)
    [all...]
  /prebuilts/go/linux-x86/src/math/bits/
example_test.go 15 fmt.Printf("LeadingZeros8(%08b) = %d\n", 1, bits.LeadingZeros8(1))
21 fmt.Printf("LeadingZeros16(%016b) = %d\n", 1, bits.LeadingZeros16(1))
27 fmt.Printf("LeadingZeros32(%032b) = %d\n", 1, bits.LeadingZeros32(1))
33 fmt.Printf("LeadingZeros64(%064b) = %d\n", 1, bits.LeadingZeros64(1))
39 fmt.Printf("TrailingZeros8(%08b) = %d\n", 14, bits.TrailingZeros8(14))
45 fmt.Printf("TrailingZeros16(%016b) = %d\n", 14, bits.TrailingZeros16(14))
51 fmt.Printf("TrailingZeros32(%032b) = %d\n", 14, bits.TrailingZeros32(14))
57 fmt.Printf("TrailingZeros64(%064b) = %d\n", 14, bits.TrailingZeros64(14))
63 fmt.Printf("OnesCount8(%08b) = %d\n", 14, bits.OnesCount8(14))
69 fmt.Printf("OnesCount16(%016b) = %d\n", 14, bits.OnesCount16(14)
    [all...]
  /prebuilts/go/darwin-x86/src/math/
example_test.go 13 fmt.Printf("%.2f", math.Acos(1))
18 fmt.Printf("%.2f", math.Acosh(1))
23 fmt.Printf("%.2f", math.Asin(0))
28 fmt.Printf("%.2f", math.Asinh(0))
33 fmt.Printf("%.2f", math.Atan(0))
38 fmt.Printf("%.2f", math.Atan2(0, 0))
43 fmt.Printf("%.2f", math.Atanh(0))
48 fmt.Printf("%.2f", math.Cos(math.Pi/2))
53 fmt.Printf("%.2f", math.Cosh(0))
58 fmt.Printf("%.2f", math.Sin(math.Pi)
    [all...]
  /prebuilts/go/linux-x86/src/math/
example_test.go 13 fmt.Printf("%.2f", math.Acos(1))
18 fmt.Printf("%.2f", math.Acosh(1))
23 fmt.Printf("%.2f", math.Asin(0))
28 fmt.Printf("%.2f", math.Asinh(0))
33 fmt.Printf("%.2f", math.Atan(0))
38 fmt.Printf("%.2f", math.Atan2(0, 0))
43 fmt.Printf("%.2f", math.Atanh(0))
48 fmt.Printf("%.2f", math.Cos(math.Pi/2))
53 fmt.Printf("%.2f", math.Cosh(0))
58 fmt.Printf("%.2f", math.Sin(math.Pi)
    [all...]
  /external/clang/test/SemaCXX/
printf-cstr.cpp 6 extern int printf(const char *restrict, ...);
33 printf("%d: %s\n", n, hcs.c_str());
34 printf("%d: %s\n", n, hcs); // expected-warning{{cannot pass non-POD object of type 'HasCStr' to variadic function; expected type from format string was 'char *'}} expected-note{{did you mean to call the c_str() method?}}
35 printf("%d: %s\n", n, hncs); // expected-warning{{cannot pass non-POD object of type 'HasNoCStr' to variadic function; expected type from format string was 'char *'}}
38 printf(formatString, hcs, hncs); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}} expected-warning{{cannot pass object of non-POD type 'HasNoCStr' through variadic function}}
39 printf(extstr, hcs, n); // expected-warning{{cannot pass object of non-POD type 'HasCStr' through variadic function}}
42 struct Printf {
43 Printf();
44 Printf(const Printf&)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
print.go 5 // This file contains tests for the printf checker.
21 // For testing printf-like functions from external package.
27 fmt.Printf("%p, %x %X", up, up, up)
70 fmt.Printf("")
71 fmt.Printf("%b %b %b", 3, i, x)
72 fmt.Printf("%c %c %c %c", 3, i, 'x', r)
73 fmt.Printf("%d %d %d", 3, i, imap)
74 fmt.Printf("%e %e %e %e", 3e9, x, fslice, c)
75 fmt.Printf("%E %E %E %E", 3e9, x, fslice, c)
76 fmt.Printf("%f %f %f %f", 3e9, x, fslice, c
333 func printf(format string, args ...interface{}) { func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
print.go 5 // This file contains tests for the printf checker.
21 // For testing printf-like functions from external package.
27 fmt.Printf("%p, %x %X", up, up, up)
70 fmt.Printf("")
71 fmt.Printf("%b %b %b", 3, i, x)
72 fmt.Printf("%c %c %c %c", 3, i, 'x', r)
73 fmt.Printf("%d %d %d", 3, i, imap)
74 fmt.Printf("%e %e %e %e", 3e9, x, fslice, c)
75 fmt.Printf("%E %E %E %E", 3e9, x, fslice, c)
76 fmt.Printf("%f %f %f %f", 3e9, x, fslice, c
333 func printf(format string, args ...interface{}) { func
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_report.cc 124 Printf(" [failed to restore the stack]\n\n");
133 Printf("%s\n", res.data());
135 Printf("\n");
141 Printf(" (mutexes:");
143 Printf(" %s M%llu", m.write ? "write" : "read", m.id);
144 Printf(i == mset.Size() - 1 ? ")" : ",");
158 Printf("%s", d.Access());
159 Printf(" %s of size %d at %p by %s",
164 Printf(":\n");
165 Printf("%s", d.EndAccess())
    [all...]
  /external/tensorflow/tensorflow/stream_executor/lib/
stringprintf.h 25 using tensorflow::strings::Printf;
  /prebuilts/go/darwin-x86/test/
divide.go 15 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
19 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
26 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
30 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
37 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
41 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
48 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
52 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
strength.go 16 fmt.Printf("func %s(s int%d) {\n", n, bits)
20 fmt.Printf(` if want, got := int%d(%d), s*%d; want != got {
22 fmt.Printf("got %d * %%d == %%d, wanted %d\n", s, got)
28 fmt.Printf("}\n")
33 fmt.Printf("package main\n")
34 fmt.Printf("import \"fmt\"\n")
35 fmt.Printf("var failed = false\n")
40 fmt.Printf("func main() {\n")
43 fmt.Printf("if failed {\n panic(\"multiplication failed\")\n}\n")
44 fmt.Printf("}\n"
    [all...]
  /prebuilts/go/linux-x86/test/
divide.go 15 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
19 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
26 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
30 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
37 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
41 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
48 fmt.Printf("%d/%d = %d, want %d\n", x, y, t, q)
52 fmt.Printf("%d%%%d = %d, want %d\n", x, y, t, r)
strength.go 16 fmt.Printf("func %s(s int%d) {\n", n, bits)
20 fmt.Printf(` if want, got := int%d(%d), s*%d; want != got {
22 fmt.Printf("got %d * %%d == %%d, wanted %d\n", s, got)
28 fmt.Printf("}\n")
33 fmt.Printf("package main\n")
34 fmt.Printf("import \"fmt\"\n")
35 fmt.Printf("var failed = false\n")
40 fmt.Printf("func main() {\n")
43 fmt.Printf("if failed {\n panic(\"multiplication failed\")\n}\n")
44 fmt.Printf("}\n"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
arithConst.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
arithConst.go     [all...]
  /external/compiler-rt/lib/msan/
msan_report.cc 45 Printf("%s", d.Origin());
46 Printf(
68 Printf(" %sUninitialized value was stored to memory at%s\n", d.Origin(),
80 Printf(" %sUninitialized value was created by a heap allocation%s\n",
84 Printf(" %sUninitialized value was created by a heap deallocation%s\n",
88 Printf(" %sMemory was marked as uninitialized%s\n", d.Origin(),
92 Printf(" %sUninitialized value was created%s\n", d.Origin(), d.End());
105 Printf("%s", d.Warning());
107 Printf("%s", d.End());
118 Printf("WARNING: Expected use of uninitialized value not found\n")
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vend/hello/
hello.go 9 fmt.Printf("%s\n", strings.Msg)
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/vetfail/p1/
p1.go 6 fmt.Printf("%d", "hello") // causes vet error
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vend/hello/
hello.go 9 fmt.Printf("%s\n", strings.Msg)
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/vetfail/p1/
p1.go 6 fmt.Printf("%d", "hello") // causes vet error
  /external/llvm/lib/Fuzzer/
FuzzerExtFunctionsDlsym.cpp 29 Printf("WARNING: Failed to find function \"%s\".", FnName);
31 Printf(" Reason %s.", ErrorMsg);
32 Printf("\n");

Completed in 508 milliseconds

1 2 3 4 5 6 7 8 91011>>