Searched refs:filtered (Results 1 - 25 of 57) sorted by relevance

123

/freebsd-13-stable/contrib/xz/src/liblzma/simple/
H A Dsimple_coder.c60 const size_t filtered = coder->filter(coder->simple, local
63 coder->now_pos += filtered;
64 return filtered;
84 // Flush already filtered data from coder->buffer[] to out[].
85 if (coder->pos < coder->filtered) {
86 lzma_bufcpy(coder->buffer, &coder->pos, coder->filtered,
89 // If we couldn't flush all the filtered data, return to
91 if (coder->pos < coder->filtered)
95 assert(coder->filtered == coder->size);
100 // If we get here, there is no filtered dat
144 const size_t filtered = call_filter( local
[all...]
H A Dsimple_private.h53 /// buffer[filtered] is the first unfiltered byte. When pos is smaller
54 /// than filtered, there is unflushed filtered data in the buffer.
55 size_t filtered; member in struct:__anon6661
57 /// Total number of bytes (both filtered and unfiltered) currently
/freebsd-13-stable/contrib/subversion/subversion/libsvn_repos/
H A Dlist.c203 filtered_dirent_t filtered;
206 filtered.dirent = apr_hash_this_val(hi);
209 if (filtered.dirent->kind == svn_node_dir && depth == svn_depth_files)
213 filtered.is_match = matches_any(filtered.dirent->name, patterns,
215 if (!filtered.is_match && filtered.dirent->kind == svn_node_file)
218 APR_ARRAY_PUSH(sorted, filtered_dirent_t) = filtered;
228 filtered_dirent_t *filtered;
233 filtered
202 filtered_dirent_t filtered; local
227 filtered_dirent_t *filtered; local
[all...]
H A Dauthz.c129 /* All authz instances currently in use as well as all filtered authz
228 /* The filtered tree node carrying the prefix. */
393 /* Combine an ACL rule segment with the corresponding node in our filtered
407 * nodes in our filtered tree. Before the next lookup, the tree
554 /* Insert the rule into the filtered tree. */
581 /* Insert the path rule into the filtered tree. */
880 * Return the filtered rule tree.
1411 /* User name for which we filtered the rules.
1415 /* Repository name for which we filtered the rules.
1422 /* Root of the filtered pat
[all...]
H A Dauthz.h172 /* Rules filtered for a particular user-repository combination.
174 authz_user_rules_t *filtered;
173 authz_user_rules_t *filtered; member in struct:svn_authz_t
/freebsd-13-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_bcj.c56 /* Amount of already filtered data in the beginning of buf */
57 size_t filtered; member in struct:xz_dec_bcj::__anon10849
63 * Buffer to hold a mix of filtered and unfiltered data. This
339 * of data that got filtered.
348 size_t filtered; local
356 filtered = bcj_x86(s, buf, size);
361 filtered = bcj_powerpc(s, buf, size);
366 filtered = bcj_ia64(s, buf, size);
371 filtered = bcj_arm(s, buf, size);
376 filtered
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_delta/
H A Ddepth_filter_editor.c48 /* TRUE iff this node was filtered out -- that is, not allowed to
52 will also be filtered out for the same reason. */ member in struct:node_baton
53 svn_boolean_t filtered;
73 svn_boolean_t filtered,
80 b->filtered = filtered;
98 if (pb->filtered)
318 /* For filtered files, we just consume the textdelta. */
319 if (fb->filtered)
341 /* Don't close filtered file
71 make_node_baton(void *edit_baton, svn_boolean_t filtered, int dir_depth, apr_pool_t *pool) argument
[all...]
/freebsd-13-stable/sbin/ping/tests/
H A Dping_test.sh82 "$1" >"$1".filtered
83 atf_check -s exit:0 diff -u "$1".filtered "$2"
/freebsd-13-stable/contrib/ncurses/misc/
H A Dncurses-config.in62 filtered=
69 [ -n "$filtered" ] && filtered="${filtered}@PATH_SEPARATOR@"
70 filtered="${filtered}${item}"
76 RPATH_LIST="$filtered"
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp457 for (auto Arg : InputArgs.filtered(OBJCOPY_UNKNOWN))
461 for (auto Arg : InputArgs.filtered(OBJCOPY_INPUT))
583 for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbol)) {
594 for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbols))
599 for (auto Arg : InputArgs.filtered(OBJCOPY_rename_section)) {
609 for (auto Arg : InputArgs.filtered(OBJCOPY_set_section_alignment)) {
616 for (auto Arg : InputArgs.filtered(OBJCOPY_set_section_flags)) {
645 for (auto Arg : InputArgs.filtered(OBJCOPY_remove_section))
649 for (auto Arg : InputArgs.filtered(OBJCOPY_keep_section))
653 for (auto Arg : InputArgs.filtered(OBJCOPY_only_sectio
[all...]
/freebsd-13-stable/contrib/pnglite/
H A Dpnglite.c489 uint8_t *filtered = png->png_data; local
493 uint8_t filter = filtered[pos];
499 *(short *)(filtered+pos+i) =
500 (filtered[pos+i] << 8) | filtered[pos+i+1];
506 memcpy(data+outpos, filtered+pos, png->width * stride);
509 png_filter_sub(stride, filtered+pos, data+outpos,
514 png_filter_up(stride, filtered+pos, data+outpos,
518 png_filter_up(stride, filtered+pos, data+outpos,
524 png_filter_average(stride, filtered
[all...]
/freebsd-13-stable/contrib/bmake/unit-tests/
H A Dshell-csh.mk14 # In parallel mode, the shell->noPrint command is filtered from
36 # Therefore it is filtered from the output, rather naively.
H A Dexport.mk34 # ampersand is filtered out already by FILTER_CMD.
H A Dvarname-dot-parsedir.mk27 # In the .out file, it is filtered out.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp49 for (Arg *const &A : filtered(Id)) {
50 // Avoid the need for a non-const filtered iterator variant.
132 for (auto Arg: filtered(Id0, Id1, Id2)) {
140 for (auto Arg : filtered(Id0, Id1, Id2)) {
150 for (auto Arg: filtered(Id0)) {
164 for (auto *Arg : filtered(Id0))
/freebsd-13-stable/contrib/llvm-project/lld/Common/
H A DArgs.cpp46 for (auto *arg : args.filtered(id))
/freebsd-13-stable/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp331 for (auto unknownArg : parsedArgs.filtered(OPT_UNKNOWN)) {
375 for (auto &inFile : parsedArgs.filtered(OPT_INPUT)) {
521 for (auto &alignArg : parsedArgs.filtered(OPT_sectalign)) {
547 for (auto &llvmArg : parsedArgs.filtered(OPT_mllvm)) {
587 for (auto existingPath : parsedArgs.filtered(OPT_path_exists)) {
610 for (auto syslibRoot : parsedArgs.filtered(OPT_syslibroot)) {
621 for (auto libPath : parsedArgs.filtered(OPT_L)) {
626 for (auto fwPath : parsedArgs.filtered(OPT_F)) {
652 for (auto expFile : parsedArgs.filtered(OPT_exported_symbols_list)) {
667 for (auto symbol : parsedArgs.filtered(OPT_exported_symbo
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/base/
H A Dlib_set_term.c290 int filtered,
304 slines, scolumns, (void *) output, filtered, slk_format));
364 sp->_filtered = filtered;
367 if (filtered) {
728 int filtered,
736 filtered,
283 _nc_setupscreen( SCREEN **spp, int slines, int scolumns, FILE *output, int filtered, int slk_format) argument
725 _nc_setupscreen(int slines GCC_UNUSED, int scolumns GCC_UNUSED, FILE *output, int filtered, int slk_format) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp75 for (auto *Arg : Args->filtered(OPT_libpath))
113 for (auto *Arg : Args.filtered(OPT_INPUT)) {
284 for (auto *Arg : Args.filtered(OPT_UNKNOWN))
323 for (auto *Arg : Args.filtered(OPT_INPUT)) {
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DDriver.cpp1071 for (auto *arg : args.filtered(OPT_wholearchive_file))
1135 for (auto *arg : args.filtered(OPT_mllvm))
1205 for (auto *arg : args.filtered(OPT_libpath))
1211 for (auto *arg : args.filtered(OPT_ignore)) {
1347 for (auto *arg : args.filtered(OPT_nodefaultlib))
1405 for (auto *arg : args.filtered(OPT_alternatename))
1409 for (auto *arg : args.filtered(OPT_incl))
1421 for (auto *arg : args.filtered(OPT_opt)) {
1487 for (auto *arg : args.filtered(OPT_failifmismatch))
1491 for (auto *arg : args.filtered(OPT_merg
[all...]
/freebsd-13-stable/contrib/subversion/subversion/svnsync/
H A Dsvnsync.c540 * should be filtered out (ie. not be copied to the target list), or FALSE if
558 apr_hash_t *filtered = apr_hash_make(pool);
571 svn_hash_sets(filtered, propname, propval);
579 return filtered;
1268 apr_hash_t *filtered;
1294 filtered = filter_props(&filtered_count, rev_props,
1305 if (! svn_hash_gets(filtered, SVN_PROP_REVISION_LOG))
1306 svn_hash_sets(filtered, SVN_PROP_REVISION_LOG,
1312 SVN_ERR(svnsync_normalize_revprops(filtered, &normalized_count,
1322 filtered,
557 apr_hash_t *filtered = apr_hash_make(pool); local
1265 apr_hash_t *filtered; local
1356 apr_hash_t *filtered, *existing_props; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp227 for (auto *A : Args.filtered(Group)) {
391 Args.filtered(OPT_analyzer_checker, OPT_analyzer_disable_checker)) {
405 for (const auto *A : Args.filtered(OPT_analyzer_config)) {
1174 Args.filtered(OPT_mlink_bitcode_file, OPT_mlink_builtin_bitcode)) {
1479 for (const auto *A : Args.filtered(OPT_fsanitize_blacklist)) {
1485 for (const auto *A : Args.filtered(OPT_fsanitize_system_blacklist)) {
1494 for (const auto *A : Args.filtered(OPT_fdepfile_entry)) {
1499 for (const auto *A : Args.filtered(OPT_fmodule_file)) {
1858 for (const auto *AA : Args.filtered(OPT_plugin_arg))
1916 for (const auto *A : Args.filtered(OPT_fmodule_fil
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp103 for (auto *Arg : Args.filtered(OPT_UNKNOWN))
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DDriver.cpp371 for (auto *arg : args.filtered(OPT_z))
454 for (auto *arg : args.filtered(OPT_z))
689 for (auto *arg : args.filtered(OPT_section_start)) {
1073 for (opt::Arg *arg : args.filtered(OPT_z)) {
1099 for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq_minus))
1105 for (opt::Arg *arg : args.filtered(OPT_plugin_opt_eq))
1111 for (auto *arg : args.filtered(OPT_mllvm))
1211 for (opt::Arg *arg : args.filtered(OPT_warn_backrefs_exclude)) {
1224 for (auto *arg : args.filtered(OPT_dynamic_list))
1231 for (auto *arg : args.filtered(OPT_export_dynamic_symbo
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DDriver.cpp73 for (opt::Arg *arg : args.filtered(OPT_UNKNOWN))
415 for (opt::Arg *arg : args.filtered(OPT_sub_library)) {

Completed in 305 milliseconds

123