Home
last modified time | relevance | path

Searched refs:n (Results 1 – 13 of 13) sorted by relevance

/locale/
A Dindigitswc.h32 int n; in indigitwc_value() local
45 for (n = 0; n < 10; ++n) in indigitwc_value()
48 wcdigits[n] = _NL_CURRENT (LC_CTYPE, _NL_CTYPE_INDIGITS0_WC + n); in indigitwc_value()
49 wcdigits[n] += from_level; in indigitwc_value()
51 if (wc == *wcdigits[n]) in indigitwc_value()
56 return n; in indigitwc_value()
60 ++wcdigits[n]; in indigitwc_value()
67 for (n = 0; n < 10; ++n) in indigitwc_value()
69 if (wc == *wcdigits[n]) in indigitwc_value()
74 return n; in indigitwc_value()
[all …]
A Dindigits.h34 int n; in indigit_value() local
47 for (n = 0; n < 10; ++n) in indigit_value()
52 mbdigits[n] = _NL_CURRENT (LC_CTYPE, _NL_CTYPE_INDIGITS0_MB + n); in indigit_value()
53 dlen = strlen (mbdigits[n]); in indigit_value()
56 && memcmp (*s, mbdigits[n], dlen) == 0) in indigit_value()
63 return n; in indigit_value()
67 mbdigits[n] += dlen + 1; in indigit_value()
74 for (n = 0; n < 10; ++n) in indigit_value()
76 size_t dlen = strlen (mbdigits[n]); in indigit_value()
86 return n; in indigit_value()
[all …]
A Doutdigitswc.h28 outdigitwc_value (int n) in outdigitwc_value() argument
30 assert (0 <= n && n <= 9); in outdigitwc_value()
32 return _NL_CURRENT_WORD (LC_CTYPE, _NL_CTYPE_OUTDIGIT0_WC + n); in outdigitwc_value()
A Doutdigits.h29 outdigit_value (char *s, int n) in outdigit_value() argument
34 assert (0 <= n && n <= 9); in outdigit_value()
35 outdigit = _NL_CURRENT (LC_CTYPE, _NL_CTYPE_OUTDIGIT0_MB + n); in outdigit_value()
A Delem-hash.h21 elem_hash (const char *str, int_fast32_t n) in elem_hash() argument
23 int32_t result = n; in elem_hash()
25 while (n-- > 0) in elem_hash()
A DVersions18 # n*
A DC-translit.h.in38 "\x0149" "'n" # <U0149> LATIN SMALL LETTER N PRECEDED BY APOSTROPHE
126 "\x03bd" "n" # <U03BD> GREEK SMALL LETTER NU
252 "\x043d" "n" # <U043D> CYRILLIC SMALL LETTER EN
280 "\x045a" "n`" # <U045A> CYRILLIC SMALL LETTER NJE
625 "\x24a9" "(n)" # <U24A9> PARENTHESIZED LATIN SMALL LETTER N
677 "\x24dd" "(n)" # <U24DD> CIRCLED LATIN SMALL LETTER N
962 "\xff4e" "n" # <UFF4E> FULLWIDTH LATIN SMALL LETTER N
1018 "\x0001d427" "n" # <U0001D427> MATHEMATICAL BOLD SMALL N
1069 "\x0001d45b" "n" # <U0001D45B> MATHEMATICAL ITALIC SMALL N
1162 "\x0001d4c3" "n" # <U0001D4C3> MATHEMATICAL SCRIPT SMALL N
[all …]
/locale/programs/
A Dxmalloc.c55 fixup_null_alloc (size_t n) in fixup_null_alloc() argument
60 if (n == 0) in fixup_null_alloc()
70 xmalloc (size_t n) in xmalloc() argument
74 p = malloc (n); in xmalloc()
76 p = fixup_null_alloc (n); in xmalloc()
83 xcalloc (size_t n, size_t s) in xcalloc() argument
87 p = calloc (n, s); in xcalloc()
89 p = fixup_null_alloc (n); in xcalloc()
98 xrealloc (VOID *p, size_t n) in xrealloc() argument
101 return xmalloc (n); in xrealloc()
[all …]
A Dld-time.c544 for (n = 0; n < 7; ++n) in time_output()
548 for (n = 0; n < 7; ++n) in time_output()
552 for (n = 0; n < 12; ++n) in time_output()
556 for (n = 0; n < 12; ++n) in time_output()
560 for (n = 0; n < 2; ++n) in time_output()
604 for (n = 0; n < 7; ++n) in time_output()
608 for (n = 0; n < 7; ++n) in time_output()
612 for (n = 0; n < 12; ++n) in time_output()
616 for (n = 0; n < 12; ++n) in time_output()
620 for (n = 0; n < 2; ++n) in time_output()
[all …]
A Dlinereader.c68 int n; in lr_create() local
84 if (n < 0) in lr_create()
94 if (n > 1 && result->buf[n - 2] == '\\' && result->buf[n - 1] == '\n') in lr_create()
95 n -= 2; in lr_create()
153 int n; in lr_next() local
156 if (n < 0) in lr_next()
161 if (n > 1 && lr->buf[n - 2] == lr->escape_char && lr->buf[n - 1] == '\n') in lr_next()
166 --n; in lr_next()
169 n -= 2; in lr_next()
173 lr->buf[n] = '\0'; in lr_next()
[all …]
A Dlocfile.h92 maybe_swap_uint32_array (uint32_t *array, size_t n) in maybe_swap_uint32_array() argument
95 while (n-- > 0) in maybe_swap_uint32_array()
96 array[n] = bswap_32 (array[n]); in maybe_swap_uint32_array()
102 maybe_swap_uint32_obstack (struct obstack *obstack, size_t n) in maybe_swap_uint32_obstack() argument
104 maybe_swap_uint32_array ((uint32_t *) obstack_next_free (obstack) - n, n); in maybe_swap_uint32_obstack()
A Dlinereader.h155 lr_ungetn (struct linereader *lr, size_t n) in lr_ungetn() argument
157 if (lr->idx < n) in lr_ungetn()
160 lr->idx -= n; in lr_ungetn()
A Dxstrdup.c27 void *xmalloc (size_t n) __THROW;

Completed in 22 milliseconds