Lines Matching refs:total_bytes
7036 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type)); in native_encode_int() local
7040 if (total_bytes > len) in native_encode_int()
7042 words = total_bytes / UNITS_PER_WORD; in native_encode_int()
7044 for (byte = 0; byte < total_bytes; byte++) in native_encode_int()
7053 if (total_bytes > UNITS_PER_WORD) in native_encode_int()
7065 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte; in native_encode_int()
7068 return total_bytes; in native_encode_int()
7081 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type)); in native_encode_real() local
7090 if (total_bytes > len) in native_encode_real()
7096 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT; in native_encode_real()
7117 return total_bytes; in native_encode_real()
7221 int total_bytes = GET_MODE_SIZE (TYPE_MODE (type)); in native_interpret_int() local
7227 if (total_bytes > len) in native_interpret_int()
7229 if (total_bytes * BITS_PER_UNIT > 2 * HOST_BITS_PER_WIDE_INT) in native_interpret_int()
7231 words = total_bytes / UNITS_PER_WORD; in native_interpret_int()
7233 for (byte = 0; byte < total_bytes; byte++) in native_interpret_int()
7236 if (total_bytes > UNITS_PER_WORD) in native_interpret_int()
7248 offset = BYTES_BIG_ENDIAN ? (total_bytes - 1) - byte : byte; in native_interpret_int()
7271 int total_bytes = GET_MODE_SIZE (mode); in native_interpret_real() local
7280 total_bytes = GET_MODE_SIZE (TYPE_MODE (type)); in native_interpret_real()
7281 if (total_bytes > len || total_bytes > 24) in native_interpret_real()
7286 for (bitpos = 0; bitpos < total_bytes * BITS_PER_UNIT; in native_interpret_real()