Lines Matching refs:encoding
132 int_encoding_to_str(uint_t encoding) in int_encoding_to_str() argument
136 if (encoding == 0 || (encoding & ~(CTF_INT_SIGNED | CTF_INT_CHAR | in int_encoding_to_str()
138 (void) snprintf(buf, sizeof (buf), " 0x%x", encoding); in int_encoding_to_str()
141 if (encoding & CTF_INT_SIGNED) in int_encoding_to_str()
143 if (encoding & CTF_INT_CHAR) in int_encoding_to_str()
145 if (encoding & CTF_INT_BOOL) in int_encoding_to_str()
147 if (encoding & CTF_INT_VARARGS) in int_encoding_to_str()
155 fp_encoding_to_str(uint_t encoding) in fp_encoding_to_str() argument
165 if (encoding < 1 || encoding >= (sizeof (encs) / sizeof (char *))) { in fp_encoding_to_str()
166 (void) snprintf(buf, sizeof (buf), "%u", encoding); in fp_encoding_to_str()
170 return (encs[encoding]); in fp_encoding_to_str()
447 uint_t encoding = *((const uint_t *)u.ptr); in read_types() local
452 CTF_INT_ENCODING(encoding)), in read_types()
453 CTF_INT_OFFSET(encoding), in read_types()
454 CTF_INT_BITS(encoding)); in read_types()
461 uint_t encoding = *((const uint_t *)u.ptr); in read_types() local
466 CTF_FP_ENCODING(encoding)), in read_types()
467 CTF_FP_OFFSET(encoding), in read_types()
468 CTF_FP_BITS(encoding)); in read_types()