Home
last modified time | relevance | path

Searched refs:cbr (Results 1 – 23 of 23) sorted by relevance

/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
Ddsl_prop.c286 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/
Dptunit-time.c176 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()
Dptunit-query.c2109 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()
Dptunit-packet.c323 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/
Dpt_time.c65 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()
Dpt_encoder.c447 *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()
Dpt_query_decoder.c946 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()
Dpt_insn_decoder.c424 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()
Dpt_packet_decoder.c510 size = pt_pkt_read_cbr(&packet->payload.cbr, decoder->pos, in pt_pkt_decode_cbr()
Dpt_block_decoder.c440 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/
Dpt_time.h66 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/
Dvmbus_chan.c319 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/
Dintel-pt.h840 struct pt_packet_cbr cbr; member
1428 } cbr; member
1627 uint32_t *cbr);
2121 uint32_t *cbr);
2400 uint32_t *cbr);
Dintel-pt.h.in839 /** 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/
Dvmbus.h119 void *cbr; member
174 const struct vmbus_chan_br *cbr, const void *udata,
/freebsd-12-stable/contrib/binutils/gas/doc/
Dc-avr.texi296 0111KKKKddddKKKK cbr d,n
/freebsd-12-stable/sys/dev/hyperv/netvsc/
Dif_hn.c6209 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/
Dctl_backend_ramdisk.c174 CTL_BACKEND_DECLARE(cbr, ctl_be_ramdisk_driver);
/freebsd-12-stable/contrib/file/magic/Magdir/
Darchive1393 !:ext rar/cbr
1411 !:ext rar/cbr
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AVR/
DAVRInstrInfo.td1814 def CBR : InstAlias<"cbr\t$rd, $k", (ANDIRdK LD8:$rd, imm_com8:$k), 0>;
/freebsd-12-stable/sys/contrib/ngatm/netnatm/msg/
Duni_ie.c4318 MKT(UNI_BEARER_ATC_CBR, cbr), in DEF_IE_PRINT()
/freebsd-12-stable/contrib/gcc/doc/include/
Dtexinfo.tex4951 \def\cbr{{\hskip 6pt\circle\char'011}}
4956 \cbl\leaders\hrule height\circthick\hfil\cbr
/freebsd-12-stable/contrib/amd/doc/
Dtexinfo.tex6342 \def\cbr{{\hskip 6pt\circle\char'011}}
6347 \cbl\leaders\hrule height\circthick\hfil\cbr