| /freebsd-12-stable/contrib/xz/src/liblzma/simple/ |
| D | simple_coder.c | 60 const size_t filtered = coder->filter(coder->simple, in call_filter() local 63 coder->now_pos += filtered; in call_filter() 64 return filtered; in call_filter() 85 if (coder->pos < coder->filtered) { in simple_code() 86 lzma_bufcpy(coder->buffer, &coder->pos, coder->filtered, in simple_code() 91 if (coder->pos < coder->filtered) in simple_code() 95 assert(coder->filtered == coder->size); in simple_code() 101 coder->filtered = 0; in simple_code() 144 const size_t filtered = call_filter( in simple_code() local 147 const size_t unfiltered = size - filtered; in simple_code() [all …]
|
| D | simple_private.h | 55 size_t filtered; member
|
| /freebsd-12-stable/sys/contrib/xz-embedded/linux/lib/xz/ |
| D | xz_dec_bcj.c | 57 size_t filtered; member 348 size_t filtered; in bcj_apply() local 356 filtered = bcj_x86(s, buf, size); in bcj_apply() 361 filtered = bcj_powerpc(s, buf, size); in bcj_apply() 366 filtered = bcj_ia64(s, buf, size); in bcj_apply() 371 filtered = bcj_arm(s, buf, size); in bcj_apply() 376 filtered = bcj_armthumb(s, buf, size); in bcj_apply() 381 filtered = bcj_sparc(s, buf, size); in bcj_apply() 386 filtered = 0; in bcj_apply() 390 *pos += filtered; in bcj_apply() [all …]
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_repos/ |
| D | list.c | 202 filtered_dirent_t filtered; in do_list() local 205 filtered.dirent = apr_hash_this_val(hi); in do_list() 208 if (filtered.dirent->kind == svn_node_dir && depth == svn_depth_files) in do_list() 212 filtered.is_match = matches_any(filtered.dirent->name, patterns, in do_list() 214 if (!filtered.is_match && filtered.dirent->kind == svn_node_file) in do_list() 217 APR_ARRAY_PUSH(sorted, filtered_dirent_t) = filtered; in do_list() 227 filtered_dirent_t *filtered; in do_list() local 232 filtered = &APR_ARRAY_IDX(sorted, i, filtered_dirent_t); in do_list() 233 dirent = filtered->dirent; in do_list() 247 if (filtered->is_match) in do_list()
|
| D | authz.c | 1461 if (authz->filtered) in get_user_rules() 1464 if (matches_filtered_tree(authz->filtered, repos_name, user)) in get_user_rules() 1465 return authz->filtered; in get_user_rules() 1468 svn_pool_destroy(authz->filtered->pool); in get_user_rules() 1469 authz->filtered = NULL; in get_user_rules() 1476 authz->filtered = apr_palloc(pool, sizeof(*authz->filtered)); in get_user_rules() 1477 authz->filtered->pool = pool; in get_user_rules() 1478 authz->filtered->repository = apr_pstrdup(pool, repos_name); in get_user_rules() 1479 authz->filtered->user = user ? apr_pstrdup(pool, user) : NULL; in get_user_rules() 1480 authz->filtered->lookup_state = create_lookup_state(pool); in get_user_rules() [all …]
|
| D | authz.h | 173 authz_user_rules_t *filtered; member
|
| /freebsd-12-stable/contrib/ncurses/misc/ |
| D | ncurses-config.in | 59 filtered= 66 test -n "$filtered" && filtered="${filtered}@PATH_SEPARATOR@" 67 filtered="${filtered}${item}" 73 RPATH_LIST="$filtered"
|
| /freebsd-12-stable/contrib/subversion/subversion/libsvn_delta/ |
| D | depth_filter_editor.c | 52 svn_boolean_t filtered; member 72 svn_boolean_t filtered, in make_node_baton() argument 79 b->filtered = filtered; in make_node_baton() 97 if (pb->filtered) in okay_to_edit() 317 if (fb->filtered) in apply_textdelta() 340 if (! fb->filtered) in close_file() 356 if (! pb->filtered) in absent_file() 370 if (! db->filtered) in close_directory() 385 if (! pb->filtered) in absent_directory() 402 if (! fb->filtered) in change_file_prop() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| D | ConfigManager.cpp | 669 for (auto Arg : InputArgs.filtered(OBJCOPY_UNKNOWN)) in parseObjcopyOptions() 673 for (auto Arg : InputArgs.filtered(OBJCOPY_INPUT)) in parseObjcopyOptions() 805 for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbol)) { in parseObjcopyOptions() 816 for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbols)) in parseObjcopyOptions() 821 for (auto Arg : InputArgs.filtered(OBJCOPY_rename_section)) { in parseObjcopyOptions() 831 for (auto Arg : InputArgs.filtered(OBJCOPY_set_section_alignment)) { in parseObjcopyOptions() 838 for (auto Arg : InputArgs.filtered(OBJCOPY_set_section_flags)) { in parseObjcopyOptions() 867 for (auto Arg : InputArgs.filtered(OBJCOPY_remove_section)) in parseObjcopyOptions() 871 for (auto Arg : InputArgs.filtered(OBJCOPY_keep_section)) in parseObjcopyOptions() 875 for (auto Arg : InputArgs.filtered(OBJCOPY_only_section)) in parseObjcopyOptions() [all …]
|
| /freebsd-12-stable/sbin/ping/tests/ |
| D | ping_test.sh | 53 "$1" >"$1".filtered 54 atf_check -s exit:0 diff -u "$1".filtered "$2"
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Option/ |
| D | ArgList.cpp | 49 for (Arg *const &A : filtered(Id)) { in eraseArg() 132 for (auto Arg: filtered(Id0, Id1, Id2)) { in AddAllArgs() 140 for (auto Arg : filtered(Id0, Id1, Id2)) { in AddAllArgValues() 150 for (auto Arg: filtered(Id0)) { in AddAllArgsTranslated() 164 for (auto *Arg : filtered(Id0)) in ClaimAllArgs()
|
| /freebsd-12-stable/contrib/llvm-project/lld/lib/Driver/ |
| D | DarwinLdDriver.cpp | 332 for (auto unknownArg : parsedArgs.filtered(OPT_UNKNOWN)) { in parse() 376 for (auto &inFile : parsedArgs.filtered(OPT_INPUT)) { in parse() 522 for (auto &alignArg : parsedArgs.filtered(OPT_sectalign)) { in parse() 548 for (auto &llvmArg : parsedArgs.filtered(OPT_mllvm)) { in parse() 588 for (auto existingPath : parsedArgs.filtered(OPT_path_exists)) { in parse() 611 for (auto syslibRoot : parsedArgs.filtered(OPT_syslibroot)) { in parse() 622 for (auto libPath : parsedArgs.filtered(OPT_L)) { in parse() 627 for (auto fwPath : parsedArgs.filtered(OPT_F)) { in parse() 653 for (auto expFile : parsedArgs.filtered(OPT_exported_symbols_list)) { in parse() 668 for (auto symbol : parsedArgs.filtered(OPT_exported_symbol)) { in parse() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lld/MachO/ |
| D | Driver.cpp | 174 for (const Arg *arg : args.filtered(OPT_syslibroot)) in getSystemLibraryRoots() 206 args.filtered(OPT_thinlto_cache_policy, OPT_prune_interval_lto, in getLTOCachePolicy() 428 for (const Arg *arg : args.filtered(OPT_UNKNOWN)) in parseLCLinkerOption() 865 for (const Arg *arg : args.filtered(OPT_sectalign)) { in parseSectAlign() 966 for (const Arg *arg : args.filtered(singleOptionCode)) in handleSymbolPatterns() 968 for (const Arg *arg : args.filtered(listFileOptionCode)) { in handleSymbolPatterns() 1175 for (const Arg *arg : args.filtered(OPT_u)) { in link() 1180 for (const Arg *arg : args.filtered(OPT_U)) in link() 1309 for (const Arg *arg : args.filtered(OPT_rename_section)) { in link() 1314 for (const Arg *arg : args.filtered(OPT_rename_segment)) { in link() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lld/COFF/ |
| D | Driver.cpp | 1218 for (auto *arg : args.filtered(OPT_wholearchive_file)) in maybeExportMinGWSymbols() 1295 for (auto *arg : args.filtered(OPT_mllvm)) in linkerMain() 1366 for (auto *arg : args.filtered(OPT_libpath)) in linkerMain() 1372 for (auto *arg : args.filtered(OPT_ignore)) { in linkerMain() 1509 for (auto *arg : args.filtered(OPT_nodefaultlib)) in linkerMain() 1577 for (auto *arg : args.filtered(OPT_alternatename)) in linkerMain() 1581 for (auto *arg : args.filtered(OPT_incl)) in linkerMain() 1596 for (auto *arg : args.filtered(OPT_opt)) { in linkerMain() 1670 for (auto *arg : args.filtered(OPT_failifmismatch)) in linkerMain() 1674 for (auto *arg : args.filtered(OPT_merge)) in linkerMain() [all …]
|
| /freebsd-12-stable/contrib/ncurses/ncurses/base/ |
| D | lib_set_term.c | 276 int filtered, in NCURSES_SP_NAME() 288 slines, scolumns, (void *) output, filtered, slk_format)); in NCURSES_SP_NAME() 347 sp->_filtered = filtered; in NCURSES_SP_NAME() 350 if (filtered) { in NCURSES_SP_NAME() 691 int filtered, in _nc_setupscreen() argument 699 filtered, in _nc_setupscreen()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/ |
| D | LibDriver.cpp | 75 for (auto *Arg : Args->filtered(OPT_libpath)) in getSearchPaths() 113 for (auto *Arg : Args.filtered(OPT_INPUT)) { in doList() 284 for (auto *Arg : Args.filtered(OPT_UNKNOWN)) in libDriverMain() 323 for (auto *Arg : Args.filtered(OPT_INPUT)) { in libDriverMain()
|
| /freebsd-12-stable/contrib/subversion/subversion/svnsync/ |
| D | svnsync.c | 557 apr_hash_t *filtered = apr_hash_make(pool); in filter_props() local 570 svn_hash_sets(filtered, propname, propval); in filter_props() 578 return filtered; in filter_props() 1265 apr_hash_t *filtered; in replay_rev_started() local 1291 filtered = filter_props(&filtered_count, rev_props, in replay_rev_started() 1302 if (! svn_hash_gets(filtered, SVN_PROP_REVISION_LOG)) in replay_rev_started() 1303 svn_hash_sets(filtered, SVN_PROP_REVISION_LOG, in replay_rev_started() 1309 SVN_ERR(svnsync_normalize_revprops(filtered, &normalized_count, in replay_rev_started() 1319 filtered, in replay_rev_started() 1356 apr_hash_t *filtered, *existing_props; in replay_rev_finished() local [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lld/ELF/ |
| D | Driver.cpp | 386 for (auto *arg : args.filtered(OPT_z)) in hasZOption() 470 for (auto *arg : args.filtered(OPT_z)) in checkZOptions() 726 for (auto *arg : args.filtered(OPT_section_start)) { in getSectionStartMap() 1211 for (opt::Arg *arg : args.filtered(OPT_shuffle_sections)) { in readConfigs() 1229 for (opt::Arg *arg : args.filtered(OPT_z)) { in readConfigs() 1257 for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq_minus)) in readConfigs() 1263 for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq)) in readConfigs() 1269 for (auto *arg : args.filtered(OPT_mllvm)) in readConfigs() 1370 for (opt::Arg *arg : args.filtered(OPT_warn_backrefs_exclude)) { in readConfigs() 1383 for (auto *arg : args.filtered(OPT_dynamic_list)) in readConfigs() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/ |
| D | CompilerInvocation.cpp | 745 for (auto *A : Args.filtered(Group)) { in addDiagnosticArgs() 969 Args.filtered(OPT_analyzer_checker, OPT_analyzer_disable_checker)) { in ParseAnalyzerArgs() 983 for (const auto *A : Args.filtered(OPT_analyzer_config)) { in ParseAnalyzerArgs() 1796 Args.filtered(OPT_mlink_bitcode_file, OPT_mlink_builtin_bitcode)) { in ParseCodeGenArgs() 2036 for (const auto *A : Args.filtered(OPT_fsanitize_ignorelist_EQ)) { in ParseDependencyOutputArgs() 2042 for (const auto *A : Args.filtered(OPT_fsanitize_system_ignorelist_EQ)) { in ParseDependencyOutputArgs() 2055 for (const auto *A : Args.filtered(OPT_fdepfile_entry)) in ParseDependencyOutputArgs() 2059 for (const auto *A : Args.filtered(OPT_fmodule_file)) { in ParseDependencyOutputArgs() 2655 for (const auto *AA : Args.filtered(OPT_plugin_arg)) in ParseFrontendArgs() 2690 for (const auto *A : Args.filtered(OPT_fmodule_file)) { in ParseFrontendArgs() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| D | WebAssembly.cpp | 287 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions() 298 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions() 304 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions()
|
| /freebsd-12-stable/crypto/openssh/regress/ |
| D | agent-restrict.sh | 413 prepare_multihop_expected filtered 475 prepare_multihop_expected filtered "a b a a c d e" 489 prepare_multihop_expected filtered "a b a a c d e"
|
| /freebsd-12-stable/contrib/ntp/ntpd/ |
| D | refclock_nmea.c | 264 u_int filtered; /* mode bits, not GPZDG, same second */ member 723 up->tally.filtered++; in nmea_procrec() 768 up->tally.filtered++; in nmea_procrec() 957 up->tally.filtered++; in nmea_procrec() 1143 up->tally.filtered, up->tally.pps_used); in nmea_poll()
|
| /freebsd-12-stable/contrib/llvm-project/lld/Common/ |
| D | Args.cpp | 59 for (auto *arg : args.filtered(id)) in getStrings()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Option/ |
| D | ArgList.h | 205 filtered(OptSpecifiers ...Ids) const { in filtered() function 252 for (Arg *A : filtered(Ids...)) { in getLastArg()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/tools/driver/ |
| D | Driver.cpp | 318 for (auto *arg : args.filtered(OPT_source_on_crash, OPT_one_line_on_crash, in ProcessArgs() 368 for (auto *arg : args.filtered(OPT_INPUT)) in ProcessArgs() 901 for (auto *arg : input_args.filtered(OPT_UNKNOWN)) { in main()
|