Searched refs:locase (Results 1 – 5 of 5) sorted by relevance
/linux-6.12.1/arch/x86/boot/ |
D | printf.c | 48 char c, sign, locase; in number() local 53 locase = (type & SMALL); in number() 84 tmp[i++] = (digits[__do_div(num, base)] | locase); in number() 98 *str++ = ('X' | locase); in number()
|
/linux-6.12.1/tools/testing/selftests/kvm/lib/ |
D | guest_sprintf.c | 50 char c, sign, locase; in number() local 57 locase = (type & SMALL); in number() 88 tmp[i++] = (digits[__do_div(num, base)] | locase); in number()
|
/linux-6.12.1/fs/hpfs/ |
D | name.c | 35 static inline unsigned char locase(unsigned char *dir, unsigned char a) in locase() function 71 for (i = 0; i < len; i++) to[i] = locase(hpfs_sb(s)->sb_cp_table,from[i]); in hpfs_translate_name()
|
/linux-6.12.1/drivers/firmware/efi/libstub/ |
D | vsprintf.c | 113 char *number(char *end, unsigned long long num, int base, char locase) in number() argument 134 *--end = digits[num & 0xf] | locase; in number()
|
/linux-6.12.1/lib/ |
D | vsprintf.c | 463 char locase; in number() local 472 locase = (spec.flags & SMALL); in number() 499 tmp[i++] = hex_asc_upper[num] | locase; in number() 507 tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | locase); in number() 541 *buf = ('X' | locase); in number()
|