Lines Matching refs:t
274 static inline int tcg_type_size(TCGType t) in tcg_type_size() argument
276 unsigned i = t; in tcg_type_size()
662 static inline TCGv_i32 temp_tcgv_i32(TCGTemp *t) in temp_tcgv_i32() argument
664 (void)temp_idx(t); /* trigger embedded assert */ in temp_tcgv_i32()
665 return (TCGv_i32)((void *)t - (void *)tcg_ctx); in temp_tcgv_i32()
668 static inline TCGv_i64 temp_tcgv_i64(TCGTemp *t) in temp_tcgv_i64() argument
670 return (TCGv_i64)temp_tcgv_i32(t); in temp_tcgv_i64()
673 static inline TCGv_i128 temp_tcgv_i128(TCGTemp *t) in temp_tcgv_i128() argument
675 return (TCGv_i128)temp_tcgv_i32(t); in temp_tcgv_i128()
678 static inline TCGv_ptr temp_tcgv_ptr(TCGTemp *t) in temp_tcgv_ptr() argument
680 return (TCGv_ptr)temp_tcgv_i32(t); in temp_tcgv_ptr()
683 static inline TCGv_vec temp_tcgv_vec(TCGTemp *t) in temp_tcgv_vec() argument
685 return (TCGv_vec)temp_tcgv_i32(t); in temp_tcgv_vec()
1025 static inline int tcg_can_emit_vec_op(TCGOpcode o, TCGType t, unsigned ve) in tcg_can_emit_vec_op() argument