Lines Matching refs:np
136 const CHAR_T *np; in PRINTF_PARSE() local
138 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
140 if (*np == '$') in PRINTF_PARSE()
144 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
145 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
153 cp = np + 1; in PRINTF_PARSE()
206 const CHAR_T *np; in PRINTF_PARSE() local
208 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
210 if (*np == '$') in PRINTF_PARSE()
214 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
215 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
223 cp = np + 1; in PRINTF_PARSE()
263 const CHAR_T *np; in PRINTF_PARSE() local
265 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
267 if (*np == '$') in PRINTF_PARSE()
271 for (np = cp; *np >= '0' && *np <= '9'; np++) in PRINTF_PARSE()
272 n = xsum (xtimes (n, 10), *np - '0'); in PRINTF_PARSE()
281 cp = np + 1; in PRINTF_PARSE()