HomeSort by relevance Sort by last modified time
    Searched refs:AppendFloat (Results 1 - 21 of 21) sorted by null

  /prebuilts/go/darwin-x86/src/strconv/
strconv_test.go 28 {0, `AppendFloat(localBuf[:0], 1.23, 'g', 5, 64)`, func() {
30 AppendFloat(localBuf[:0], 1.23, 'g', 5, 64)
32 {0, `AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64)`, func() { AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64) }},
ftoa_test.go 140 x := AppendFloat([]byte("abc"), test.f, test.fmt, test.prec, 64)
142 t.Error("AppendFloat testN=64", test.f, string(test.fmt), test.prec, "want", "abc"+test.s, "got", string(x))
149 x := AppendFloat([]byte("abc"), test.f, test.fmt, test.prec, 32)
151 t.Error("AppendFloat testN=32", test.f, string(test.fmt), test.prec, "want", "abc"+test.s, "got", string(x))
231 AppendFloat(dst[:0], c.float, c.fmt, c.prec, c.bitSize)
doc.go 40 // AppendBool, AppendFloat, AppendInt, and AppendUint are similar but
example_test.go 24 b32 = strconv.AppendFloat(b32, 3.1415926535, 'E', -1, 32)
28 b64 = strconv.AppendFloat(b64, 3.1415926535, 'E', -1, 64)
ftoa.go 48 // AppendFloat appends the string form of the floating-point number f,
50 func AppendFloat(dst []byte, f float64, fmt byte, prec, bitSize int) []byte {
65 panic("strconv: illegal AppendFloat/FormatFloat bitSize")
  /prebuilts/go/linux-x86/src/strconv/
strconv_test.go 28 {0, `AppendFloat(localBuf[:0], 1.23, 'g', 5, 64)`, func() {
30 AppendFloat(localBuf[:0], 1.23, 'g', 5, 64)
32 {0, `AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64)`, func() { AppendFloat(globalBuf[:0], 1.23, 'g', 5, 64) }},
ftoa_test.go 140 x := AppendFloat([]byte("abc"), test.f, test.fmt, test.prec, 64)
142 t.Error("AppendFloat testN=64", test.f, string(test.fmt), test.prec, "want", "abc"+test.s, "got", string(x))
149 x := AppendFloat([]byte("abc"), test.f, test.fmt, test.prec, 32)
151 t.Error("AppendFloat testN=32", test.f, string(test.fmt), test.prec, "want", "abc"+test.s, "got", string(x))
231 AppendFloat(dst[:0], c.float, c.fmt, c.prec, c.bitSize)
doc.go 40 // AppendBool, AppendFloat, AppendInt, and AppendUint are similar but
example_test.go 24 b32 = strconv.AppendFloat(b32, 3.1415926535, 'E', -1, 32)
28 b64 = strconv.AppendFloat(b64, 3.1415926535, 'E', -1, 64)
ftoa.go 48 // AppendFloat appends the string form of the floating-point number f,
50 func AppendFloat(dst []byte, f float64, fmt byte, prec, bitSize int) []byte {
65 panic("strconv: illegal AppendFloat/FormatFloat bitSize")
  /art/runtime/
reflection.cc 90 void AppendFloat(float value) {
120 AppendFloat(va_arg(ap, jdouble));
326 DO_FIRST_ARG("Ljava/lang/Float;", GetFloat, AppendFloat)
327 DO_ARG("Ljava/lang/Long;", GetLong, AppendFloat)
328 DO_ARG("Ljava/lang/Integer;", GetInt, AppendFloat)
329 DO_ARG("Ljava/lang/Character;", GetChar, AppendFloat)
330 DO_ARG("Ljava/lang/Short;", GetShort, AppendFloat)
331 DO_ARG("Ljava/lang/Byte;", GetByte, AppendFloat)
    [all...]
  /system/core/libstats/include/
stats_event_list.h 223 bool AppendFloat(float value) {
  /system/core/liblog/include/log/
log_event_list.h 281 bool AppendFloat(float value) {
  /prebuilts/go/darwin-x86/src/database/sql/
convert.go 474 return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 32), true
476 return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 64), true
  /prebuilts/go/darwin-x86/src/fmt/
format.go 452 // for strconv.AppendFloat and therefore fits into a byte.
459 num := strconv.AppendFloat(f.intbuf[:1], v, byte(verb), prec, size)
  /prebuilts/go/linux-x86/src/database/sql/
convert.go 474 return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 32), true
476 return strconv.AppendFloat(buf, rv.Float(), 'g', -1, 64), true
  /prebuilts/go/linux-x86/src/fmt/
format.go 452 // for strconv.AppendFloat and therefore fits into a byte.
459 num := strconv.AppendFloat(f.intbuf[:1], v, byte(verb), prec, size)
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal.go 849 if err := emit(p, strconv.AppendFloat(scratch[:0], vf.Float(), 'g', -1, vf.Type().Bits())); err != nil {
  /prebuilts/go/linux-x86/src/encoding/xml/
marshal.go 849 if err := emit(p, strconv.AppendFloat(scratch[:0], vf.Float(), 'g', -1, vf.Type().Bits())); err != nil {
  /prebuilts/go/darwin-x86/src/encoding/json/
encode.go 557 b = strconv.AppendFloat(b, f, fmt, -1, int(bits))
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
encode.go 557 b = strconv.AppendFloat(b, f, fmt, -1, int(bits))
    [all...]

Completed in 664 milliseconds