Lines Matching refs:rtn_len

3535 	size_t rtn_len, limit, i;  in decode_fp_to_double()  local
3559 rtn_len = 64; in decode_fp_to_double()
3562 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_double()
3565 if (snprintf(rtn, rtn_len, "%fld", f) >= (int)rtn_len) { in decode_fp_to_double()
3569 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_double()
3579 size_t i, rtn_len, limit; in decode_fp_to_float() local
3602 rtn_len = 64; in decode_fp_to_float()
3605 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_float()
3608 if (snprintf(rtn, rtn_len, "%ff", f) >= (int)rtn_len) { in decode_fp_to_float()
3612 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_float()
3623 size_t rtn_len, limit, i; in decode_fp_to_float128() local
3658 rtn_len = 256; in decode_fp_to_float128()
3661 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_float128()
3664 if (snprintf(rtn, rtn_len, "%Lfd", f) >= (int)rtn_len) { in decode_fp_to_float128()
3668 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_float128()
3682 size_t rtn_len, limit, i; in decode_fp_to_float80() local
3718 rtn_len = 256; in decode_fp_to_float80()
3721 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_float80()
3724 if (snprintf(rtn, rtn_len, "%Lfd", f) >= (int)rtn_len) { in decode_fp_to_float80()
3728 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_float80()
3744 size_t rtn_len, limit, i; in decode_fp_to_long_double() local
3769 rtn_len = 256; in decode_fp_to_long_double()
3772 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_long_double()
3775 if (snprintf(rtn, rtn_len, "%Lfd", f) >= (int)rtn_len) { in decode_fp_to_long_double()
3779 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_long_double()