Lines Matching refs:vres
446 size_t vres = 0; in _z_strPrintf() local
458 vres = vsnprintf(bfr, 1, a_format, ap); in _z_strPrintf()
461 assert(vres > 0); in _z_strPrintf()
462 assert(vres < LINE_MAX); in _z_strPrintf()
466 rstr = (char *)_z_calloc(vres+2); in _z_strPrintf()
471 vres = vsnprintf(rstr, vres+1, a_format, ap); in _z_strPrintf()
474 assert(vres > 0); in _z_strPrintf()
475 assert(vres < LINE_MAX); in _z_strPrintf()
507 size_t vres = 0; in _z_strPrintf_r() local
519 vres = vsnprintf(a_buf, a_bufLen-1, a_format, ap); in _z_strPrintf_r()
522 assert(vres > 0); in _z_strPrintf_r()
523 assert(vres < a_bufLen); in _z_strPrintf_r()