Lines Matching refs:np
156 const CHAR_T *np; in PRINTF_PARSE() local
158 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
160 if (*np == '$') in PRINTF_PARSE()
164 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
165 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
173 cp = np + 1; in PRINTF_PARSE()
233 const CHAR_T *np; in PRINTF_PARSE() local
235 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
237 if (*np == '$') in PRINTF_PARSE()
241 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
242 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
250 cp = np + 1; in PRINTF_PARSE()
290 const CHAR_T *np; in PRINTF_PARSE() local
292 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
294 if (*np == '$') in PRINTF_PARSE()
298 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
299 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
308 cp = np + 1; in PRINTF_PARSE()