Home
last modified time | relevance | path

Searched refs:cnt (Results 1 – 11 of 11) sorted by relevance

/stdlib/
A Dbug-strtod.c30 int cnt; \
33 for (cnt = 0; cnt < 200; ++cnt) \
38 n = sprintf (buf, "%d", cnt); \
39 memset (buf + n, '0', cnt); \
40 sprintf (buf + n + cnt, ".000e-%d", cnt); \
43 if (f != (FTYPE) cnt) \
48 FTOSTR (fcntstr, sizeof (fstr), "%g", (FTYPE) cnt); \
51 buf, cnt, fstr, fcntstr); \
55 printf ( "strto" #FSUF "() fine for cnt == %d\n", cnt); \
A Dgrouping.c57 int cnt; in __correctly_grouped_prefixwc() local
81 for (cnt = 1; thousands[cnt] != '\0'; ++cnt) in __correctly_grouped_prefixwc()
82 if (thousands[cnt] != cp[thousands_len - 1 - cnt]) in __correctly_grouped_prefixwc()
84 if (thousands[cnt] == '\0') in __correctly_grouped_prefixwc()
137 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in __correctly_grouped_prefixwc()
138 if (thousands[cnt] != cp[thousands_len - cnt - 1]) in __correctly_grouped_prefixwc()
140 if (thousands[cnt] == '\0') in __correctly_grouped_prefixwc()
161 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in __correctly_grouped_prefixwc()
162 if (thousands[cnt] != cp[thousands_len - cnt - 1]) in __correctly_grouped_prefixwc()
164 if (thousands[cnt] == '\0') in __correctly_grouped_prefixwc()
A Dl64a.c38 int cnt; in l64a() local
47 for (cnt = 0; m > 0ul; ++cnt) in l64a()
49 result[cnt] = conv_table[m & 0x3f]; in l64a()
52 result[cnt] = '\0'; in l64a()
A Dtst-bsearch.c60 size_t cnt; in do_test() local
65 for (cnt = 0; cnt < narr; ++cnt) in do_test()
68 key.val = arr[cnt].val; in do_test()
73 printf ("entry %zd not found\n", cnt); in do_test()
76 else if (res != &arr[cnt]) in do_test()
109 for (cnt = 0; cnt < narr; ++cnt) in do_test()
111 key.val = arr[cnt].val; in do_test()
114 if (cnt == 5) in do_test()
118 printf ("entry %zd not found\n", cnt); in do_test()
121 else if (res != &arr[cnt]) in do_test()
A Dgetsubopt.c42 int cnt; in getsubopt() local
57 for (cnt = 0; tokens[cnt] != NULL; ++cnt) in getsubopt()
58 if (strncmp (*optionp, tokens[cnt], vstart - *optionp) == 0 in getsubopt()
59 && tokens[cnt][vstart - *optionp] == '\0') in getsubopt()
68 return cnt; in getsubopt()
A Dtst-makecontext.c36 int cnt, size; member
43 if (++arg->cnt == arg->size) in backtrace_helper()
51 struct trace_arg arg = { .size = 100, .cnt = -1 }; in cf()
73 assert (arg.cnt != -1 && arg.cnt < 100); in cf()
A Dstrtol_l.c235 size_t cnt; in INTERNAL() local
339 ({ for (cnt = 0; cnt < thousands_len; ++cnt) in INTERNAL()
340 if (thousands[cnt] != end[cnt]) in INTERNAL()
342 cnt < thousands_len; }) in INTERNAL()
351 && ({ for (cnt = 0; cnt < thousands_len; ++cnt) in INTERNAL()
352 if (thousands[cnt] != end[cnt]) in INTERNAL()
396 for (cnt = 0; cnt < thousands_len; ++cnt) in INTERNAL()
397 if (thousands[cnt] != s[cnt]) in INTERNAL()
444 for (cnt = 0; cnt < thousands_len; ++cnt) in INTERNAL()
445 if (thousands[cnt] != s[cnt]) in INTERNAL()
[all …]
A Dlshift.c36 register unsigned int cnt) in mpn_lshift() argument
44 if (usize == 0 || cnt == 0) in mpn_lshift()
48 sh_1 = cnt; in mpn_lshift()
A Drshift.c38 register unsigned int cnt) in mpn_rshift() argument
45 assert (usize != 0 && cnt != 0); in mpn_rshift()
47 sh_1 = cnt; in mpn_rshift()
A Dstrtod_l.c632 for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
633 if (cp[cnt] != decimal[cnt]) in ____STRTOF_INTERNAL()
635 if (decimal[cnt] == '\0' && cp[cnt] >= '0' && cp[cnt] <= '9') in ____STRTOF_INTERNAL()
718 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
719 if (thousands[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
739 ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
740 if (decimal[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
792 for (cnt = 0; thousands[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
793 if (thousands[cnt] != cp[cnt]) in ____STRTOF_INTERNAL()
855 ({ for (cnt = 0; decimal[cnt] != '\0'; ++cnt) in ____STRTOF_INTERNAL()
[all …]
A Dfmtmsg.c214 size_t cnt; in init() local
216 for (cnt = 0; cnt < NKEYWORDS; ++cnt) in init()
218 keywords[cnt].name, keywords[cnt].len) == 0 in init()
219 && (msgverb_var[keywords[cnt].len] == ':' in init()
220 || msgverb_var[keywords[cnt].len] == '\0')) in init()
223 if (cnt < NKEYWORDS) in init()
225 print |= 1 << cnt; in init()
227 msgverb_var += keywords[cnt].len; in init()

Completed in 21 milliseconds