Lines Matching refs:p

41 	char *p = *pp;  in handle_format()  local
46 p++; /* we passed it with *p == '%' */ in handle_format()
48 if (*p == '%') { in handle_format()
49 p++; in handle_format()
53 if (*p == 'c') { in handle_format()
54 p++; in handle_format()
60 if (isdigit(*p) || *p == '.') { in handle_format()
63 if (*p == '.') in handle_format()
64 p++; in handle_format()
66 num = strtoul(p, &p, 10); in handle_format()
69 while (*p == 'l') in handle_format()
70 p++; in handle_format()
71 p++; /* eat the 'd' char */ in handle_format()
75 if (*p == 'l') { in handle_format()
76 p++; in handle_format()
77 if (*p == 'l') in handle_format()
78 p++; in handle_format()
81 if (option_project == PROJ_KERNEL && *p == 'z') in handle_format()
82 p++; in handle_format()
84 if (option_project == PROJ_KERNEL && *p == 'p') { in handle_format()
85 if (*(p + 1) == 'I' || *(p + 1) == 'i') { in handle_format()
88 eye = p + 1; in handle_format()
89 p += 2; in handle_format()
90 if (*p == 'h' || *p == 'n' || *p == 'b' || *p == 'l') in handle_format()
91 p++; in handle_format()
92 if (*p == '4') { in handle_format()
93 p++; in handle_format()
97 if (*p == '6') { in handle_format()
98 p++; in handle_format()
99 if (*p == 'c') in handle_format()
100 p++; in handle_format()
108 if (*(p + 1) == 'M') { in handle_format()
109 p += 2; in handle_format()
110 if (*p == 'R' || *p == 'F') in handle_format()
111 p++; in handle_format()
115 if (*(p + 1) == 'm') { in handle_format()
116 p += 2; in handle_format()
117 if (*p == 'R') in handle_format()
118 p++; in handle_format()
128 if (*p == 's') { in handle_format()
134 p++; in handle_format()
138 if (*p != 'd' && *p != 'i' && *p != 'x' && *p != 'X' && *p != 'u' && *p != 'p') { in handle_format()
140 p++; in handle_format()
153 if (*p == 'x' || *p == 'X' || *p == 'p') { in handle_format()
155 } else if (*p == 'u') { in handle_format()
169 p++; in handle_format()
174 *pp = p; in handle_format()
181 char *p; in get_formatted_string_size_helper() local
190 p = expr->string->data; in get_formatted_string_size_helper()
191 while (*p) { in get_formatted_string_size_helper()
193 if (*p == '%') { in get_formatted_string_size_helper()
194 count += handle_format(call, &p, &arg, use_max); in get_formatted_string_size_helper()
195 } else if (*p == '\\') { in get_formatted_string_size_helper()
196 p++; in get_formatted_string_size_helper()
198 p++; in get_formatted_string_size_helper()