/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | list.h | 88 INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD() 191 #define list_for_each_entry(p, h, field) \ argument 195 #define list_for_each_entry_safe(p, n, h, field) \ argument 200 #define list_for_each_entry_from(p, h, field) \ argument 204 #define list_for_each_entry_continue(p, h, field) \ argument 213 #define list_for_each_entry_reverse(p, h, field) \ argument 217 #define list_for_each_entry_safe_reverse(p, n, h, field) \ argument 222 #define list_for_each_entry_continue_reverse(p, h, field) \ argument 226 #define list_for_each_prev(p, h) for (p = (h)->prev; p != (h); p = (p)->prev) argument 228 #define list_for_each_prev_safe(p, n, h) \ argument [all …]
|
/freebsd/contrib/less/ |
H A D | lglob.h | 26 #define DECL_GLOB_LIST(list) char **list; char **pp; argument 27 #define GLOB_LIST(filename,list) list = _fnexplode(filename) argument 28 #define GLOB_LIST_FAILED(list) list == NULL argument 29 #define SCAN_GLOB_LIST(list,p) pp = list; *pp != NULL; pp++ argument 30 #define INIT_GLOB_LIST(list,p) p = *pp argument 31 #define GLOB_LIST_DONE(list) _fnexplodefree(list) argument 36 #define DECL_GLOB_LIST(list) glob_t list; int i; argument 37 #define GLOB_LIST(filename,list) glob(filename,GLOB_NOCHECK,0,&list) argument 38 #define GLOB_LIST_FAILED(list) 0 argument 39 #define SCAN_GLOB_LIST(list,p) i = 0; i < list.gl_pathc; i++ argument [all …]
|
/freebsd/lib/libpmc/pmu-events/ |
H A D | list.h | 72 INIT_LIST_HEAD(struct list_head *list) in INIT_LIST_HEAD() 175 #define list_for_each_entry(p, h, field) \ argument 179 #define list_for_each_entry_safe(p, n, h, field) \ argument 184 #define list_for_each_entry_from(p, h, field) \ argument 188 #define list_for_each_entry_continue(p, h, field) \ argument 197 #define list_for_each_entry_reverse(p, h, field) \ argument 201 #define list_for_each_entry_safe_reverse(p, n, h, field) \ argument 206 #define list_for_each_entry_continue_reverse(p, h, field) \ argument 210 #define list_for_each_prev(p, h) for (p = (h)->prev; p != (h); p = (p)->prev) argument 227 list_move(struct list_head *list, struct list_head *head) in list_move() [all …]
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lstring.c | 51 unsigned int h = seed ^ cast(unsigned int, l); in luaS_hash() local 78 unsigned int h = lmod(gco2ts(p)->hash, newsize); /* new position */ in luaS_resize() local 98 int tag, unsigned int h, GCObject **list) { in createstrobj() 118 unsigned int h) { in newshrstr() 119 GCObject **list; /* (pointer to) list where it will be inserted */ in newshrstr() local 137 unsigned int h = luaS_hash(str, l, g->seed); in internshrstr() local
|
/freebsd/crypto/krb5/src/lib/krb5/os/ |
H A D | hostrealm.c | 54 struct hostrealm_module_handle *h, **hp; in free_handles() local 101 struct hostrealm_module_handle **list = NULL, *handle; in load_hostrealm_modules() local 154 host_realm(krb5_context context, struct hostrealm_module_handle *h, in host_realm() 164 fallback_realm(krb5_context context, struct hostrealm_module_handle *h, in fallback_realm() 174 default_realm(krb5_context context, struct hostrealm_module_handle *h, in default_realm() 184 free_list(krb5_context context, struct hostrealm_module_handle *h, in free_list() 185 char **list) in free_list() 195 char **list; in copy_list() local 450 krb5_free_host_realm(krb5_context context, char *const *list) in krb5_free_host_realm()
|
H A D | localauth.c | 53 struct localauth_module_handle *h, **hp; in free_handles() local 70 struct localauth_module_handle **hp, *h; in find_typed_module() local 86 check_conflict(krb5_context context, struct localauth_module_handle **list, in check_conflict() 148 struct localauth_module_handle **list = NULL, *handle; in load_localauth_modules() local 204 userok(krb5_context context, struct localauth_module_handle *h, in userok() 214 an2ln(krb5_context context, struct localauth_module_handle *h, in an2ln() 225 free_lname(krb5_context context, struct localauth_module_handle *h, char *str) in free_lname() 305 struct localauth_module_handle *h; in an2ln_auth_to_local() local
|
/freebsd/usr.bin/mail/ |
H A D | cmd2.c | 54 int *ip, *ip2, list[2], mdot; in next() local 276 int list[2]; in deltype() local 417 char **list = v; in retfield() local 429 char **list = v; in igfield() local 437 char **list = v; in saveretfield() local 445 char **list = v; in saveigfield() local 451 ignore1(char **list, struct ignoretab *tab, const char *which) in ignore1() 456 int h; in ignore1() local 482 int h; in igshow() local
|
H A D | cmd3.c | 359 int errs, h, s; in set() local 404 int errs, h; in unset() local 446 int h, s; in group() local 498 sort(char **list) in sort()
|
/freebsd/sys/dev/drm2/ |
H A D | drm_linux_list.h | 89 static inline void list_move(struct list_head *list, struct list_head *head) in list_move() 95 static inline void list_move_tail(struct list_head *list, in list_move_tail() 154 __list_splice(const struct list_head *list, struct list_head *prev, in __list_splice() 168 list_splice(const struct list_head *list, struct list_head *head) in list_splice() 199 hlist_unhashed(const struct hlist_node *h) in hlist_unhashed() 206 hlist_empty(const struct hlist_head *h) in hlist_empty() 232 hlist_add_head(struct hlist_node *n, struct hlist_head *h) in hlist_add_head()
|
/freebsd/crypto/krb5/src/lib/krb5/ccache/ |
H A D | ccselect.c | 41 struct ccselect_module_handle *h, **hp; in free_handles() local 58 struct ccselect_module_handle **list = NULL, *handle; in load_modules() local 129 struct ccselect_module_handle **hp, *h; in krb5_cc_select() local
|
/freebsd/crypto/heimdal/lib/hdb/ |
H A D | hdb.c | 371 const struct hdb_method *h; in find_method() local 393 hdb_list_builtin(krb5_context context, char **list) in hdb_list_builtin() 395 const struct hdb_method *h; in hdb_list_builtin() local 454 const struct hdb_method *h; in hdb_create() local 457 struct krb5_plugin *list = NULL, *e; in hdb_create() local
|
/freebsd/crypto/krb5/src/kdc/ |
H A D | policy.c | 65 char **list = NULL; in authind_strings() local 111 kdcpolicy_handle *hp, h; in check_kdcpolicy_as() local 151 kdcpolicy_handle *hp, h; in check_kdcpolicy_tgs() local 181 kdcpolicy_handle *hp, h; in unload_kdcpolicy_plugins() local 198 kdcpolicy_handle h; in load_kdcpolicy_plugins() local
|
H A D | kdc_authdata.c | 52 kdcauthdata_handle *list, *h; in load_authdata_plugins() local 95 kdcauthdata_handle *h; in unload_authdata_plugins() local 173 krb5_authdata **list = *existing_list, **nlist = *new_elements; in merge_authdata() local 308 krb5_authdata ad, *list[2], **cammac = NULL; in add_auth_indicators() local 588 kdcauthdata_handle *h; in handle_authdata() local
|
/freebsd/crypto/openssl/crypto/hashtable/ |
H A D | hashtable.c | 283 static int ossl_ht_flush_internal(HT *h) in ossl_ht_flush_internal() 314 int ossl_ht_flush(HT *h) in ossl_ht_flush() 319 void ossl_ht_free(HT *h) in ossl_ht_free() 336 size_t ossl_ht_count(HT *h) in ossl_ht_count() 344 void ossl_ht_foreach_until(HT *h, int (*cb)(HT_VALUE *obj, void *arg), in ossl_ht_foreach_until() 364 HT_VALUE_LIST *ossl_ht_filter(HT *h, size_t max_len, in ossl_ht_filter() 369 HT_VALUE_LIST *list = OPENSSL_zalloc(sizeof(HT_VALUE_LIST) in ossl_ht_filter() local 399 void ossl_ht_value_list_free(HT_VALUE_LIST *list) in ossl_ht_value_list_free() 421 static int grow_hashtable(HT *h, size_t oldsize) in grow_hashtable() 504 HT_VALUE *h = (HT_VALUE *)arg; in free_old_ht_value() local [all …]
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_taskdeps.h | 41 kmp_depnode_list *list) { in __kmp_depnode_list_free() 57 kmp_dephash_t *h) { in __kmp_dephash_free_entries() 83 static inline void __kmp_dephash_free(kmp_info_t *thread, kmp_dephash_t *h) { in __kmp_dephash_free()
|
/freebsd/contrib/lua/src/ |
H A D | lstring.c | 44 unsigned int h = seed ^ cast_uint(l); in luaS_hash() local 71 unsigned int h = lmod(p->hash, nsize); /* new position */ in tablerehash() local 143 static TString *createstrobj (lua_State *L, size_t l, int tag, unsigned int h) { in createstrobj() 193 unsigned int h = luaS_hash(str, l, g->seed); in internshrstr() local 194 TString **list = &tb->hash[lmod(h, tb->size)]; in internshrstr() local
|
H A D | lgc.c | 122 #define gnodelast(h) gnode(h, cast_sizet(sizenode(h))) argument 148 static void linkgclist_ (GCObject *o, GCObject **pnext, GCObject **list) { in linkgclist_() 446 static void traverseweakvalue (global_State *g, Table *h) { in traverseweakvalue() 480 static int traverseephemeron (global_State *g, Table *h, int inv) { in traverseephemeron() 523 static void traversestrongtable (global_State *g, Table *h) { in traversestrongtable() 542 static lu_mem traversetable (global_State *g, Table *h) { in traversetable() 700 Table *h = gco2t(w); in convergeephemerons() local 727 Table *h = gco2t(l); in clearbykeys() local 746 Table *h = gco2t(l); in clearbyvalues() local 1206 GCObject **list = correctgraylist(&g->grayagain); in correctgraylists() local
|
/freebsd/crypto/krb5/src/lib/kadm5/srv/ |
H A D | server_misc.c | 41 pwqual_handle *list; in init_pwqual() local 111 pwqual_handle *h; in passwd_check() local
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_symbolizer_win.cpp | 193 return h; in release() local 276 ChooseSymbolizerTools(IntrusiveList<SymbolizerTool> * list,LowLevelAllocator * allocator) ChooseSymbolizerTools() argument 311 IntrusiveList<SymbolizerTool> list; PlatformInit() local [all...] |
/freebsd/contrib/libedit/ |
H A D | history.c | 115 #define HNEXT(h, ev) (*(h)->h_next)((h)->h_ref, ev) argument 116 #define HFIRST(h, ev) (*(h)->h_first)((h)->h_ref, ev) argument 117 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev) argument 118 #define HLAST(h, ev) (*(h)->h_last)((h)->h_ref, ev) argument 119 #define HCURR(h, ev) (*(h)->h_curr)((h)->h_ref, ev) argument 120 #define HSET(h, ev, n) (*(h)->h_set)((h)->h_ref, ev, n) argument 121 #define HCLEAR(h, ev) (*(h)->h_clear)((h)->h_ref, ev) argument 122 #define HENTER(h, ev, str) (*(h)->h_enter)((h)->h_ref, ev, str) argument 123 #define HADD(h, ev, str) (*(h)->h_add)((h)->h_ref, ev, str) argument 124 #define HDEL(h, ev, n) (*(h)->h_del)((h)->h_ref, ev, n) argument [all …]
|
/freebsd/contrib/wpa/src/utils/ |
H A D | edit.c | 28 struct dl_list list; member 178 struct edit_history *h, *match = NULL, *last = NULL; in history_add() local 298 struct edit_history *h; in history_write() local 316 struct edit_history *h; in history_debug_dump() local 426 static void complete(int list) in complete() 869 struct edit_history *h; in search_find() local 1147 struct edit_history *h; in edit_deinit() local
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_match.c | 557 add_pattern_mbs(struct archive_match *a, struct match_list *list, in add_pattern_mbs() 577 add_pattern_wcs(struct archive_match *a, struct match_list *list, in add_pattern_wcs() 839 match_list_init(struct match_list *list) in match_list_init() 846 match_list_free(struct match_list *list) in match_list_free() 859 match_list_add(struct match_list *list, struct match *m) in match_list_add() 868 struct match_list *list, int mbs, const void **vp) in match_list_unmatched_inclusions_next() 1170 HANDLE h; in set_timefilter_pathname_mbs() local 1192 HANDLE h; in set_timefilter_pathname_wcs() local 1343 entry_list_init(struct entry_list *list) in entry_list_init() 1350 entry_list_free(struct entry_list *list) in entry_list_free() [all …]
|
/freebsd/crypto/krb5/src/lib/krb5/krb/ |
H A D | preauth2.c | 65 clpreauth_handle *hp, h; in free_handles() local 83 clpreauth_handle h; in search_module_list() local 123 clpreauth_handle *list = NULL, h; in k5_init_preauth_context() local 246 clpreauth_handle h; in k5_preauth_request_context_init() local 287 clpreauth_handle h; in k5_preauth_request_context_fini() local 322 clpreauth_is_real(krb5_context context, clpreauth_handle h, in clpreauth_is_real() 331 clpreauth_prep_questions(krb5_context context, clpreauth_handle h, in clpreauth_prep_questions() 345 clpreauth_process(krb5_context context, clpreauth_handle h, in clpreauth_process() 358 clpreauth_tryagain(krb5_context context, clpreauth_handle h, in clpreauth_tryagain() 374 clpreauth_gic_opts(krb5_context context, clpreauth_handle h, in clpreauth_gic_opts() [all …]
|
/freebsd/contrib/unbound/util/data/ |
H A D | msgreply.c | 725 hashvalue_type h = 0xab; query_info_hash() local 736 query_info_entrysetup(struct query_info * q,struct reply_info * r,hashvalue_type h) query_info_entrysetup() argument 1107 edns_opt_list_append_ede(struct edns_option ** list,struct regional * region,sldns_ede_code code,const char * txt) edns_opt_list_append_ede() argument 1137 edns_opt_list_append_keepalive(struct edns_option ** list,int msec,struct regional * region) edns_opt_list_append_keepalive() argument 1147 edns_opt_list_append(struct edns_option ** list,uint16_t code,size_t len,uint8_t * data,struct regional * region) edns_opt_list_append() argument 1176 edns_opt_list_remove(struct edns_option ** list,uint16_t code) edns_opt_list_remove() argument 1321 edns_opt_copy_region(struct edns_option * list,struct regional * region) edns_opt_copy_region() argument 1351 edns_opt_copy_filter_region(struct edns_option * list,uint16_t * filter_list,size_t filter_list_len,struct regional * region) edns_opt_copy_filter_region() argument 1420 edns_opt_list_free(struct edns_option * list) edns_opt_list_free() argument 1431 edns_opt_copy_alloc(struct edns_option * list) edns_opt_copy_alloc() argument 1465 edns_opt_list_find(struct edns_option * list,uint16_t code) edns_opt_list_find() argument [all...] |
/freebsd/contrib/unbound/smallapp/ |
H A D | unbound-checkconf.c | 315 warn_hosts(const char * typ,struct config_stub * list) warn_hosts() argument 320 struct config_strlist* h; warn_hosts() local 562 check_chroot_filelist(const char * desc,struct config_strlist * list,const char * chrootdir,struct config_file * cfg) check_chroot_filelist() argument 573 check_chroot_filelist_wild(const char * desc,struct config_strlist * list,const char * chrootdir,struct config_file * cfg) check_chroot_filelist_wild() argument [all...] |