Lines Matching refs:rtn_len

3863 	size_t rtn_len, limit, i;  in decode_fp_to_double()  local
3887 rtn_len = 64; in decode_fp_to_double()
3890 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_double()
3893 if (snprintf(rtn, rtn_len, "%fld", f) >= (int)rtn_len) { in decode_fp_to_double()
3897 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_double()
3907 size_t i, rtn_len, limit; in decode_fp_to_float() local
3930 rtn_len = 64; in decode_fp_to_float()
3933 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_float()
3936 if (snprintf(rtn, rtn_len, "%ff", f) >= (int)rtn_len) { in decode_fp_to_float()
3940 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_float()
3951 size_t rtn_len, limit, i; in decode_fp_to_float128() local
3986 rtn_len = 256; in decode_fp_to_float128()
3989 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_float128()
3992 if (snprintf(rtn, rtn_len, "%Lfd", f) >= (int)rtn_len) { in decode_fp_to_float128()
3996 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_float128()
4010 size_t rtn_len, limit, i; in decode_fp_to_float80() local
4046 rtn_len = 256; in decode_fp_to_float80()
4049 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_float80()
4052 if (snprintf(rtn, rtn_len, "%Lfd", f) >= (int)rtn_len) { in decode_fp_to_float80()
4056 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_float80()
4072 size_t rtn_len, limit, i; in decode_fp_to_long_double() local
4097 rtn_len = 256; in decode_fp_to_long_double()
4100 if ((rtn = malloc(sizeof(char) * rtn_len)) == NULL) in decode_fp_to_long_double()
4103 if (snprintf(rtn, rtn_len, "%Lfd", f) >= (int)rtn_len) { in decode_fp_to_long_double()
4107 rtn_len *= BUFFER_GROWFACTOR; in decode_fp_to_long_double()