| /freebsd-11-stable/contrib/libarchive/libarchive/test/ |
| HD | test_write_format_iso9660_filename.c | 49 struct fns { struct 73 verify_file(struct archive *a, enum vtype type, struct fns *fns) in verify_file() argument 98 for (i = 0; i < fns->cnt; i++) { in verify_file() 110 assert(strcmp(fns->names[i], pathname) != 0); in verify_file() 111 assert((length = strlen(pathname)) <= fns->maxlen); in verify_file() 112 if (length > fns->longest_len) in verify_file() 113 fns->longest_len = length; in verify_file() 117 assert((size_t)(p - pathname) <= fns->maxflen); in verify_file() 119 assert(strlen(p+1) <= fns->maxelen); in verify_file() 120 if (fns->opt & ONE_DOT) { in verify_file() [all …]
|
| /freebsd-11-stable/contrib/binutils/binutils/ |
| HD | debug.c | 2308 debug_write (void *handle, const struct debug_write_fns *fns, void *fhandle) in debug_write() argument 2336 if (! (*fns->start_compilation_unit) (fhandle, u->files->filename)) in debug_write() 2346 else if (! (*fns->start_source) (fhandle, f->filename)) in debug_write() 2351 if (! debug_write_name (info, fns, fhandle, n)) in debug_write() 2357 if (! debug_write_linenos (info, fns, fhandle, (bfd_vma) -1)) in debug_write() 2368 const struct debug_write_fns *fns, void *fhandle, in debug_write_name() argument 2374 if (! debug_write_type (info, fns, fhandle, n->u.type, n) in debug_write_name() 2375 || ! (*fns->typdef) (fhandle, n->name)) in debug_write_name() 2379 if (! debug_write_type (info, fns, fhandle, n->u.tag, n)) in debug_write_name() 2381 return (*fns->tag) (fhandle, n->name); in debug_write_name() [all …]
|
| /freebsd-11-stable/crypto/openssl/crypto/engine/ |
| HD | eng_dyn.c | 456 dynamic_fns fns; in dynamic_load() local 523 fns.static_state = ENGINE_get_static_state(); in dynamic_load() 524 fns.err_fns = ERR_get_implementation(); in dynamic_load() 525 fns.ex_data_fns = CRYPTO_get_ex_data_implementation(); in dynamic_load() 526 CRYPTO_get_mem_functions(&fns.mem_fns.malloc_cb, in dynamic_load() 527 &fns.mem_fns.realloc_cb, &fns.mem_fns.free_cb); in dynamic_load() 528 fns.lock_fns.lock_locking_cb = CRYPTO_get_locking_callback(); in dynamic_load() 529 fns.lock_fns.lock_add_lock_cb = CRYPTO_get_add_lock_callback(); in dynamic_load() 530 fns.lock_fns.dynlock_create_cb = CRYPTO_get_dynlock_create_callback(); in dynamic_load() 531 fns.lock_fns.dynlock_lock_cb = CRYPTO_get_dynlock_lock_callback(); in dynamic_load() [all …]
|
| HD | engine.h | 825 const dynamic_fns *fns); 828 int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); \ 830 int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { \ 831 if(ENGINE_get_static_state() == fns->static_state) goto skip_cbs; \ 832 if(!CRYPTO_set_mem_functions(fns->mem_fns.malloc_cb, \ 833 fns->mem_fns.realloc_cb, fns->mem_fns.free_cb)) \ 835 CRYPTO_set_locking_callback(fns->lock_fns.lock_locking_cb); \ 836 CRYPTO_set_add_lock_callback(fns->lock_fns.lock_add_lock_cb); \ 837 CRYPTO_set_dynlock_create_callback(fns->lock_fns.dynlock_create_cb); \ 838 CRYPTO_set_dynlock_lock_callback(fns->lock_fns.dynlock_lock_cb); \ [all …]
|
| /freebsd-11-stable/contrib/gcc/ |
| HD | tree-sra.c | 709 const struct sra_walk_fns *fns) in sra_walk_expr() argument 735 fns->use (elt, expr_p, bsi, is_output, use_all_p); in sra_walk_expr() 827 const struct sra_walk_fns *fns) in sra_walk_tree_list() argument 831 sra_walk_expr (&TREE_VALUE (op), bsi, is_output, fns); in sra_walk_tree_list() 839 const struct sra_walk_fns *fns) in sra_walk_call_expr() argument 841 sra_walk_tree_list (TREE_OPERAND (expr, 1), bsi, false, fns); in sra_walk_call_expr() 849 const struct sra_walk_fns *fns) in sra_walk_asm_expr() argument 851 sra_walk_tree_list (ASM_INPUTS (expr), bsi, false, fns); in sra_walk_asm_expr() 852 sra_walk_tree_list (ASM_OUTPUTS (expr), bsi, true, fns); in sra_walk_asm_expr() 859 const struct sra_walk_fns *fns) in sra_walk_modify_expr() argument [all …]
|
| HD | FREEBSD-deletelist | 26 cpp.fns
|
| HD | FREEBSD-Xlist | 44 *gcc/cpp.fns
|
| /freebsd-11-stable/contrib/subversion/subversion/libsvn_repos/ |
| HD | deprecated.c | 998 svn_repos_parser_fns_t *fns; in fns_from_fns2() local 1000 fns = apr_palloc(pool, sizeof(*fns)); in fns_from_fns2() 1001 fns->new_revision_record = fns2->new_revision_record; in fns_from_fns2() 1002 fns->uuid_record = fns2->uuid_record; in fns_from_fns2() 1003 fns->new_node_record = fns2->new_node_record; in fns_from_fns2() 1004 fns->set_revision_property = fns2->set_revision_property; in fns_from_fns2() 1005 fns->set_node_property = fns2->set_node_property; in fns_from_fns2() 1006 fns->remove_node_props = fns2->remove_node_props; in fns_from_fns2() 1007 fns->set_fulltext = fns2->set_fulltext; in fns_from_fns2() 1008 fns->close_node = fns2->close_node; in fns_from_fns2() [all …]
|
| /freebsd-11-stable/lib/libc/stdlib/ |
| HD | atexit.c | 79 } fns[ATEXIT_SIZE]; /* the table itself */ member 121 p->fns[p->ind++] = *fptr; in atexit_register() 217 if (p->fns[n].fn_type == ATEXIT_FN_EMPTY) in __cxa_finalize() 219 fn = p->fns[n]; in __cxa_finalize() 231 p->fns[n].fn_type = ATEXIT_FN_EMPTY; in __cxa_finalize()
|
| /freebsd-11-stable/contrib/gcc/cp/ |
| HD | call.c | 954 tree fns = TREE_VALUE (conversions); in convert_class_to_reference() local 956 for (; fns; fns = OVL_NEXT (fns)) in convert_class_to_reference() 958 tree f = OVL_CURRENT (fns); in convert_class_to_reference() 2608 tree fns; in build_user_type_conversion_1() local 2619 for (fns = TREE_VALUE (conv_fns); fns; fns = OVL_NEXT (fns)) in build_user_type_conversion_1() 2621 tree fn = OVL_CURRENT (fns); in build_user_type_conversion_1() 2875 tree fns; in build_operator_new_call() local 2896 fns = lookup_function_nonclass (fnname, args, /*block_p=*/false); in build_operator_new_call() 2899 cand = perform_overload_resolution (fns, args, &candidates, &any_viable_p); in build_operator_new_call() 2907 DECL_NAME (OVL_CURRENT (fns)), args); in build_operator_new_call() [all …]
|
| HD | method.c | 881 tree fns; in locate_ctor() local 891 for (fns = CLASSTYPE_CONSTRUCTORS (type); fns; fns = OVL_NEXT (fns)) in locate_ctor() 893 tree fn = OVL_CURRENT (fns); in locate_ctor() 918 tree fns; in locate_copy() local 928 fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix); in locate_copy() 936 fns = CLASSTYPE_CONSTRUCTORS (type); in locate_copy() 940 for (; fns; fns = OVL_NEXT (fns)) in locate_copy() 942 tree fn = OVL_CURRENT (fns); in locate_copy()
|
| HD | semantics.c | 1610 tree fns; in finish_qualified_id_expr() local 1613 fns = BASELINK_FUNCTIONS (expr); in finish_qualified_id_expr() 1614 if (TREE_CODE (fns) == TEMPLATE_ID_EXPR) in finish_qualified_id_expr() 1615 fns = TREE_OPERAND (fns, 0); in finish_qualified_id_expr() 1618 if (!shared_member_p (fns) in finish_qualified_id_expr() 2462 baselink_for_fns (tree fns) in baselink_for_fns() argument 2467 if (BASELINK_P (fns) in baselink_for_fns() 2468 || error_operand_p (fns)) in baselink_for_fns() 2469 return fns; in baselink_for_fns() 2471 fn = fns; in baselink_for_fns() [all …]
|
| HD | class.c | 88 VEC(tree,gc) *fns; 995 tree fns; in add_method() local 998 for (fns = current_fns; fns; fns = OVL_NEXT (fns)) in add_method() 1000 tree fn = OVL_CURRENT (fns); in add_method() 2395 tree fns; in warn_hidden() local 2400 VEC_iterate (tree, method_vec, i, fns); in warn_hidden() 2413 name = DECL_NAME (OVL_CURRENT (fns)); in warn_hidden() 2431 for (fn = fns; fn; fn = OVL_NEXT (fn)) in warn_hidden() 2455 warning (0, " by %q+D", fns); in warn_hidden() 4022 tree fns; in clone_constructors_and_destructors() local [all …]
|
| HD | pt.c | 854 tree fns; in retrieve_specialization() local 874 for (fns = VEC_index (tree, methods, idx); fns; fns = OVL_NEXT (fns)) in retrieve_specialization() 876 tree fn = OVL_CURRENT (fns); in retrieve_specialization() 1333 print_candidates (tree fns) in print_candidates() argument 1339 for (fn = fns; fn != NULL_TREE; fn = TREE_CHAIN (fn)) in print_candidates() 1381 tree fns; in determine_specialization() local 1399 fns = TREE_OPERAND (template_id, 0); in determine_specialization() 1402 if (fns == error_mark_node) in determine_specialization() 1406 if (BASELINK_P (fns)) in determine_specialization() 1407 fns = BASELINK_FUNCTIONS (fns); in determine_specialization() [all …]
|
| HD | name-lookup.c | 3650 remove_hidden_names (tree fns) in remove_hidden_names() argument 3652 if (!fns) in remove_hidden_names() 3653 return fns; in remove_hidden_names() 3655 if (TREE_CODE (fns) == FUNCTION_DECL && hidden_name_p (fns)) in remove_hidden_names() 3656 fns = NULL_TREE; in remove_hidden_names() 3657 else if (TREE_CODE (fns) == OVERLOAD) in remove_hidden_names() 3661 for (o = fns; o; o = OVL_NEXT (o)) in remove_hidden_names() 3668 for (o = fns; o; o = OVL_NEXT (o)) in remove_hidden_names() 3671 fns = n; in remove_hidden_names() 3675 return fns; in remove_hidden_names() [all …]
|
| HD | init.c | 1734 tree fns; in build_new_1() local 1754 fns = lookup_fnfields (elt_type, fnname, /*protect=*/2); in build_new_1() 1755 if (fns == NULL_TREE) in build_new_1() 1760 if (TREE_CODE (fns) == TREE_LIST) in build_new_1() 1763 print_candidates (fns); in build_new_1() 1767 fns, args, in build_new_1()
|
| HD | search.c | 1953 tree fns = VEC_index (tree, CLASSTYPE_METHOD_VEC (type), ix); in look_for_overrides_here() local 1955 for (; fns; fns = OVL_NEXT (fns)) in look_for_overrides_here() 1957 tree fn = OVL_CURRENT (fns); in look_for_overrides_here()
|
| HD | decl2.c | 2934 tree fns; in generate_ctor_or_dtor_function() local 2936 for (fns = constructor_p ? static_ctors : static_dtors; in generate_ctor_or_dtor_function() 2937 fns; in generate_ctor_or_dtor_function() 2938 fns = TREE_CHAIN (fns)) in generate_ctor_or_dtor_function() 2940 fndecl = TREE_VALUE (fns); in generate_ctor_or_dtor_function()
|
| /freebsd-11-stable/contrib/gcclibs/libiberty/ |
| HD | xatexit.c | 53 void (*fns[XATEXIT_SIZE]) (void); /* the table itself */ member 84 p->fns[p->ind++] = fn; in xatexit() 98 (*p->fns[n]) (); in xatexit_cleanup()
|
| /freebsd-11-stable/contrib/binutils/libiberty/ |
| HD | xatexit.c | 53 void (*fns[XATEXIT_SIZE]) (void); /* the table itself */ member 84 p->fns[p->ind++] = fn; in xatexit() 98 (*p->fns[n]) (); in xatexit_cleanup()
|
| /freebsd-11-stable/usr.bin/sort/ |
| HD | file.c | 221 fl->fns = NULL; in file_list_init() 234 if (fl->count >= fl->sz || (fl->fns == NULL)) { in file_list_add() 236 fl->fns = sort_realloc(fl->fns, fl->sz * in file_list_add() 239 fl->fns[fl->count] = allocate ? sort_strdup(fn) : fn; in file_list_add() 268 if (fl->fns) { in file_list_clean() 272 if (fl->fns[i]) { in file_list_clean() 274 unlink(fl->fns[i]); in file_list_clean() 275 sort_free(fl->fns[i]); in file_list_clean() 276 fl->fns[i] = 0; in file_list_clean() 279 sort_free(fl->fns); in file_list_clean() [all …]
|
| HD | file.h | 69 const char * *fns; member
|
| /freebsd-11-stable/contrib/llvm-project/libcxx/src/ |
| HD | ios.cpp | 234 …event_callback* fns = static_cast<event_callback*>(realloc(__fn_, newcap * sizeof(event_callback))… in register_callback() local 235 if (fns == 0) in register_callback() 237 __fn_ = fns; in register_callback()
|
| /freebsd-11-stable/crypto/openssl/engines/ |
| HD | e_gmp.c | 483 int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); 485 int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns)
|
| /freebsd-11-stable/contrib/groff/doc/ |
| HD | Makefile.in | 139 -rm -f *.cp *.cps *.cv *.cn *.es *.ess *.fn *.fns *.ky *.kys \
|