Lines Matching refs:str
268 conv_escape_str(char *str, char **sp) in conv_escape_str() argument
278 c = ch = *str++; in conv_escape_str()
282 c = *str++; in conv_escape_str()
294 if (c == '0' && isodigit(*str)) in conv_escape_str()
295 str++; in conv_escape_str()
298 str = conv_escape(str - 1, &c); in conv_escape_str()
310 conv_escape(char *str, int *conv_ch) in conv_escape() argument
315 ch = *str; in conv_escape()
319 if (!isodigit(*str)) { in conv_escape()
328 value += octtobin(*str++); in conv_escape()
329 } while (isodigit(*str) && --ch); in conv_escape()
342 str++; in conv_escape()
345 return str; in conv_escape()
349 mklong(const char *str, const char *ch) in mklong() argument
363 len = ch - str + sizeof(PRIdMAX); in mklong()
366 memcpy(copy, str, len - sizeof(PRIdMAX)); in mklong()