Searched refs:cte_bits (Results 1 - 13 of 13) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/abi/apptrace/common/
H A Dapptraceutil.c69 (CTF_INT_CHAR | CTF_INT_SIGNED) && e.cte_bits == NBBY) {
101 uint64_t mask = (1ULL << ep->cte_bits) - 1;
104 size_t size = (ep->cte_bits + (NBBY - 1)) / NBBY;
116 off += ep->cte_bits;
130 * right so that the value is in the lowest 'cte_bits' of 'value'.
160 size = e.cte_bits / NBBY;
161 if (size > 8 || (e.cte_bits % NBBY) != 0 || (size & (size - 1)) != 0) {
167 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY) {
207 e.cte_bits == sizeof (float) * NBBY) {
210 e.cte_bits
[all...]
/opensolaris-onvv-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_print.c82 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY)
838 size_t size = (ep->cte_bits + (NBBY - 1)) / NBBY;
839 uint64_t mask = (1ULL << ep->cte_bits) - 1;
849 if (ep->cte_bits > sizeof (value) * NBBY - 1) {
850 mdb_printf("??? (invalid bitfield size %u)", ep->cte_bits);
861 off += ep->cte_bits;
881 * right so that the value is in the lowest 'cte_bits' of 'value'.
896 int sshift = sizeof (value) * NBBY - ep->cte_bits;
943 size = ep->cte_bits / NBBY;
944 if (size > 8 || (ep->cte_bits
[all...]
H A Dmdb_ctf.c791 size = e.cte_bits;
/opensolaris-onvv-gate/usr/src/lib/libdtrace/common/
H A Ddt_parser.h246 (CTF_INT_CHAR | CTF_INT_SIGNED) && (e).cte_bits == NBBY)
249 ((e).cte_offset == 0 && (e).cte_bits == 0)
H A Ddt_cg.c160 * rounding cte_bits up to a byte boundary and then finding the
165 size = clp2(P2ROUNDUP(e.cte_bits, NBBY) / NBBY);
247 if (ctf_type_encoding(fp, mp->ctm_type, &e) != 0 || e.cte_bits > 64) {
249 "bits %u\n", mp->ctm_offset, mp->ctm_type, e.cte_bits);
263 * must subtract (ctm_offset % NBBY + cte_bits) from the size in bits
265 * rounding cte_bits up to a byte boundary and then finding the
271 shift = clp2(P2ROUNDUP(e.cte_bits, NBBY) / NBBY) * NBBY -
274 shift = mp->ctm_offset % NBBY + e.cte_bits;
280 dt_cg_setx(dlp, r2, 64 - e.cte_bits);
285 shift = clp2(P2ROUNDUP(e.cte_bits, NBB
[all...]
H A Ddt_decl.c594 if (dnp->dn_value > cte.cte_bits) {
600 cte.cte_bits = (uint_t)dnp->dn_value;
H A Ddt_parser.c358 lrank = le.cte_bits + ((le.cte_format & CTF_INT_SIGNED) == 0);
359 rrank = re.cte_bits + ((re.cte_format & CTF_INT_SIGNED) == 0);
664 size_t size = e.cte_bits / NBBY;
666 if (size > 8 || (e.cte_bits % NBBY) != 0 || (size & (size - 1)))
674 if (e.cte_bits / NBBY > sizeof (uint64_t))
H A Ddt_printf.c126 ctf_type_encoding(ctfp, base, &e) == 0 && e.cte_bits == 32);
/opensolaris-onvv-gate/usr/src/uts/common/sys/
H A Dctf_api.h85 uint_t cte_bits; /* size of storage in bits */ member in struct:ctf_encoding
/opensolaris-onvv-gate/usr/src/tools/ctf/stabs/common/
H A Dfth_struct.c363 e.cte_bits, mem->fsm_format, level));
/opensolaris-onvv-gate/usr/src/common/ctf/
H A Dctf_create.c311 dtd->dtd_u.dtu_enc.cte_bits);
316 dtd->dtd_u.dtu_enc.cte_bits);
599 dtd->dtd_data.ctt_size = clp2(P2ROUNDUP(ep->cte_bits, NBBY) / NBBY);
975 off += linfo.cte_bits;
H A Dctf_types.c520 ep->cte_bits = CTF_INT_BITS(data);
526 ep->cte_bits = CTF_FP_BITS(data);
H A Dctf_open.c374 &cte) == 0 && cte.cte_bits == 0) {

Completed in 118 milliseconds