Lines Matching refs:np
137 const CHAR_T *np; in PRINTF_PARSE() local
139 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
141 if (*np == '$') in PRINTF_PARSE()
145 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
146 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
154 cp = np + 1; in PRINTF_PARSE()
207 const CHAR_T *np; in PRINTF_PARSE() local
209 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
211 if (*np == '$') in PRINTF_PARSE()
215 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
216 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
224 cp = np + 1; in PRINTF_PARSE()
264 const CHAR_T *np; in PRINTF_PARSE() local
266 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
268 if (*np == '$') in PRINTF_PARSE()
272 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
273 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
282 cp = np + 1; in PRINTF_PARSE()