Home
last modified time | relevance | path

Searched full:filtered (Results 1 – 25 of 412) sorted by relevance

12345678910>>...17

/freebsd/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
63 * Buffer to hold a mix of filtered and unfiltered data. This
339 * of data that got filtered.
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()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DObjcopyOptions.cpp630 for (auto *Arg : InputArgs.filtered(OBJCOPY_UNKNOWN)) in parseObjcopyOptions()
634 for (auto *Arg : InputArgs.filtered(OBJCOPY_INPUT)) in parseObjcopyOptions()
705 for (const auto *Arg : InputArgs.filtered(OBJCOPY_subsystem)) { in parseObjcopyOptions()
780 for (const auto *A : InputArgs.filtered(OBJCOPY_compress_sections)) { in parseObjcopyOptions()
877 for (auto *Arg : InputArgs.filtered(OBJCOPY_redefine_symbol)) { in parseObjcopyOptions()
888 for (auto *Arg : InputArgs.filtered(OBJCOPY_redefine_symbols)) in parseObjcopyOptions()
893 for (auto *Arg : InputArgs.filtered(OBJCOPY_rename_section)) { in parseObjcopyOptions()
903 for (auto *Arg : InputArgs.filtered(OBJCOPY_set_section_alignment)) { in parseObjcopyOptions()
910 for (auto *Arg : InputArgs.filtered(OBJCOPY_set_section_flags)) { in parseObjcopyOptions()
921 for (auto *Arg : InputArgs.filtered(OBJCOPY_set_section_type)) { in parseObjcopyOptions()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyTypeDumper.cpp93 std::vector<std::unique_ptr<ClassLayout>> Filtered; in filterAndSortClassDefs() local
95 Filtered.reserve(UnfilteredCount); in filterAndSortClassDefs()
132 Filtered.push_back(std::move(Layout)); in filterAndSortClassDefs()
136 llvm::sort(Filtered, Comp); in filterAndSortClassDefs()
137 return Filtered; in filterAndSortClassDefs()
230 // responsive. So only precompute the filtered/sorted set of classes if in start()
232 std::vector<LayoutPtr> Filtered; in start() local
235 Filtered = filterAndSortClassDefs(Printer, *Classes, All); in start()
237 Shown = Filtered.size(); in start()
242 Printer << ", " << (All - Shown) << " filtered"; in start()
[all …]
/freebsd/contrib/bmake/unit-tests/
H A Dshell-ksh.mk14 # In parallel mode, the shell->noPrint command is filtered from
33 # Therefore, it is filtered from the output, rather naively.
35 # expect: The "is filtered out.
36 @echo 'The "set +v" is filtered out.'
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.
/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()
506 memcpy(data+outpos, filtered+pos, png->width * stride); 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()
[all …]
/freebsd/contrib/xz/src/liblzma/api/lzma/
H A Dbcj.h107 * executable being filtered. For the ARM64
113 * \param buf Buffer to be filtered in place
142 * executable being filtered. For the RISC-V
144 * \param buf Buffer to be filtered in place
173 * executable being filtered. For the x86
175 * \param buf Buffer to be filtered in place
/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/sys/contrib/dev/iwlwifi/fw/api/
H A Dstats.h499 * @beacon_counter: all beacons (both filtered and not filtered)
501 * (both filtered and not filtered)
524 * @beacon_filtered: filtered out beacons
541 * @beacon_counter: all beacons (both filtered and not filtered)
542 * @beacon_average_energy: all beacons (both filtered and not
543 * filtered)
675 * @beacon_counter: all beacons (both filtered and not filtered)
676 * @beacon_average_energy: all beacons (both filtered and not
677 * filtered)
/freebsd/crypto/krb5/src/lib/krb5/krb/
H A Dpreauth_otp.c686 krb5_otp_tokeninfo **filtered; in filter_tokeninfos() local
692 filtered = calloc(i + 1, sizeof(const krb5_otp_tokeninfo *)); in filter_tokeninfos()
693 if (filtered == NULL) in filter_tokeninfos()
699 filtered[j++] = tis[i]; in filter_tokeninfos()
703 if (filtered[0] == NULL) { in filter_tokeninfos()
704 free(filtered); in filter_tokeninfos()
711 if (filtered[1] == NULL) { in filter_tokeninfos()
712 *out_ti = filtered[0]; in filter_tokeninfos()
714 free(filtered); in filter_tokeninfos()
720 *out_filtered = filtered; in filter_tokeninfos()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp48 for (Arg *const &A : filtered(Id)) { in eraseArg()
49 // Avoid the need for a non-const filtered iterator variant. in eraseArg()
142 for (auto *Arg : filtered(Id0)) {
150 for (auto *Arg : filtered(Id0, Id1, Id2)) {
160 for (auto *Arg : filtered(Id0)) { in AddAllArgsTranslated()
174 for (auto *Arg : filtered(Id0)) in AddAllArgsTranslated()
/freebsd/contrib/ntp/html/
H A Dfilter.html27 <p>Figure 2. Raw (left) and Filtered (right) Offsets</p>
29filtered offsets produced by the clock filter algorithm. If we consider the series formed as the…
30 <p>The reader might notice the somewhat boxy characteristic of the filtered offsets. Once a sample…
/freebsd/contrib/libpcap/
H A Dpcap_set_protocol_linux.3pcap56 packet type cannot be filtered with a filter specified with
58 but can be filtered by specifying the socket-layer protocol type using
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTraversalChecker.cpp47 // warnings, but this ensures things do not get filtered out by the rest of in checkBranchCondition()
89 // warnings, but this ensures things do not get filtered out by the rest of in checkPreCall()
106 // warnings, but this ensures things do not get filtered out by the rest of in checkPostCall()
/freebsd/contrib/llvm-project/lld/MachO/
H A DDriver.cpp202 for (const Arg *arg : args.filtered(OPT_syslibroot)) in getSystemLibraryRoots()
234 args.filtered(OPT_thinlto_cache_policy_eq, OPT_prune_interval_lto, in getLTOCachePolicy()
748 for (const Arg *arg : args.filtered(OPT_platform_version)) { in setPlatformVersions()
994 for (const Arg *arg : args.filtered(OPT_sectalign)) { in parseSectAlign()
1200 for (const Arg *arg : args.filtered(singleOptionCode)) in handleSymbolPatterns()
1202 for (const Arg *arg : args.filtered(listFileOptionCode)) in handleSymbolPatterns()
1209 // Other options should be handled via filtered() and/or getLastArg(). in createFiles()
1454 for (const Arg *arg : args.filtered(OPT_rpath)) { in getRuntimePaths()
1631 for (const Arg *arg : args.filtered(OPT_u)) { in link()
1636 for (const Arg *arg : args.filtered(OPT_U)) in link()
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DDriver.cpp1339 for (auto *arg : args.filtered(OPT_wholearchive_file)) in maybeExportMinGWSymbols()
1343 for (auto *arg : args.filtered(OPT_exclude_symbols)) { in maybeExportMinGWSymbols()
1456 for (const auto *arg : args.filtered(OPT_mllvm)) { in linkerMain()
1543 for (auto *arg : args.filtered(OPT_libpath)) in linkerMain()
1563 for (auto *arg : args.filtered(OPT_ignore)) { in linkerMain()
1609 for (auto *arg : args.filtered(OPT_debug, OPT_debug_opt)) { in linkerMain()
1755 for (auto *arg : args.filtered(OPT_nodefaultlib)) in linkerMain()
1832 for (auto *arg : args.filtered(OPT_alternatename)) in linkerMain()
1836 for (auto *arg : args.filtered(OPT_incl)) in linkerMain()
1853 for (auto *arg : args.filtered(OPT_opt)) { in linkerMain()
[all …]
/freebsd/sys/dev/usb/
H A Dusb_core.h109 uint8_t short_frames_ok:1; /* filtered version */
110 uint8_t short_xfer_ok:1; /* filtered version */
112 uint8_t bdma_enable:1; /* filtered version (only set if
/freebsd/crypto/openssl/util/
H A Dcheck-format-commit.sh161 ' $TEMPDIR/results.txt >>$TEMPDIR/results-filtered.txt
164 cat $TEMPDIR/results-filtered.txt
167 if [ -s $TEMPDIR/results-filtered.txt ]
/freebsd/sys/dev/ath/
H A Dif_ath_tx.c3284 * filtered.
3408 DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: filtered?!\n", in ath_tx_tid_resume()
3422 * Add the given ath_buf to the TID filtered frame list.
3423 * This requires the TID be filtered.
3433 DPRINTF(sc, ATH_DEBUG_SW_TX_FILT, "%s: not filtered?!\n", in ath_tx_tid_filt_addbuf()
3446 * Handle a completed filtered frame from the given TID.
3447 * This just enables/pauses the filtered frame state if required
3448 * and appends the filtered frame to the filtered queue.
3469 * Complete the filtered frame TX completion.
3510 * Returns 0 if the buffer could be added to the filtered list
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DDriver.cpp489 for (auto *arg : args.filtered(OPT_z)) in hasZOption()
499 for (auto *arg : args.filtered(OPT_z)) { in getZFlag()
514 for (auto *arg : args.filtered(OPT_z)) { in getZSeparate()
531 for (auto *arg : args.filtered(OPT_z)) { in getZGnuStack()
548 for (auto *arg : args.filtered(OPT_z)) { in getZStartStopVisibility()
570 for (auto *arg : args.filtered(OPT_z)) { in getZGcs()
594 for (auto *arg : args.filtered(OPT_z)) in checkZOptions()
858 for (auto *arg : args.filtered(OPT_section_start)) { in getSectionStartMap()
1090 for (auto *arg : args.filtered(OPT_lto_known_safe_vtables)) { in ltoValidateAllVtablesHaveTypeInfos()
1182 for (auto *arg : args.filtered(OPT_z)) { in getIsRela()
[all …]
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_dbg_fw_funcs.h273 * @param storm - Storm to be filtered.
292 * @param storm - Storm to be filtered.
310 * @param storm - Storm to be filtered.
325 * A filter contains up to 4 constraints. The data is "filtered in" when the
371 * @param filter_pre_trigger - if true, data is filtered before the trigger.
373 * @param filter_post_trigger - if true, data is filtered after the trigger.
456 * filtered-in if all mandatory constraints hold
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_set_term.c318 int filtered, in NCURSES_SP_NAME()
332 slines, scolumns, (void *) output, filtered, slk_format)); in NCURSES_SP_NAME()
398 sp->_filtered = filtered; in NCURSES_SP_NAME()
401 if (filtered) { in NCURSES_SP_NAME()
774 int filtered, in _nc_setupscreen() argument
782 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()
131 for (auto *Arg : Args.filtered(OPT_INPUT)) { in doList()
331 for (auto *Arg : Args.filtered(OPT_UNKNOWN)) in libDriverMain()
343 for (auto *Arg : Args.filtered(OPT_ignore)) in libDriverMain()
455 for (auto *Arg : Args.filtered(OPT_INPUT)) { in libDriverMain()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp936 for (auto *A : Args.filtered(Group)) { in addDiagnosticArgs()
1129 Args.filtered(OPT_analyzer_checker, OPT_analyzer_disable_checker)) { in ParseAnalyzerArgs()
1143 for (const auto *A : Args.filtered(OPT_analyzer_config)) { in ParseAnalyzerArgs()
2043 Args.filtered(OPT_mlink_bitcode_file, OPT_mlink_builtin_bitcode)) { in ParseCodeGenArgs()
2293 for (const auto *A : Args.filtered(OPT_fsanitize_ignorelist_EQ)) { in ParseDependencyOutputArgs()
2299 for (const auto *A : Args.filtered(OPT_fsanitize_system_ignorelist_EQ)) { in ParseDependencyOutputArgs()
2312 for (const auto *A : Args.filtered(OPT_fdepfile_entry)) in ParseDependencyOutputArgs()
2316 for (const auto *A : Args.filtered(OPT_fmodule_file)) { in ParseDependencyOutputArgs()
2923 Args.filtered(OPT_Action_Group, OPT_main_file_name)) { in ParseFrontendArgs()
2943 for (const auto *AA : Args.filtered(OPT_plugin_arg)) in ParseFrontendArgs()
[all …]
/freebsd/crypto/openssl/doc/man3/
H A DSSL_CTX_set1_cert_comp_preference.pod87 list is filtered by the configured preference list (i.e. the intersection is
89 a preference will allow any enabled algorithm by the peer. The filtered peer's

12345678910>>...17