Searched defs:decimalSlice (Results 1 – 2 of 2) sorted by relevance
/aosp_15_r20/prebuilts/go/linux-x86/src/strconv/ |
D | ftoa.go | 199 func formatDigits(dst []byte, shortest bool, neg bool, digs decimalSlice, prec int, fmt byte) []byt… 373 type decimalSlice struct { struct 374 d []byte 375 nd, dp int 379 func fmtE(dst []byte, neg bool, d decimalSlice, prec int, fmt byte) []byte { 434 func fmtF(dst []byte, neg bool, d decimalSlice, prec int) []byte {
|
D | ftoaryu.go | 20 func ryuFtoaFixed32(d *decimalSlice, mant uint32, exp int, prec int) { 90 func ryuFtoaFixed64(d *decimalSlice, mant uint64, exp int, prec int) { 167 func formatDecimal(d *decimalSlice, m uint64, trunc bool, roundUp bool, prec int) { 227 func ryuFtoaShortest(d *decimalSlice, mant uint64, exp int, flt *floatInfo) { 366 func ryuDigits(d *decimalSlice, lower, central, upper uint64, 412 func ryuDigits32(d *decimalSlice, lower, central, upper uint32,
|