| /freebsd/contrib/libarchive/libarchive/ |
| H A D | libarchive_internals.3 | 95 The one with the highest bid is initialized with the first block. 162 function to provide bid and initialization functions. 170 .It Bid 171 The bid function is invoked with a pointer and size of a block of data. 178 The bid function is otherwise stateless. 181 The value returned by the bid function indicates its suitability 183 A bid of zero will ensure that this decompressor is never invoked. 188 byte, bid 19. 234 .It Bid 235 Formats bid b [all...] |
| H A D | archive_read.c | 533 * Allow each registered stream transform to bid on whether 544 int number_bidders, i, bid, best_bid, number_filters; in choose_filters() local 560 bid = (bidder->vtable->bid)(bidder, a->filter); in choose_filters() 561 if (bid > best_bid) { in choose_filters() 562 best_bid = bid; in choose_filters() 683 * Allow each registered format to bid on whether it wants to handle 691 int bid, best_bid; in choose_format() local 701 if (a->format->bid) { in choose_format() 702 bid = (a->format->bid)(a, best_bid); in choose_format() 703 if (bid == ARCHIVE_FATAL) in choose_format() [all …]
|
| H A D | archive_read_private.h | 45 int (*bid)(struct archive_read_filter_bidder *, 55 * * The bid manager initializes the client-provided reader as the 61 * * The bid manager creates a new filter structure for the winning 65 * This ends only when no bidder provides a non-zero bid. Then 198 int (*bid)(struct archive_read *, int best_bid); 232 int (*bid)(struct archive_read *, int), 47 int (*bid)(struct archive_read_filter_bidder *, global() member 200 int (*bid)(struct archive_read *, int best_bid); global() member
|
| H A D | archive_read_support_filter_program.c | 87 * bid twice in the same pipeline. 127 .bid = program_bidder_bid, 188 * If we do have a signature, bid only if that matches. 190 * If there's no signature, we bid INT_MAX the first time 191 * we're called, then never bid again. 206 /* No match, so don't bid. */ in program_bidder_bid() 212 /* Otherwise, bid once and then never bid again. */ in program_bidder_bid()
|
| H A D | archive_read_support_format_all.c | 43 * bid management can then sort the bidders before calling in archive_read_support_format_all() 67 * increase the chance that a high bid from someone else will in archive_read_support_format_all()
|
| H A D | archive_read_support_format_cpio.c | 263 int bid; in archive_read_format_cpio_bid() local 272 bid = 0; in archive_read_format_cpio_bid() 276 bid += 48; in archive_read_format_cpio_bid() 284 bid += 48; in archive_read_format_cpio_bid() 292 bid += 48; in archive_read_format_cpio_bid() 301 bid += 48; in archive_read_format_cpio_bid() 309 bid += 16; in archive_read_format_cpio_bid() 314 bid += 16; in archive_read_format_cpio_bid() 319 return (bid); in archive_read_format_cpio_bid()
|
| H A D | archive_read_support_format_raw.c | 89 * Bid 1 if this is a non-empty file. Anyone who can really support 92 * folks if there are bid errors or minor file damage, so we don't
|
| H A D | archive_read_support_filter_zstd.c | 73 * messages.) So the bid framework here gets compiled even if no zstd library 82 .bid = zstd_bidder_bid,
|
| H A D | archive_read_support_filter_xz.c | 86 * can give better error messages.) So the bid framework here gets 111 .bid = xz_bidder_bid, 143 .bid = lzma_bidder_bid, 176 .bid = lzip_bidder_bid,
|
| H A D | archive_read_support_filter_bzip2.c | 66 * error messages.) So the bid framework here gets compiled even 83 .bid = bzip2_reader_bid,
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ |
| H A D | lldb-defines.h | 39 #define LLDB_BREAK_ID_IS_VALID(bid) ((bid) != (LLDB_INVALID_BREAK_ID)) argument 40 #define LLDB_BREAK_ID_IS_INTERNAL(bid) ((bid) < 0) argument
|
| /freebsd/sys/contrib/device-tree/Bindings/nvmem/ |
| H A D | amlogic-efuse.txt | 30 bid: bid@46 {
|
| H A D | amlogic,meson-gxbb-efuse.yaml | 58 bid: bid@46 {
|
| /freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | Stoppoint.cpp | 24 void Stoppoint::SetID(break_id_t bid) { m_bid = bid; } in SetID() argument
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonShuffler.cpp | 47 unsigned Bid = 0; 51 HexagonBid(unsigned B) { Bid = B ? MAX / llvm::popcount(B) : 0; } 54 bool isSold() const { return (Bid >= MAX); } 57 Bid += B.Bid; in operator +=() 72 bool bid(unsigned B) { 73 // Exclude already auctioned slots from the bid. in bid() function in __anon63202d6d0111::HexagonUnitAuction 635 return AuctionCore.bid(I.Core.getUnits()); in tryAuction() 48 unsigned Bid = 0; global() member in __anon63202d6d0111::HexagonBid
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | CheckerContext.cpp | 54 unsigned BId = FD->getBuiltinID(); in isCLibraryFunction() local 55 if (BId != 0) { in isCLibraryFunction() 58 StringRef BName = FD->getASTContext().BuiltinInfo.getName(BId); in isCLibraryFunction()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | StoppointSite.h | 20 StoppointSite(lldb::break_id_t bid, lldb::addr_t m_addr, bool hardware); 22 StoppointSite(lldb::break_id_t bid, lldb::addr_t m_addr,
|
| H A D | Stoppoint.h | 33 void SetID(lldb::break_id_t bid);
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 230 auto BID = GetBreakpointID(); in Deactivate() local 231 if (BID == LLDB_INVALID_BREAK_ID) in Deactivate() 235 process_sp->GetTarget().RemoveBreakpointByID(BID); in Deactivate()
|
| /freebsd/sys/dev/amdtemp/ |
| H A D | amdtemp.c | 360 u_int bid; in amdtemp_attach() local 426 bid = (regs[1] >> 9) & 0x1f; in amdtemp_attach() 433 if (bid != 0x0b && bid != 0x0c) in amdtemp_attach() 439 if (bid != 0x07 && bid != 0x09 && in amdtemp_attach() 440 bid != 0x0c) in amdtemp_attach()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 290 auto BID = GetBreakpointID(); in Deactivate() local 291 if (BID == LLDB_INVALID_BREAK_ID) in Deactivate() 295 process_sp->GetTarget().RemoveBreakpointByID(BID); in Deactivate()
|
| /freebsd/sys/contrib/device-tree/src/arm64/amlogic/ |
| H A D | meson-axg-jethome-jethub-j1xx.dtsi | 182 bid: bid@12 { label
|
| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_read_format_huge_rpm.c | 39 /* This archive should have no entries -- if it has entries, the bid has screwed up */ in DEFINE_TEST()
|
| /freebsd/sys/sys/ |
| H A D | ucoredump.h | 72 * we can find wins. It's somewhat expected that a coredumper may want to bid
|
| /freebsd/share/man/man9/ |
| H A D | coredumper_register.9 | 86 This priority is not recommended, as the default vnode dumper will bid at
|