Searched refs:str_p (Results 1 - 4 of 4) sorted by relevance

/freebsd-current/contrib/bmake/
H A Dstr.c131 const char *str_p; local
151 for (str_p = str;; str_p++) {
152 char ch = *str_p;
164 if (word_start == NULL && str_p[1] == inquote) {
170 str_p++;
227 if (str_p[1] == '\0')
229 ch = *++str_p;
233 switch (ch = *++str_p) {
238 str_p
[all...]
/freebsd-current/contrib/unbound/sldns/
H A Dparseutil.c321 sldns_parse_escape(uint8_t *ch_p, const char** str_p) argument
325 if ((*str_p)[0] && isdigit((unsigned char)(*str_p)[0]) &&
326 (*str_p)[1] && isdigit((unsigned char)(*str_p)[1]) &&
327 (*str_p)[2] && isdigit((unsigned char)(*str_p)[2])) {
329 val = (uint16_t)(((*str_p)[0] - '0') * 100 +
330 ((*str_p)[1] - '0') * 10 +
331 ((*str_p)[
352 sldns_parse_char(uint8_t *ch_p, const char** str_p) argument
[all...]
H A Dparseutil.h138 * @param str_p: the string. moved along for characters read.
144 int sldns_parse_escape(uint8_t *ch_p, const char** str_p);
149 * @param str_p: the string. moved along for characters read.
152 int sldns_parse_char(uint8_t *ch_p, const char** str_p);
/freebsd-current/contrib/ldns/
H A Dstr2host.c262 parse_escape(uint8_t *ch_p, const char** str_p) argument
266 if ((*str_p)[0] && isdigit((unsigned char)(*str_p)[0]) &&
267 (*str_p)[1] && isdigit((unsigned char)(*str_p)[1]) &&
268 (*str_p)[2] && isdigit((unsigned char)(*str_p)[2])) {
270 val = (uint16_t)(((*str_p)[0] - '0') * 100 +
271 ((*str_p)[1] - '0') * 10 +
272 ((*str_p)[
292 parse_char(uint8_t *ch_p, const char** str_p) argument
1893 parse_escape2(uint8_t *ch_p, const char** str_p) argument
[all...]

Completed in 171 milliseconds