Searched refs:bid (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DStoppoint.cpp24 void Stoppoint::SetID(break_id_t bid) { m_bid = bid; } argument
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppoint.h33 void SetID(lldb::break_id_t bid);
H A DStoppointSite.h20 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 DBreakpointLocation.h335 BreakpointLocation(lldb::break_id_t bid, Breakpoint &owner,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-defines.h39 #define LLDB_BREAK_ID_IS_VALID(bid) ((bid) != (LLDB_INVALID_BREAK_ID))
40 #define LLDB_BREAK_ID_IS_INTERNAL(bid) ((bid) < 0)
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_private.h45 int (*bid)(struct archive_read_filter_bidder *, member in struct:archive_read_filter_bidder_vtable
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); member in struct:archive_read::archive_format_descriptor
232 int (*bid)(struct archive_read *, int),
H A Darchive_read_support_filter_lrzip.c55 .bid = lrzip_bidder_bid,
H A Darchive_read_support_filter_grzip.c56 .bid = grzip_bidder_bid,
H A Darchive_read.c539 * Allow each registered stream transform to bid on whether
550 int number_bidders, i, bid, best_bid, number_filters; local
566 bid = (bidder->vtable->bid)(bidder, a->filter);
567 if (bid > best_bid) {
568 best_bid = bid;
690 * Allow each registered format to bid on whether it wants to handle
698 int bid, best_bid; local
708 if (a->format->bid) {
709 bid
[all...]
H A Darchive_read_support_format_cpio.c262 int bid; local
271 bid = 0;
275 bid += 48;
283 bid += 48;
291 bid += 48;
300 bid += 48;
308 bid += 16;
313 bid += 16;
318 return (bid);
H A Darchive_read_support_filter_xz.c86 * 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 Darchive_read_support_filter_zstd.c73 * messages.) So the bid framework here gets compiled even if no zstd library
82 .bid = zstd_bidder_bid,
H A Darchive_read_support_filter_rpm.c77 .bid = rpm_bidder_bid,
H A Darchive_read_support_filter_compress.c153 .bid = compress_bidder_bid,
H A Darchive_read_support_filter_bzip2.c66 * error messages.) So the bid framework here gets compiled even
83 .bid = bzip2_reader_bid,
H A Darchive_read_support_format_tar.c358 int bid; local
364 bid = 0;
374 * Usually, I bid the number of bits verified, but
384 bid += 48; /* Checksum is usually 6 octal digits. */
391 bid += 56;
396 bid += 56;
404 bid += 2; /* 6 bits of variation in an 8-bit field leaves 2 bits. */
416 bid = 0;
419 return (bid);
1266 * We don't know if it's pax: If the bid
[all...]
H A Darchive_read_support_filter_program.c87 * 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. */
212 /* Otherwise, bid once and then never bid again. */
H A Darchive_read_support_filter_gzip.c74 * error messages.) So the bid framework here gets compiled even
96 .bid = gzip_bidder_bid,
H A Darchive_read_support_filter_lzop.c104 .bid = lzop_bidder_bid,
H A Darchive_read_support_format_xar.c486 int bid; local
494 bid = 0;
500 bid += 32;
506 bid += 16;
512 bid += 16;
520 bid += 32;
526 return (bid);
H A Darchive_read_support_filter_lz4.c95 * error messages.) So the bid framework here gets compiled even
109 .bid = lz4_reader_bid,
/freebsd-current/sys/dev/amdtemp/
H A Damdtemp.c335 u_int bid; local
401 bid = (regs[1] >> 9) & 0x1f;
408 if (bid != 0x0b && bid != 0x0c)
414 if (bid != 0x07 && bid != 0x09 &&
415 bid != 0x0c)
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_print.c333 ctf_id_t bid = ctf_type_reference(ctfp, base); local
338 if (bid == CTF_ERR || ctf_type_kind(ctfp, bid) != CTF_K_FUNCTION) {
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonShuffler.cpp72 bool bid(unsigned B) { function in class:__anon2465::HexagonUnitAuction
73 // Exclude already auctioned slots from the bid.
635 return AuctionCore.bid(I.Core.getUnits());
/freebsd-current/share/examples/drivers/
H A Dmake_device_driver.sh484 * This allows drivers to 'bid' for a device.
492 * another driver may bid for device too.
493 * If we lose the bid, but still hold the resources, we will
510 * Called if the probe succeeded and our bid won the device.
586 * Theoretically we might also put in a weak bid for some devices that

Completed in 267 milliseconds

12