Lines Matching refs:dp

121 	  DIRECTIVE *dp = &d->dir[d->count];/* pointer to next directive */  in PRINTF_PARSE()  local
124 dp->dir_start = cp - 1; in PRINTF_PARSE()
125 dp->flags = 0; in PRINTF_PARSE()
126 dp->width_start = NULL; in PRINTF_PARSE()
127 dp->width_end = NULL; in PRINTF_PARSE()
128 dp->width_arg_index = ARG_NONE; in PRINTF_PARSE()
129 dp->precision_start = NULL; in PRINTF_PARSE()
130 dp->precision_end = NULL; in PRINTF_PARSE()
131 dp->precision_arg_index = ARG_NONE; in PRINTF_PARSE()
132 dp->arg_index = ARG_NONE; in PRINTF_PARSE()
163 dp->flags |= FLAG_GROUP; in PRINTF_PARSE()
168 dp->flags |= FLAG_LEFT; in PRINTF_PARSE()
173 dp->flags |= FLAG_SHOWSIGN; in PRINTF_PARSE()
178 dp->flags |= FLAG_SPACE; in PRINTF_PARSE()
183 dp->flags |= FLAG_ALT; in PRINTF_PARSE()
188 dp->flags |= FLAG_ZERO; in PRINTF_PARSE()
198 dp->width_start = cp; in PRINTF_PARSE()
200 dp->width_end = cp; in PRINTF_PARSE()
223 dp->width_arg_index = n - 1; in PRINTF_PARSE()
227 if (dp->width_arg_index == ARG_NONE) in PRINTF_PARSE()
229 dp->width_arg_index = arg_posn++; in PRINTF_PARSE()
230 if (dp->width_arg_index == ARG_NONE) in PRINTF_PARSE()
234 REGISTER_ARG (dp->width_arg_index, TYPE_INT); in PRINTF_PARSE()
240 dp->width_start = cp; in PRINTF_PARSE()
243 dp->width_end = cp; in PRINTF_PARSE()
244 width_length = dp->width_end - dp->width_start; in PRINTF_PARSE()
255 dp->precision_start = cp - 1; in PRINTF_PARSE()
257 dp->precision_end = cp; in PRINTF_PARSE()
281 dp->precision_arg_index = n - 1; in PRINTF_PARSE()
285 if (dp->precision_arg_index == ARG_NONE) in PRINTF_PARSE()
287 dp->precision_arg_index = arg_posn++; in PRINTF_PARSE()
288 if (dp->precision_arg_index == ARG_NONE) in PRINTF_PARSE()
292 REGISTER_ARG (dp->precision_arg_index, TYPE_INT); in PRINTF_PARSE()
298 dp->precision_start = cp - 1; in PRINTF_PARSE()
301 dp->precision_end = cp; in PRINTF_PARSE()
302 precision_length = dp->precision_end - dp->precision_start; in PRINTF_PARSE()
487 dp->arg_index = arg_index; in PRINTF_PARSE()
488 if (dp->arg_index == ARG_NONE) in PRINTF_PARSE()
490 dp->arg_index = arg_posn++; in PRINTF_PARSE()
491 if (dp->arg_index == ARG_NONE) in PRINTF_PARSE()
495 REGISTER_ARG (dp->arg_index, type); in PRINTF_PARSE()
497 dp->conversion = c; in PRINTF_PARSE()
498 dp->dir_end = cp; in PRINTF_PARSE()