Lines Matching defs:l
57 #define malloc(l) kmem_alloc(l, KM_NOSLEEP)
58 #define freeit(a, l) kmem_free(a, l)
60 #define freeit(a, l) free(a)
72 #define HEX(h, i, l, s) \
74 h[i++] = digits[(unsigned int)(*l >> 4)];\
75 h[i++] = digits[(unsigned int)(*l++&0xF)]; }
78 __hex(char **s, const m_label_t *l)
86 hl = (uchar_t *)&(((_mac_label_impl_t *)l)->_c_len);
137 l_to_str_internal(const m_label_t *l, char **s)
145 if (!(_MTYPE(l, SUN_MAC_ID) || _MTYPE(l, SUN_UCLR_ID))) {
152 if (_MEQUAL(&low, (_mac_label_impl_t *)l)) {
158 if (_MEQUAL(&high, (_mac_label_impl_t *)l)) {
165 return (__hex(s, l));
172 * Entry l = label to convert;
186 label_to_str(const m_label_t *l, char **s, const m_label_str_t t, uint_t f)
206 lscall.label = *l;
231 if (_MEQUAL(&low, (_mac_label_impl_t *)l)) {
236 } else if (_MEQUAL(&high, (_mac_label_impl_t *)l)) {
254 return (l_to_str_internal(l, s));
262 ccall.label = *l;
310 prcall.label = *l;