Lines Matching refs:dp
140 DIRECTIVE *dp = &d->dir[d->count]; /* pointer to next directive */ in PRINTF_PARSE() local
143 dp->dir_start = cp - 1; in PRINTF_PARSE()
144 dp->flags = 0; in PRINTF_PARSE()
145 dp->width_start = NULL; in PRINTF_PARSE()
146 dp->width_end = NULL; in PRINTF_PARSE()
147 dp->width_arg_index = ARG_NONE; in PRINTF_PARSE()
148 dp->precision_start = NULL; in PRINTF_PARSE()
149 dp->precision_end = NULL; in PRINTF_PARSE()
150 dp->precision_arg_index = ARG_NONE; in PRINTF_PARSE()
151 dp->arg_index = ARG_NONE; in PRINTF_PARSE()
182 dp->flags |= FLAG_GROUP; in PRINTF_PARSE()
187 dp->flags |= FLAG_LEFT; in PRINTF_PARSE()
192 dp->flags |= FLAG_SHOWSIGN; in PRINTF_PARSE()
197 dp->flags |= FLAG_SPACE; in PRINTF_PARSE()
202 dp->flags |= FLAG_ALT; in PRINTF_PARSE()
207 dp->flags |= FLAG_ZERO; in PRINTF_PARSE()
213 dp->flags |= FLAG_LOCALIZED; in PRINTF_PARSE()
224 dp->width_start = cp; in PRINTF_PARSE()
226 dp->width_end = cp; in PRINTF_PARSE()
249 dp->width_arg_index = n - 1; in PRINTF_PARSE()
253 if (dp->width_arg_index == ARG_NONE) in PRINTF_PARSE()
255 dp->width_arg_index = arg_posn++; in PRINTF_PARSE()
256 if (dp->width_arg_index == ARG_NONE) in PRINTF_PARSE()
260 REGISTER_ARG (dp->width_arg_index, TYPE_INT); in PRINTF_PARSE()
266 dp->width_start = cp; in PRINTF_PARSE()
269 dp->width_end = cp; in PRINTF_PARSE()
270 width_length = dp->width_end - dp->width_start; in PRINTF_PARSE()
281 dp->precision_start = cp - 1; in PRINTF_PARSE()
283 dp->precision_end = cp; in PRINTF_PARSE()
307 dp->precision_arg_index = n - 1; in PRINTF_PARSE()
311 if (dp->precision_arg_index == ARG_NONE) in PRINTF_PARSE()
313 dp->precision_arg_index = arg_posn++; in PRINTF_PARSE()
314 if (dp->precision_arg_index == ARG_NONE) in PRINTF_PARSE()
318 REGISTER_ARG (dp->precision_arg_index, TYPE_INT); in PRINTF_PARSE()
324 dp->precision_start = cp - 1; in PRINTF_PARSE()
327 dp->precision_end = cp; in PRINTF_PARSE()
328 precision_length = dp->precision_end - dp->precision_start; in PRINTF_PARSE()
567 dp->arg_index = arg_index; in PRINTF_PARSE()
568 if (dp->arg_index == ARG_NONE) in PRINTF_PARSE()
570 dp->arg_index = arg_posn++; in PRINTF_PARSE()
571 if (dp->arg_index == ARG_NONE) in PRINTF_PARSE()
575 REGISTER_ARG (dp->arg_index, type); in PRINTF_PARSE()
577 dp->conversion = c; in PRINTF_PARSE()
578 dp->dir_end = cp; in PRINTF_PARSE()