Home
last modified time | relevance | path

Searched refs:num (Results 1 – 2 of 2) sorted by relevance

/DragonStub/apps/lib/
H A Dvsprintf.c281 number(char *buf, char *end, unsigned long long num, struct printf_spec spec) in number() argument
284 char tmp[3 * sizeof(num)] __aligned(2); in number()
289 bool is_zero = num == 0LL; in number()
300 if ((signed long long)num < 0) { in number()
302 num = -(signed long long)num; in number()
321 if (num < spec.base) in number()
322 tmp[i++] = hex_asc_upper[num] | locase; in number()
330 tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | in number()
332 num >>= shift; in number()
333 } while (num); in number()
[all …]
/DragonStub/inc/dragonstub/linux/arch/riscv/asm/
H A Dasm.h79 .macro nops, num
80 .rept \num