| /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 | 372 const struct hdb_method *h; in find_method() local 394 hdb_list_builtin(krb5_context context, char **list) in hdb_list_builtin() 396 const struct hdb_method *h; in hdb_list_builtin() local 455 const struct hdb_method *h; in hdb_create() local 458 struct krb5_plugin *list = NULL, *e; in hdb_create() local
|
| /freebsd/crypto/openssl/crypto/hashtable/ |
| H A D | hashtable.c | 284 static int ossl_ht_flush_internal(HT *h) in ossl_ht_flush_internal() 324 int ossl_ht_flush(HT *h) in ossl_ht_flush() 329 void ossl_ht_free(HT *h) in ossl_ht_free() 352 size_t ossl_ht_count(HT *h) in ossl_ht_count() 360 void ossl_ht_foreach_until(HT *h, int (*cb)(HT_VALUE *obj, void *arg), in ossl_ht_foreach_until() 380 HT_VALUE_LIST *ossl_ht_filter(HT *h, size_t max_len, in ossl_ht_filter() 385 HT_VALUE_LIST *list = OPENSSL_zalloc(sizeof(HT_VALUE_LIST) in ossl_ht_filter() local 415 void ossl_ht_value_list_free(HT_VALUE_LIST *list) in ossl_ht_value_list_free() 437 static int grow_hashtable(HT *h, size_t oldsize) in grow_hashtable() 529 HT_VALUE *h = (HT_VALUE *)arg; in free_old_ht_value() local [all …]
|
| /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/tests/sys/net/bpf/ |
| H A D | pcap-test.c | 110 list(int argc __unused, char *argv[] __unused) in list() function 144 inject_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *bytes) in inject_packet() 182 store_packet(u_char *user, const struct pcap_pkthdr *h, const u_char *bytes) in store_packet() 184 struct plist *list = (struct plist *)user; in store_packet() local
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp_taskdeps.h | 44 kmp_depnode_list *list) { in __kmp_depnode_list_free() 60 kmp_dephash_t *h) { in __kmp_dephash_free_entries() 86 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
|
| /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 | 192 HANDLE h = h_; in release() local 275 static void ChooseSymbolizerTools(IntrusiveList<SymbolizerTool> *list, in ChooseSymbolizerTools() 310 IntrusiveList<SymbolizerTool> list; in PlatformInit() local
|
| /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 | 572 add_pattern_mbs(struct archive_match *a, struct match_list *list, in add_pattern_mbs() 592 add_pattern_wcs(struct archive_match *a, struct match_list *list, in add_pattern_wcs() 855 match_list_init(struct match_list *list) in match_list_init() 862 match_list_free(struct match_list *list) in match_list_free() 875 match_list_add(struct match_list *list, struct match *m) in match_list_add() 884 struct match_list *list, int mbs, const void **vp) in match_list_unmatched_inclusions_next() 1186 HANDLE h; in set_timefilter_pathname_mbs() local 1208 HANDLE h; in set_timefilter_pathname_wcs() local 1359 entry_list_init(struct entry_list *list) in entry_list_init() 1366 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/smallapp/ |
| H A D | unbound-checkconf.c | 368 warn_hosts(const char* typ, struct config_stub* list) in warn_hosts() 373 struct config_strlist* h; in warn_hosts() local 650 check_chroot_filelist(const char* desc, struct config_strlist* list, in check_chroot_filelist() 661 check_chroot_filelist_wild(const char* desc, struct config_strlist* list, in check_chroot_filelist_wild() 756 file_list_contains(struct config_strlist* list, char* fname, in file_list_contains() 779 file_list_contains_wild(struct config_strlist* list, char* fname, in file_list_contains_wild()
|
| /freebsd/contrib/unbound/util/data/ |
| H A D | msgreply.c | 780 hashvalue_type h = 0xab; in query_info_hash() local 791 hashvalue_type h) in query_info_entrysetup() 1173 int edns_opt_list_append_ede(struct edns_option** list, struct regional* region, in edns_opt_list_append_ede() 1203 int edns_opt_list_append_keepalive(struct edns_option** list, int msec, in edns_opt_list_append_keepalive() 1213 int edns_opt_list_append(struct edns_option** list, uint16_t code, size_t len, in edns_opt_list_append() 1242 int edns_opt_list_remove(struct edns_option** list, uint16_t code) in edns_opt_list_remove() 1387 struct edns_option* edns_opt_copy_region(struct edns_option* list, in edns_opt_copy_region() 1417 struct edns_option* edns_opt_copy_filter_region(struct edns_option* list, in edns_opt_copy_filter_region() 1486 void edns_opt_list_free(struct edns_option* list) in edns_opt_list_free() 1497 struct edns_option* edns_opt_copy_alloc(struct edns_option* list) in edns_opt_copy_alloc() [all …]
|