Lines Matching full:out

62 		goto out;  in string_get_size()
95 /* work out in j how many digits of precision we need from the in string_get_size()
122 out: in string_get_size()
270 char *out = dst; in string_unescape() local
278 unescape_space(&src, &out)) in string_unescape()
282 unescape_octal(&src, &out)) in string_unescape()
286 unescape_hex(&src, &out)) in string_unescape()
290 unescape_special(&src, &out)) in string_unescape()
293 *out++ = '\\'; in string_unescape()
295 *out++ = *src++; in string_unescape()
297 *out = '\0'; in string_unescape()
299 return out - dst; in string_unescape()
305 char *out = *dst; in escape_passthrough() local
307 if (out < end) in escape_passthrough()
308 *out = c; in escape_passthrough()
309 *dst = out + 1; in escape_passthrough()
315 char *out = *dst; in escape_space() local
338 if (out < end) in escape_space()
339 *out = '\\'; in escape_space()
340 ++out; in escape_space()
341 if (out < end) in escape_space()
342 *out = to; in escape_space()
343 ++out; in escape_space()
345 *dst = out; in escape_space()
351 char *out = *dst; in escape_special() local
368 if (out < end) in escape_special()
369 *out = '\\'; in escape_special()
370 ++out; in escape_special()
371 if (out < end) in escape_special()
372 *out = to; in escape_special()
373 ++out; in escape_special()
375 *dst = out; in escape_special()
381 char *out = *dst; in escape_null() local
386 if (out < end) in escape_null()
387 *out = '\\'; in escape_null()
388 ++out; in escape_null()
389 if (out < end) in escape_null()
390 *out = '0'; in escape_null()
391 ++out; in escape_null()
393 *dst = out; in escape_null()
399 char *out = *dst; in escape_octal() local
401 if (out < end) in escape_octal()
402 *out = '\\'; in escape_octal()
403 ++out; in escape_octal()
404 if (out < end) in escape_octal()
405 *out = ((c >> 6) & 0x07) + '0'; in escape_octal()
406 ++out; in escape_octal()
407 if (out < end) in escape_octal()
408 *out = ((c >> 3) & 0x07) + '0'; in escape_octal()
409 ++out; in escape_octal()
410 if (out < end) in escape_octal()
411 *out = ((c >> 0) & 0x07) + '0'; in escape_octal()
412 ++out; in escape_octal()
414 *dst = out; in escape_octal()
420 char *out = *dst; in escape_hex() local
422 if (out < end) in escape_hex()
423 *out = '\\'; in escape_hex()
424 ++out; in escape_hex()
425 if (out < end) in escape_hex()
426 *out = 'x'; in escape_hex()
427 ++out; in escape_hex()
428 if (out < end) in escape_hex()
429 *out = hex_asc_hi(c); in escape_hex()
430 ++out; in escape_hex()
431 if (out < end) in escape_hex()
432 *out = hex_asc_lo(c); in escape_hex()
433 ++out; in escape_hex()
435 *dst = out; in escape_hex()