Home
last modified time | relevance | path

Searched refs:filtered (Results 1 – 25 of 100) sorted by relevance

1234

/freebsd/contrib/xz/src/liblzma/simple/
H A Dsimple_coder.c59 const size_t filtered = coder->filter(coder->simple, in call_filter() local
62 coder->now_pos += filtered; in call_filter()
63 return filtered; in call_filter()
84 if (coder->pos < coder->filtered) { in simple_code()
90 if (coder->pos < coder->filtered) in simple_code()
94 assert(coder->filtered == coder->size); in simple_code()
100 coder->filtered = 0; in simple_code()
148 const size_t unfiltered = size - filtered; in simple_code()
190 coder->filtered = call_filter( in simple_code()
196 coder->filtered = coder->size; in simple_code()
[all …]
H A Dsimple_private.h54 size_t filtered; member
/freebsd/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_bcj.c57 size_t filtered; member
348 size_t filtered; in bcj_apply() local
356 filtered = bcj_x86(s, buf, size); in bcj_apply()
386 filtered = 0; in bcj_apply()
390 *pos += filtered; in bcj_apply()
391 s->pos += filtered; in bcj_apply()
407 s->temp.filtered -= copy_size; in bcj_flush()
428 if (s->temp.filtered > 0) { in xz_dec_bcj_run()
430 if (s->temp.filtered > 0) in xz_dec_bcj_run()
520 if (s->temp.filtered > 0) in xz_dec_bcj_run()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp574 for (auto *Arg : InputArgs.filtered(OBJCOPY_UNKNOWN)) in parseObjcopyOptions()
578 for (auto *Arg : InputArgs.filtered(OBJCOPY_INPUT)) in parseObjcopyOptions()
843 for (auto *Arg : InputArgs.filtered(OBJCOPY_keep_section)) in parseObjcopyOptions()
847 for (auto *Arg : InputArgs.filtered(OBJCOPY_only_section)) in parseObjcopyOptions()
951 for (auto *Arg : InputArgs.filtered(OBJCOPY_keep_symbol)) in parseObjcopyOptions()
1190 for (auto *Arg : InputArgs.filtered(BITCODE_STRIP_INPUT)) in parseBitcodeStripOptions()
1259 for (auto *Arg : InputArgs.filtered(STRIP_UNKNOWN)) in parseStripOptions()
1262 for (auto *Arg : InputArgs.filtered(STRIP_INPUT)) in parseStripOptions()
1305 for (auto *Arg : InputArgs.filtered(STRIP_keep_section)) in parseStripOptions()
1315 for (auto *Arg : InputArgs.filtered(STRIP_strip_symbol)) in parseStripOptions()
[all …]
/freebsd/contrib/pnglite/
H A Dpnglite.c489 uint8_t *filtered = png->png_data; in png_unfilter() local
493 uint8_t filter = filtered[pos]; in png_unfilter()
499 *(short *)(filtered+pos+i) = in png_unfilter()
500 (filtered[pos+i] << 8) | filtered[pos+i+1]; in png_unfilter()
509 png_filter_sub(stride, filtered+pos, data+outpos, in png_unfilter()
514 png_filter_up(stride, filtered+pos, data+outpos, in png_unfilter()
518 png_filter_up(stride, filtered+pos, data+outpos, in png_unfilter()
524 png_filter_average(stride, filtered+pos, in png_unfilter()
529 png_filter_average(stride, filtered+pos, in png_unfilter()
535 png_filter_paeth(stride, filtered+pos, in png_unfilter()
[all …]
/freebsd/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/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp48 for (Arg *const &A : filtered(Id)) { in eraseArg()
142 for (auto *Arg : filtered(Id0)) { in AddAllArgs()
150 for (auto *Arg : filtered(Id0, Id1, Id2)) { in AddAllArgValues()
160 for (auto *Arg : filtered(Id0)) { in AddAllArgsTranslated()
174 for (auto *Arg : filtered(Id0)) in ClaimAllArgs()
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriver.cpp201 for (const Arg *arg : args.filtered(OPT_syslibroot)) in getSystemLibraryRoots()
959 for (const Arg *arg : args.filtered(OPT_sectalign)) { in parseSectAlign()
1131 for (const Arg *arg : args.filtered(singleOptionCode)) in handleSymbolPatterns()
1133 for (const Arg *arg : args.filtered(listFileOptionCode)) in handleSymbolPatterns()
1567 for (const Arg *arg : args.filtered(OPT_u)) { in link()
1572 for (const Arg *arg : args.filtered(OPT_U)) in link()
1596 for (auto *arg : args.filtered(OPT_dyld_env)) { in link()
1682 for (const Arg *arg : args.filtered(OPT_alias)) { in link()
1770 for (const Arg *arg : args.filtered(OPT_segprot)) { in link()
1844 for (const Arg *arg : args.filtered(OPT_why_live)) in link()
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DDriver.cpp1551 for (auto *arg : args.filtered(OPT_libpath)) in linkerMain()
1571 for (auto *arg : args.filtered(OPT_ignore)) { in linkerMain()
1844 for (auto *arg : args.filtered(OPT_incl)) in linkerMain()
1861 for (auto *arg : args.filtered(OPT_opt)) { in linkerMain()
1948 for (auto *arg : args.filtered(OPT_merge)) in linkerMain()
1970 for (auto *arg : args.filtered(OPT_section)) in linkerMain()
1983 for (auto *arg : args.filtered(OPT_aligncomm)) in linkerMain()
2045 for (auto *arg : args.filtered(OPT_swaprun)) in linkerMain()
2171 for (auto *arg : args.filtered(OPT_defaultlib)) in linkerMain()
2221 for (auto *arg : args.filtered(OPT_export)) { in linkerMain()
[all …]
/freebsd/contrib/llvm-project/lld/Common/
H A DArgs.cpp57 for (auto *arg : args.filtered(id)) in getStrings()
64 for (auto *arg : args.filtered(id)) { in getZOptionValue()
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_set_term.c305 int filtered, in NCURSES_SP_NAME()
319 slines, scolumns, (void *) output, filtered, slk_format)); in NCURSES_SP_NAME()
380 sp->_filtered = filtered; in NCURSES_SP_NAME()
383 if (filtered) { in NCURSES_SP_NAME()
753 int filtered, in _nc_setupscreen() argument
761 filtered, in _nc_setupscreen()
/freebsd/contrib/llvm-project/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp80 for (auto *Arg : Args->filtered(OPT_libpath)) in getSearchPaths()
130 for (auto *Arg : Args.filtered(OPT_INPUT)) { in doList()
330 for (auto *Arg : Args.filtered(OPT_UNKNOWN)) in libDriverMain()
342 for (auto *Arg : Args.filtered(OPT_ignore)) in libDriverMain()
429 for (auto *Arg : Args.filtered(OPT_INPUT)) { in libDriverMain()
/freebsd/contrib/llvm-project/lld/ELF/
H A DDriver.cpp479 for (auto *arg : args.filtered(OPT_z)) in hasZOption()
489 for (auto *arg : args.filtered(OPT_z)) { in getZFlag()
504 for (auto *arg : args.filtered(OPT_z)) { in getZSeparate()
521 for (auto *arg : args.filtered(OPT_z)) { in getZGnuStack()
538 for (auto *arg : args.filtered(OPT_z)) { in getZStartStopVisibility()
565 for (auto *arg : args.filtered(OPT_z)) in checkZOptions()
1144 for (auto *arg : args.filtered(OPT_z)) { in getIsRela()
1498 for (opt::Arg *arg : args.filtered(OPT_z)) { in readConfigs()
1514 for (opt::Arg *arg : args.filtered(OPT_z)) { in readConfigs()
2423 for (auto *arg : args.filtered(OPT_wrap)) { in addWrappedSymbols()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DWebAssembly.cpp338 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions()
352 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions()
358 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions()
392 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions()
400 for (const Arg *A : DriverArgs.filtered(options::OPT_mllvm)) { in addClangTargetOptions()
H A DHIPAMD.cpp162 for (auto *Arg : Args.filtered(options::OPT_Xoffload_linker)) { in constructLldCommand()
226 for (auto *A : Args.filtered(options::OPT_fsanitize_EQ)) { in HIPAMDToolChain()
/freebsd/contrib/llvm-project/llvm/include/llvm/Option/
H A DArgList.h205 filtered(OptSpecifiers ...Ids) const { in filtered() function
250 auto Args = filtered(Id); in hasMultipleArgs()
258 for (Arg *A : filtered(Ids...)) { in getLastArg()
359 for (Arg *A : filtered(Ids...)) in claimAllArgs()
/freebsd/sbin/ping/tests/
H A Dping_test.sh284 "$1" >"$1".filtered
285 atf_check -s exit:0 diff -u "$1".filtered "$2"
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp912 for (auto *A : Args.filtered(Group)) { in addDiagnosticArgs()
2837 for (const auto *AA : Args.filtered(OPT_plugin_arg)) in ParseFrontendArgs()
3226 for (const auto *A : Args.filtered(OPT_idirafter)) in ParseHeaderSearchArgs()
3228 for (const auto *A : Args.filtered(OPT_iquote)) in ParseHeaderSearchArgs()
3233 for (const auto *A : Args.filtered(OPT_iframework)) in ParseHeaderSearchArgs()
3240 for (const auto *A : Args.filtered(OPT_c_isystem)) in ParseHeaderSearchArgs()
3242 for (const auto *A : Args.filtered(OPT_cxx_isystem)) in ParseHeaderSearchArgs()
3244 for (const auto *A : Args.filtered(OPT_objc_isystem)) in ParseHeaderSearchArgs()
4425 for (const auto *A : Args.filtered(OPT_D, OPT_U)) { in ParsePreprocessorArgs()
4433 for (const auto *A : Args.filtered(OPT_include)) in ParsePreprocessorArgs()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DCOFFDirectiveParser.cpp73 for (auto *arg : Result.filtered(COFF_OPT_UNKNOWN)) in parse()
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DX86.cpp232 for (const Arg *A : Args.filtered(options::OPT_m_x86_AVX10_Features_Group)) { in getX86TargetFeatures()
255 for (const Arg *A : Args.filtered(options::OPT_m_x86_Features_Group, in getX86TargetFeatures()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwp/
H A Dllvm-dwp.cpp162 for (const llvm::opt::Arg *A : Args.filtered(OPT_execFileNames)) in llvm_dwp_main()
166 for (const llvm::opt::Arg *A : Args.filtered(OPT_INPUT)) in llvm_dwp_main()
/freebsd/crypto/openssh/regress/
H A Dagent-restrict.sh413 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/contrib/ntp/ntpd/
H A Drefclock_nmea.c264 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/contrib/llvm-project/lldb/tools/driver/
H A DDriver.cpp314 for (auto *arg : args.filtered(OPT_source_on_crash, OPT_one_line_on_crash, in ProcessArgs()
364 for (auto *arg : args.filtered(OPT_INPUT)) in ProcessArgs()
775 for (auto *arg : input_args.filtered(OPT_UNKNOWN)) { in main()
/freebsd/sys/contrib/device-tree/Bindings/i2c/
H A Di2c.txt59 Width of spikes which can be filtered by digital filter
65 be filtered out. Only lower frequency will pass (this is applicable to

1234