Searched refs:s (Results 1 – 7 of 7) sorted by relevance
/bootloader/lib/ |
A D | string.c | 38 size_t strlen(const char* s) { in strlen() argument 40 while (*s++) in strlen() 45 size_t strnlen(const char* s, size_t max) { in strnlen() argument 47 while (len < max && *s++) in strnlen() 52 char* strchr(const char* s, int c) { in strchr() argument 53 while (*s != c && *s++) ; in strchr() 54 if (*s != c) return 0; in strchr() 55 return (char*)s; in strchr()
|
A D | printf.c | 157 const char *s; in _printf_engine() local 177 s = fmt; in _printf_engine() 186 OUTPUT_STRING(s, string_len); in _printf_engine() 216 s = va_arg(ap, const char *); in _printf_engine() 217 if (s == 0) in _printf_engine() 218 s = "<null>"; in _printf_engine() 263 s = longlong_to_string(num_buffer, n, sizeof(num_buffer), flags, &signchar); in _printf_engine() 292 s = longlong_to_hexstring(num_buffer, n, sizeof(num_buffer), flags); in _printf_engine() 324 string_len = strlen(s); in _printf_engine() 328 OUTPUT_STRING(s, string_len); in _printf_engine() [all …]
|
/bootloader/include/ |
A D | string.h | 12 size_t strlen(const char* s); 13 size_t strnlen(const char* s, size_t max); 14 char* strchr(const char* s, int c);
|
/bootloader/build/ |
A D | mkdiskimg.sh | 17 parted "$1" -s -a minimal mkpart EFI FAT16 2048s 93716s
|
/bootloader/src/ |
A D | osboot.c | 315 static inline void swap_to_head(const char c, char* s, const size_t n) { in swap_to_head() argument 322 if (c == s[i]) { in swap_to_head() 331 const char tmp = s[0]; in swap_to_head() 332 s[0] = s[i]; in swap_to_head() 333 s[i] = tmp; in swap_to_head()
|
A D | framebuffer.c | 60 efi_status s = gop->SetMode(gop, mode); in set_gfx_mode() local 61 if (EFI_ERROR(s)) { in set_gfx_mode() 62 printf("could not set mode: %s\n", xefi_strerror(s)); in set_gfx_mode()
|
/bootloader/ |
A D | NOTES.txt | 27 The several -v's make it chattier in syslog which is handy if you're not
|
Completed in 10 milliseconds