Home
last modified time | relevance | path

Searched defs:l (Results 1 – 25 of 755) sorted by relevance

12345678910>>...31

/titanic_41/usr/src/uts/common/sys/
H A Drwstlock.h60 #define RWST_HELD(l) ((l)->rwst_count != 0) argument
61 #define RWST_READ_HELD(l) ((l)->rwst_count > 0) argument
62 #define RWST_WRITE_HELD(l) ((l)->rwst_count < 0) argument
63 #define RWST_WRITE_OWNER(l) \ argument
65 #define RWST_OWNER(l) (RWST_WRITE_HELD(l) ? \ argument
67 #define RWST_READ_WANTED(l) CV_HAS_WAITERS(&(l)->rwst_rcv) argument
68 #define RWST_WRITE_WANTED(l) CV_HAS_WAITERS(&(l)->rwst_wcv) argument
71 #define RWST_READ_WAIT(l, f) RWST_WAIT(&(l)->rwst_rcv, &(l)->rwst_lock, f) argument
72 #define RWST_WRITE_WAIT(l, f) RWST_WAIT(&(l)->rwst_wcv, &(l)->rwst_lock, f) argument
73 #define RWST_READ_WAKE_ALL(l) cv_broadcast(&(l)->rwst_rcv) argument
[all …]
/titanic_41/usr/src/uts/common/os/
H A Drwstlock.c61 rwst_enter_common(rwstlock_t *l, krw_t rw, int flags) in rwst_enter_common()
133 rwst_exit(rwstlock_t *l) in rwst_exit()
152 rwst_enter(rwstlock_t *l, krw_t rw) in rwst_enter()
158 rwst_enter_sig(rwstlock_t *l, krw_t rw) in rwst_enter_sig()
164 rwst_tryenter(rwstlock_t *l, krw_t rw) in rwst_tryenter()
170 rwst_lock_held(rwstlock_t *l, krw_t rw) in rwst_lock_held()
180 rwst_init(rwstlock_t *l, char *name, krw_type_t krw_t, void *arg) in rwst_init()
189 rwst_destroy(rwstlock_t *l) in rwst_destroy()
198 rwst_owner(rwstlock_t *l) in rwst_owner()
/titanic_41/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_rwlock.c59 smbfs_rw_enter_sig(smbfs_rwlock_t *l, krw_t rw, int intr) in smbfs_rw_enter_sig()
149 smbfs_rw_tryenter(smbfs_rwlock_t *l, krw_t rw) in smbfs_rw_tryenter()
192 smbfs_rw_exit(smbfs_rwlock_t *l) in smbfs_rw_exit()
225 smbfs_rw_lock_held(smbfs_rwlock_t *l, krw_t rw) in smbfs_rw_lock_held()
236 smbfs_rw_init(smbfs_rwlock_t *l, char *name, krw_type_t type, void *arg) in smbfs_rw_init()
247 smbfs_rw_destroy(smbfs_rwlock_t *l) in smbfs_rw_destroy()
/titanic_41/usr/src/uts/i86pc/sys/
H A Dhpet_acpi.h139 #define HPET_GCAP_CNTR_CLK_PERIOD(l) (l >> 32) argument
140 #define HPET_GCAP_VENDOR_ID(l) BITX(l, 31, 16) argument
141 #define HPET_GCAP_LEG_ROUTE_CAP(l) BITX(l, 15, 15) argument
142 #define HPET_GCAP_CNT_SIZE_CAP(l) BITX(l, 13, 13) argument
143 #define HPET_GCAP_NUM_TIM_CAP(l) BITX(l, 12, 8) argument
144 #define HPET_GCAP_REV_ID(l) BITX(l, 7, 0) argument
175 #define HPET_GCFR_LEG_RT_CNF_BITX(l) BITX(l, 1, 1) argument
176 #define HPET_GCFR_ENABLE_CNF_BITX(l) BITX(l, 0, 0) argument
181 #define HPET_GIS_T2_INT_STS(l) BITX(l, 2, 2) argument
182 #define HPET_GIS_T1_INT_STS(l) BITX(l, 1, 1) argument
[all …]
/titanic_41/usr/src/uts/common/sys/tsol/
H A Dlabel_macro.h110 #define _MTYPE(l, t) \ argument
113 #define _MSETTYPE(l, t) \ argument
116 #define _MGETTYPE(l) (((_mac_label_impl_t *)(l))->id) argument
145 #define LCLASS_SET(slp, l) ((slp)->_lclass.class_u.class_chunk = (l)) argument
150 #define LCLASS_SET(slp, l) \ argument
161 #define ICLASS_SET(ilp, l) ((ilp)->_iclass.class_u.class_chunk = (l)) argument
166 #define ICLASS_SET(ilp, l) \ argument
183 #define _LOW_LABEL(l, t) \ argument
189 #define _HIGH_LABEL(l, t) \ argument
198 #define BLTYPE(l, t) \ argument
[all …]
/titanic_41/usr/src/common/tsol/
H A Dltos.c57 #define malloc(l) kmem_alloc(l, KM_NOSLEEP) argument
58 #define freeit(a, l) kmem_free(a, l) argument
60 #define freeit(a, l) free(a) argument
72 #define HEX(h, i, l, s) \ argument
78 __hex(char **s, const m_label_t *l) in __hex()
137 l_to_str_internal(const m_label_t *l, char **s) in l_to_str_internal()
186 label_to_str(const m_label_t *l, char **s, const m_label_str_t t, uint_t f) in label_to_str()
H A Dstol.c63 unhex(const char **h, uchar_t *l, int len) in unhex()
105 htol(const char *s, m_label_t *l) in htol()
154 hexstr_to_label(const char *s, m_label_t *l) in hexstr_to_label()
220 str_to_label(const char *str, m_label_t **l, const m_label_type_t t, uint_t f, in str_to_label()
383 m_label_t *l; in m_label_alloc() local
418 m_label_dup(m_label_t **d, const m_label_t *l) in m_label_dup()
443 m_label_free(m_label_t *l) in m_label_free()
/titanic_41/usr/src/uts/common/fs/zfs/
H A Dzap_leaf.c49 #define LEAF_HASH(l, h) \ argument
54 #define LEAF_HASH_ENTPTR(l, h) (&zap_leaf_phys(l)->l_hash[LEAF_HASH(l, h)]) argument
109 zap_leaf_t l; in zap_leaf_byteswap() local
161 zap_leaf_init(zap_leaf_t *l, boolean_t sort) in zap_leaf_init()
187 zap_leaf_chunk_alloc(zap_leaf_t *l) in zap_leaf_chunk_alloc()
206 zap_leaf_chunk_free(zap_leaf_t *l, uint16_t chunk) in zap_leaf_chunk_free()
226 zap_leaf_array_create(zap_leaf_t *l, const char *buf, in zap_leaf_array_create()
266 zap_leaf_array_free(zap_leaf_t *l, uint16_t *chunkp) in zap_leaf_array_free()
283 zap_leaf_array_read(zap_leaf_t *l, uint16_t chunk, in zap_leaf_array_read()
342 zap_leaf_array_match(zap_leaf_t *l, zap_name_t *zn, in zap_leaf_array_match()
[all …]
/titanic_41/usr/src/cmd/lms/
H A DProtocol.cpp125 Lock l(_versionLock); local
208 Lock l(_channelsLock); local
221 Lock l(_portsLock); local
456 Lock l(_channelsLock); local
463 Lock l(_channelsLock); local
496 Lock l(_portsLock); local
511 Lock l(_channelsLock); local
562 Lock l(_portsLock); local
599 Lock l(_channelsLock); local
650 Lock l(_channelsLock); local
[all …]
H A DProtocolCompat.cpp105 Lock l(_channelsLock); in _LmeReceiveCompat() local
120 Lock l(_channelsLock); in _LmeReceiveCompat() local
135 Lock l(_channelsLock); in _LmeReceiveCompat() local
/titanic_41/usr/src/cmd/sendmail/libsm/
H A Dstrdup.c66 size_t l; local
97 size_t l; local
125 size_t l; local
158 size_t l; local
/titanic_41/usr/src/lib/libshell/common/sh/
H A Dtrestore.c59 long l = sfgetl(infile); in r_tree() local
180 register long l; in r_arg() local
230 register long l; in r_redirect() local
299 register long l; in r_comlist() local
314 register long l; in r_switch() local
336 register unsigned long l = sfgetu(in); in r_string() local
/titanic_41/usr/src/cmd/vi/port/
H A Dex_vadj.c116 vreopen(int p, int lineno, int l) in vreopen()
209 vglitchup(int l, int o) in vglitchup()
250 vinslin(int p, int cnt, int l) in vinslin()
330 vopenup(int cnt, bool could, int l) in vopenup()
642 int l; in vredraw() local
761 vdellin(int p, int cnt, int l) in vdellin()
859 int l; in vsync1() local
931 vcloseup(int l, int cnt) in vcloseup()
954 vreplace(int l, int cnt, int newcnt) in vreplace()
1116 int l; in vdirty() local
/titanic_41/usr/src/tools/pmodes/
H A Dbinsearch.c62 item_add(itemlist l, char *s) in item_add()
82 item_add_list(itemlist l, char **s, int n, int alloc) in item_add_list()
101 item_addfile(itemlist l, const char *fname) in item_addfile()
128 item_search(itemlist l, const char *s) in item_search()
153 *item_get(itemlist l, int i) in item_get()
/titanic_41/usr/src/lib/efcode/engine/
H A Dinit.c40 safe_malloc(size_t n, char *f, int l) in safe_malloc()
65 safe_realloc(void *p, size_t n, char *f, int l) in safe_realloc()
83 safe_free(void *p, char *f, int l) in safe_free()
91 safe_strdup(char *s, char *f, int l) in safe_strdup()
/titanic_41/usr/src/uts/i86pc/io/amd_iommu/
H A Damd_iommu_page_tables.h45 #define AMD_IOMMU_VA_NBITS(l) ((l) == 6 ? 7 : 9) argument
46 #define AMD_IOMMU_VA_BITMASK(l) ((1 << AMD_IOMMU_VA_NBITS(l)) - 1) argument
47 #define AMD_IOMMU_VA_SHIFT(v, l) \ argument
49 #define AMD_IOMMU_VA_BITS(v, l) \ argument
51 #define AMD_IOMMU_VA_TOTBITS(l) \ argument
53 #define AMD_IOMMU_VA_TOTMASK(l) ((1 << AMD_IOMMU_VA_TOTBITS(l)) - 1) argument
54 #define AMD_IOMMU_VA_INVAL_SETMASK(l) \ argument
56 #define AMD_IOMMU_VA_INVAL_CLRMASK(l) \ argument
58 #define AMD_IOMMU_VA_INVAL(v, l) \ argument
/titanic_41/usr/src/lib/libldap5/include/ldap/
H A Dportable.h273 #define GETHOSTBYNAME( n, r, b, l, e ) gethostbyname( n ) argument
274 #define NSLDAPI_CTIME( c, b, l ) ctime( c ) argument
275 #define STRTOK( s1, s2, l ) strtok( s1, s2 ) argument
282 #define GETHOSTBYNAME( n, r, b, l, e ) gethostbyname( n ) argument
291 #define GETHOSTBYNAME( n, r, b, l, e ) \ argument
295 #define GETHOSTBYNAME( n, r, b, l, e ) nsldapi_compat_gethostbyname_r( n, r, (char *)&b, l, e ) argument
300 #define GETHOSTBYNAME( n, r, b, l, e ) gethostbyname_r( n, r, b, l, e ) argument
307 #define NSLDAPI_CTIME( c, b, l ) ctime( c ) argument
309 #define NSLDAPI_CTIME( c, b, l ) nsldapi_compat_ctime_r( c, b, l ) argument
312 #define NSLDAPI_CTIME( c, b, l ) ctime_r( c, b ) argument
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.lib/mdnsd/
H A DDNSDigest.c538 #define REVERSE_FETCH32(a,l) ( \ argument
544 #define REVERSE_FETCH32(a,l) ( \ argument
586 # define HOST_FETCH32(p,l) LE_FETCH32(p) argument
588 # define HOST_FETCH32(p,l) REVERSE_FETCH32(p,l) argument
600 # define HOST_FETCH32(p,l) BE_FETCH32(p) argument
602 # define HOST_FETCH32(p,l) REVERSE_FETCH32(p,l) argument
616 #define HOST_c2l(c,l) (l =(((unsigned long)(*((c)++)))<<24), \ argument
621 #define HOST_p_c2l(c,l,n) { \ argument
628 #define HOST_p_c2l_p(c,l,sc,len) { \ argument
637 #define HOST_c2l_p(c,l,n) { \ argument
[all …]
/titanic_41/usr/src/cmd/csh/
H A Dsh.parse.c86 int l = 0; in asyn0() local
231 int l; in syn0() local
299 int l; in syn1() local
341 int l = 0; in syn1a() local
383 int l = 0; in syn1b() local
425 int l = 0; in syn2() local
478 int l; in syn3() local
/titanic_41/usr/src/cmd/rpcgen/
H A Drpc_clntout.c60 list *l; in write_stubs() local
115 decl_list *l; in printarglist() local
233 decl_list *l; in printbody() local
H A Drpc_svcout.c202 list *l; in write_netid_register() local
253 list *l; in write_nettype_register() local
320 list *l; in write_programs() local
351 decl_list *l; in write_real_program() local
755 list *l; in print_pmapunset() local
952 list *l; in write_pm_most() local
1122 list *l; in write_inetd_register() local
/titanic_41/usr/src/head/
H A Dxlocale.h95 #define MB_CUR_MAX_L(l) (__mb_cur_max_l(l)) argument
108 #define getwchar_l(l) fgetwc_l(stdin, (l)) argument
/titanic_41/usr/src/uts/i86pc/vm/
H A Dhat_pte.h51 #define PTE_IS_LGPG(p, l) ((l) > 0 && PTE_GET((p), PT_PAGESIZE)) argument
56 #define PTE_ISPAGE(p, l) \ argument
76 #define PTE2MFN(p, l) \ argument
79 #define PTE2PFN(p, l) pte2pfn(p, l) argument
102 #define MAKEPTP(pfn, l) \ argument
104 #define MAKEPTE(pfn, l) \ argument
142 #define LEVEL_SHIFT(l) (mmu.level_shift[l]) argument
143 #define LEVEL_SIZE(l) (mmu.level_size[l]) argument
144 #define LEVEL_OFFSET(l) (mmu.level_offset[l]) argument
145 #define LEVEL_MASK(l) (mmu.level_mask[l]) argument
/titanic_41/usr/src/lib/libc/port/locale/
H A Dfgetwc.c113 rmutex_t *l; in fgetwc() local
132 rmutex_t *l; in __fgetwc_xpg5() local
149 rmutex_t *l; in fgetwc_l() local
/titanic_41/usr/src/stand/lib/fs/ufs/
H A Dlufsboot.c195 #define inslist(lh, l) if ((*(lh))) { \ argument
206 #define remlist(lh, l) \ argument
314 lb_me_t *l; in lufs_alloc_from_logbuf() local
641 lb_me_t **lh, *l, *lnext; in lufs_logscan_freecancel() local
684 lb_me_t **lh, *l; in lufs_logscan_addmap() local
906 lb_me_t **lh, *l, *lnext; in lufs_logscan_postscan() local
1005 lb_me_t **lh, *l; in lufs_merge_deltas() local

12345678910>>...31