Searched refs:locase (Results 1 - 5 of 5) sorted by relevance

/linux-master/fs/hpfs/
H A Dname.c35 static inline unsigned char locase(unsigned char *dir, unsigned char a) function
71 for (i = 0; i < len; i++) to[i] = locase(hpfs_sb(s)->sb_cp_table,from[i]);
/linux-master/arch/x86/boot/
H A Dprintf.c48 char c, sign, locase; local
51 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
53 locase = (type & SMALL);
84 tmp[i++] = (digits[__do_div(num, base)] | locase);
98 *str++ = ('X' | locase);
/linux-master/tools/testing/selftests/kvm/lib/
H A Dguest_sprintf.c50 char c, sign, locase; local
54 * locase = 0 or 0x20. ORing digits or letters with 'locase'
57 locase = (type & SMALL);
88 tmp[i++] = (digits[__do_div(num, base)] | locase);
/linux-master/drivers/firmware/efi/libstub/
H A Dvsprintf.c113 char *number(char *end, unsigned long long num, int base, char locase) argument
116 * locase = 0 or 0x20. ORing digits or letters with 'locase'
134 *--end = digits[num & 0xf] | locase;
/linux-master/lib/
H A Dvsprintf.c463 char locase; local
470 /* locase = 0 or 0x20. ORing digits or letters with 'locase'
472 locase = (spec.flags & SMALL);
499 tmp[i++] = hex_asc_upper[num] | locase;
507 tmp[i++] = (hex_asc_upper[((unsigned char)num) & mask] | locase);
541 *buf = ('X' | locase);

Completed in 387 milliseconds