Home
last modified time | relevance | path

Searched refs:digits (Results 1 – 10 of 10) sorted by relevance

/arch/alpha/boot/
Dstdio.c46 const char *digits="0123456789abcdefghijklmnopqrstuvwxyz"; in number() local
50 digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in number()
80 tmp[i++] = digits[do_div(num, base)]; in number()
95 *str++ = digits[33]; in number()
/arch/m68k/fpsp040/
Dbindec.S44 | LEN is the number of digits to be displayed. The
45 | k-factor can dictate either the total number of digits,
46 | if it is a positive number, or the number of digits
54 | of decimal places needed to insure LEN integer digits
69 | significant digits. The excess digits are collected
85 | A13. Check for LEN digits.
86 | If the int operation results in more than LEN digits,
87 | or less than LEN -1 digits, adjust ILOG and repeat from
97 | The bcd digits are stored in the correct position in
102 | digits are stored in the final string.
[all …]
Ddecbin.S27 | digits, rather than 1 integer and 16 fraction digits.
32 | The mantissa digits will be converted with the decimal point
127 | 4. Subtract 16 to compensate for interpreting the mant as all integer digits.
128 | (i.e., all digits assumed left of the decimal point.)
144 movel #EDIGITS,%d2 |# of nibbles (digits) in fraction part
145 moveql #ESTRT,%d3 |counter to pick up digits
157 dbf %d2,e_gd |if we have used all 3 digits, exit loop
Dbinstr.S12 | Output: LEN bcd digits representing the 64-bit integer.
19 | LEN digits are formed.
121 clrw %d7 |set d7a to signal no digits done
/arch/powerpc/boot/
Dstdio.c82 const char *digits="0123456789abcdefghijklmnopqrstuvwxyz"; in number() local
86 digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in number()
116 tmp[i++] = digits[do_div(num, base)]; in number()
131 *str++ = digits[33]; in number()
/arch/x86/boot/
Dprintf.c45 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ in number() local
84 tmp[i++] = (digits[__do_div(num, base)] | locase); in number()
/arch/m68k/ifpsp060/src/
Dilsp.S328 clr.b DDSECOND(%a6) # clear flag for quotient digits
402 # need to add back divisor longword to current ms 3 digits of dividend
Dpfpsp.S2098 # OPERR : if ((k_factor > +17) || (dec. exp exceeds 3 digits))
Dfpsp.S2099 # OPERR : if ((k_factor > +17) || (dec. exp exceeds 3 digits))
/arch/powerpc/kernel/
Dprom_init.c657 static const char digits[] __initconst = "0123456789abcdef"; in tohex() local
665 result[i] = digits[x & 0xf]; in tohex()