| /freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ |
| D | dsl_prop.c | 286 dsl_prop_cb_record_t *cbr; in dsl_prop_register() local 295 cbr = kmem_alloc(sizeof (dsl_prop_cb_record_t), KM_SLEEP); in dsl_prop_register() 296 cbr->cbr_ds = ds; in dsl_prop_register() 297 cbr->cbr_func = callback; in dsl_prop_register() 298 cbr->cbr_arg = cbarg; in dsl_prop_register() 304 cbr->cbr_pr = pr; in dsl_prop_register() 305 list_insert_head(&pr->pr_cbs, cbr); in dsl_prop_register() 306 list_insert_head(&ds->ds_prop_cbs, cbr); in dsl_prop_register() 309 cbr->cbr_func(cbr->cbr_arg, value); in dsl_prop_register() 443 dsl_prop_cb_record_t *cbr, *next_cbr; in dsl_prop_unregister_all() local [all …]
|
| /freebsd-12-stable/contrib/processor-trace/libipt/test/src/ |
| D | ptunit-time.c | 176 uint32_t cbr; in query_cbr_null() local 182 errcode = pt_time_query_cbr(&cbr, NULL); in query_cbr_null() 190 uint32_t cbr; in query_cbr_none() local 193 errcode = pt_time_query_cbr(&cbr, &tfix->time); in query_cbr_none() 263 static struct ptunit_result cbr(struct time_fixture *tfix) in cbr() function 266 uint32_t cbr; in cbr() local 274 errcode = pt_time_query_cbr(&cbr, &tfix->time); in cbr() 277 ptu_uint_eq(cbr, 0x38); in cbr() 360 ptu_run_f(suite, cbr, tfix); in main()
|
| D | ptunit-query.c | 2109 uint32_t cbr; in cbr_null() local 2118 errcode = pt_qry_core_bus_ratio(NULL, &cbr); in cbr_null() 2127 uint32_t cbr; in cbr_initial() local 2130 errcode = pt_qry_core_bus_ratio(decoder, &cbr); in cbr_initial() 2136 static struct ptunit_result cbr(struct ptu_decoder_fixture *dfix) in cbr() function 2139 uint32_t cbr; in cbr() local 2143 decoder->last_time.cbr = 42; in cbr() 2145 errcode = pt_qry_core_bus_ratio(decoder, &cbr); in cbr() 2147 ptu_uint_eq(cbr, 42); in cbr() 2866 ptu_run_f(suite, cbr, dfix_empty); in main()
|
| D | ptunit-packet.c | 323 static struct ptunit_result cbr(struct packet_fixture *pfix) in cbr() function 326 pfix->packet[0].payload.cbr.ratio = 0x23; in cbr() 613 ptu_run_f(suite, cbr, pfix); in main()
|
| /freebsd-12-stable/contrib/processor-trace/libipt/src/ |
| D | pt_time.c | 65 int pt_time_query_cbr(uint32_t *cbr, const struct pt_time *time) in pt_time_query_cbr() argument 67 if (!cbr || !time) in pt_time_query_cbr() 73 *cbr = time->cbr; in pt_time_query_cbr() 163 time->cbr = packet->ratio; in pt_time_update_cbr() 561 uint64_t cbr, p1, fcr; in pt_tcal_header_cbr() local 571 cbr = packet->ratio; in pt_tcal_header_cbr() 573 fcr = (p1 << pt_tcal_fcr_shr) / cbr; in pt_tcal_header_cbr()
|
| D | pt_encoder.c | 447 *pos++ = packet->payload.cbr.ratio; in pt_enc_next() 849 int pt_encode_cbr(struct pt_encoder *encoder, uint8_t cbr) in pt_encode_cbr() argument 854 packet.payload.cbr.ratio = cbr; in pt_encode_cbr()
|
| D | pt_query_decoder.c | 946 int pt_qry_core_bus_ratio(struct pt_query_decoder *decoder, uint32_t *cbr) in pt_qry_core_bus_ratio() argument 948 if (!decoder || !cbr) in pt_qry_core_bus_ratio() 951 return pt_time_query_cbr(cbr, &decoder->last_time); in pt_qry_core_bus_ratio() 2234 &packet.payload.cbr, in skd010_scan_for_ovf_resume() 2463 &packet.payload.cbr, in apl12_resume_disabled() 2656 &packet.payload.cbr, in apl11_apply() 3131 event->variant.cbr.ratio = packet.ratio; in pt_qry_decode_cbr() 3166 event->variant.cbr.ratio = packet.ratio; in pt_qry_header_cbr()
|
| D | pt_insn_decoder.c | 424 int pt_insn_core_bus_ratio(struct pt_insn_decoder *decoder, uint32_t *cbr) in pt_insn_core_bus_ratio() argument 426 if (!decoder || !cbr) in pt_insn_core_bus_ratio() 429 return pt_qry_core_bus_ratio(&decoder->query, cbr); in pt_insn_core_bus_ratio()
|
| D | pt_packet_decoder.c | 510 size = pt_pkt_read_cbr(&packet->payload.cbr, decoder->pos, in pt_pkt_decode_cbr()
|
| D | pt_block_decoder.c | 440 int pt_blk_core_bus_ratio(struct pt_block_decoder *decoder, uint32_t *cbr) in pt_blk_core_bus_ratio() argument 442 if (!decoder || !cbr) in pt_blk_core_bus_ratio() 445 return pt_qry_core_bus_ratio(&decoder->query, cbr); in pt_blk_core_bus_ratio()
|
| /freebsd-12-stable/contrib/processor-trace/libipt/internal/include/ |
| D | pt_time.h | 66 uint8_t cbr; member 106 extern int pt_time_query_cbr(uint32_t *cbr, const struct pt_time *time);
|
| /freebsd-12-stable/sys/dev/hyperv/vmbus/ |
| D | vmbus_chan.c | 319 struct vmbus_chan_br cbr; in vmbus_chan_open() local 334 cbr.cbr = chan->ch_bufring; in vmbus_chan_open() 335 cbr.cbr_paddr = chan->ch_bufring_dma.hv_paddr; in vmbus_chan_open() 336 cbr.cbr_txsz = txbr_size; in vmbus_chan_open() 337 cbr.cbr_rxsz = rxbr_size; in vmbus_chan_open() 339 error = vmbus_chan_open_br(chan, &cbr, udata, udlen, cb, cbarg); in vmbus_chan_open() 362 vmbus_chan_open_br(struct vmbus_channel *chan, const struct vmbus_chan_br *cbr, in vmbus_chan_open_br() argument 380 br = cbr->cbr; in vmbus_chan_open_br() 381 txbr_size = cbr->cbr_txsz; in vmbus_chan_open_br() 382 rxbr_size = cbr->cbr_rxsz; in vmbus_chan_open_br() [all …]
|
| /freebsd-12-stable/contrib/processor-trace/libipt/include/ |
| D | intel-pt.h | 840 struct pt_packet_cbr cbr; member 1428 } cbr; member 1627 uint32_t *cbr); 2121 uint32_t *cbr); 2400 uint32_t *cbr);
|
| D | intel-pt.h.in | 839 /** Packet: cbr. */ 840 struct pt_packet_cbr cbr; member 1424 /** Event: cbr. */ 1428 } cbr; member 1618 * On success, provides the current core:bus ratio in \@cbr. The ratio is 1623 * Returns -pte_invalid if \@decoder or \@cbr is NULL. 1627 uint32_t *cbr); 2112 * On success, provides the current core:bus ratio in \@cbr. The ratio is 2117 * Returns -pte_invalid if \@decoder or \@cbr is NULL. 2121 uint32_t *cbr); [all …]
|
| /freebsd-12-stable/sys/dev/hyperv/include/ |
| D | vmbus.h | 119 void *cbr; member 174 const struct vmbus_chan_br *cbr, const void *udata,
|
| /freebsd-12-stable/contrib/binutils/gas/doc/ |
| D | c-avr.texi | 296 0111KKKKddddKKKK cbr d,n
|
| /freebsd-12-stable/sys/dev/hyperv/netvsc/ |
| D | if_hn.c | 6209 struct vmbus_chan_br cbr; in hn_chan_attach() local 6252 cbr.cbr = rxr->hn_br; in hn_chan_attach() 6253 cbr.cbr_paddr = rxr->hn_br_dma.hv_paddr; in hn_chan_attach() 6254 cbr.cbr_txsz = HN_TXBR_SIZE; in hn_chan_attach() 6255 cbr.cbr_rxsz = HN_RXBR_SIZE; in hn_chan_attach() 6256 error = vmbus_chan_open_br(chan, &cbr, NULL, 0, hn_chan_callback, rxr); in hn_chan_attach()
|
| /freebsd-12-stable/sys/cam/ctl/ |
| D | ctl_backend_ramdisk.c | 174 CTL_BACKEND_DECLARE(cbr, ctl_be_ramdisk_driver);
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | archive | 1393 !:ext rar/cbr 1411 !:ext rar/cbr
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/ |
| D | AVRInstrInfo.td | 1814 def CBR : InstAlias<"cbr\t$rd, $k", (ANDIRdK LD8:$rd, imm_com8:$k), 0>;
|
| /freebsd-12-stable/sys/contrib/ngatm/netnatm/msg/ |
| D | uni_ie.c | 4318 MKT(UNI_BEARER_ATC_CBR, cbr), in DEF_IE_PRINT()
|
| /freebsd-12-stable/contrib/gcc/doc/include/ |
| D | texinfo.tex | 4951 \def\cbr{{\hskip 6pt\circle\char'011}} 4956 \cbl\leaders\hrule height\circthick\hfil\cbr
|
| /freebsd-12-stable/contrib/amd/doc/ |
| D | texinfo.tex | 6342 \def\cbr{{\hskip 6pt\circle\char'011}} 6347 \cbl\leaders\hrule height\circthick\hfil\cbr
|