Lines Matching refs:offset
66 * flags, and the byte offset of each of the sections relative to the end of the
87 * Strings are recorded as a string table ID (0 or 1) and a byte offset into the
101 #define CTF_MAX_NAME 0x7fffffff /* max offset into a string table */
103 #define CTF_MAX_INTOFF 0xff /* max offset of intrinsic value in bits */
121 uint_t cth_lbloff; /* offset of label section */
122 uint_t cth_objtoff; /* offset of object section */
123 uint_t cth_funcoff; /* offset of function section */
124 uint_t cth_typeoff; /* offset of type section */
125 uint_t cth_stroff; /* offset of string section */
204 * offset = CTF_NAME_OFFSET(c.ctt_name); <-- string table byte offset
207 * c.ctt_name = CTF_TYPE_NAME(stid, offset);
220 #define CTF_TYPE_NAME(stid, offset) \
221 (((stid) << 31) | ((offset) & 0x7fffffff))
273 * Values for ctt_type when kind is CTF_K_INTEGER. The flags, offset in bits,
280 #define CTF_INT_DATA(encoding, offset, bits) \
281 (((encoding) << 24) | ((offset) << 16) | (bits))
289 * Values for ctt_type when kind is CTF_K_FLOAT. The encoding, offset in bits,
296 #define CTF_FP_DATA(encoding, offset, bits) \
297 (((encoding) << 24) | ((offset) << 16) | (bits))
333 ushort_t ctm_offset; /* offset of this member in bits */
340 uint_t ctlm_offsethi; /* high 32 bits of member offset in bits */
341 uint_t ctlm_offsetlo; /* low 32 bits of member offset in bits */
346 #define CTF_OFFSET_TO_LMEMHI(offset) ((uint32_t)((uint64_t)(offset) >> 32))
347 #define CTF_OFFSET_TO_LMEMLO(offset) ((uint32_t)(offset))