Searched refs:L_ (Results 1 - 7 of 7) sorted by relevance

/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf-parse.h78 unsigned int retval = **pstr - L_('0');
83 retval += **pstr - L_('0');
103 while (*format != L_('\0') && *format != L_('%'))
162 if (n > 0 && *format == L_('$'))
180 case L_(' '):
184 case L_('+'):
188 case L_('-'):
192 case L_('#'):
197 case L_('
[all...]
H A Dvfscanf.c99 # define L_(Str) L##Str macro
123 # define L_(Str) Str macro
187 # define L_(Str) Str macro
486 argpos = (UCHAR_T) *f++ - L_('0');
488 argpos = argpos * 10 + ((UCHAR_T) *f++ - L_('0'));
489 if (*f == L_('$'))
503 while (*f == L_('*') || *f == L_('\'') || *f == L_('I'))
506 case L_('*')
[all...]
H A Dvfprintf.c73 # define L_(Str) Str macro
89 # define L_(Str) L##Str macro
134 # define L_(Str) Str macro
207 static const CHAR_T null[] = L_("(null)");
304 #define NOT_IN_JUMP_RANGE(Ch) ((Ch) < L_(' ') || (Ch) > L_('z'))
305 #define CHAR_CLASS(Ch) (jump_table[(INT_T) (Ch) - L_(' ')])
549 outchar (L_('%')); \
634 pad = L_(' '); \
643 *--string = L_('
[all...]
H A Dprintf-parse.c34 # define L_(Str) Str macro
50 # define L_(Str) L##Str macro
H A Dprintf-prs.c30 # define L_(Str) Str macro
53 # define L_(Str) L##Str macro
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c171 # define L_(Ch) L##Ch macro
189 # define L_(Ch) Ch macro
302 if (__builtin_expect (*s == L_('\0'), 0))
307 if (*s == L_('-'))
312 else if (*s == L_('+'))
316 if (*s == L_('0'))
318 if ((base == 0 || base == 16) && TOUPPER (s[1]) == L_('X'))
355 for (c = *end; c != L_('\0'); c = *++end)
356 if (((wchar_t) c < L_('0') || (wchar_t) c > L_('
[all...]
H A Dstrtod.c100 # define L_(Ch) L##Ch macro
119 # define L_(Ch) Ch macro
364 low = low * 10 + *str++ - L_('0');
554 if (c == L_('-'))
559 else if (c == L_('+'))
580 else if (c < L_('0') || c > L_('9'))
583 if (TOLOWER (c) == L_('i') && STRNCASECMP (cp, L_("inf"), 3) == 0)
588 (cp + (STRNCASECMP (cp + 3, L_("init
[all...]

Completed in 75 milliseconds