Home
last modified time | relevance | path

Searched refs:bt (Results 26 – 50 of 427) sorted by relevance

12345678910>>...18

/freebsd/contrib/jemalloc/src/
H A Dprof.c115 prof_bt_t bt; member
370 dummy_node.bt = *bt; in prof_log_bt_index()
395 new_node->bt.len = bt->len; in prof_log_bt_index()
396 memcpy(new_node->vec, bt->vec, bt->len * sizeof(void *)); in prof_log_bt_index()
488 prof_bt_t bt; in prof_try_log() local
543 bt->vec = vec; in bt_init()
544 bt->len = 0; in bt_init()
620 data->bt->vec[data->bt->len] = ip; in prof_unwind_callback()
621 data->bt->len++; in prof_unwind_callback()
840 memcpy(gctx->vec, bt->vec, bt->len * sizeof(void *)); in prof_gctx_create()
[all …]
/freebsd/sys/contrib/device-tree/Bindings/net/
H A Dbroadcom-bluetooth.txt14 * "brcm,bcm4329-bt"
15 * "brcm,bcm4330-bt"
16 * "brcm,bcm43438-bt"
18 * "brcm,bcm43540-bt"
36 - brcm,bt-pcm-int-params: configure PCM parameters via a 5-byte array
52 compatible = "brcm,bcm43438-bt";
54 brcm,bt-pcm-int-params = [01 02 00 01 01];
H A Dbtusb.txt17 Documentation/devicetree/bindings/net/marvell-bt-8xxx.txt
23 that shall be used for out-of-band wake-on-bt. Driver will
31 Following example uses irq pin number 3 of gpio0 for out of band wake-on-bt:
37 mvl_bt1: bt@1 {
H A Dmarvell-bt-8xxx.txt10 * "marvell,sd8897-bt" (for SDIO)
11 * "marvell,sd8997-bt" (for SDIO)
54 compatible = "marvell,sd8897-bt";
74 mvl_bt1: bt@1 {
/freebsd/sys/contrib/dev/rtw89/
H A Dcoex.c714 memset(bt, 0, sizeof(*bt)); in _reset_btc_var()
758 struct rtw89_btc_bt_info *bt = &cx->bt; in _chk_btc_err() local
2245 struct rtw89_btc_bt_info *bt = &cx->bt; in _update_btc_state_map() local
3261 struct rtw89_btc_bt_info *bt = &cx->bt; in _set_ant() local
5020 if (bt->enable.now != bt->enable.last) in _update_bt_scbd()
5030 bt->enable.last = bt->enable.now; in _update_bt_scbd()
5561 bt->inq_pag.last = bt->inq_pag.now; in _update_bt_info()
6479 bt->raw_info[4], bt->raw_info[5], bt->raw_info[6], in _show_bt_info()
8393 bt->raw_info[2], bt->raw_info[3], in rtw89_btc_dump_info()
8394 bt->raw_info[4], bt->raw_info[5], in rtw89_btc_dump_info()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/
H A Dmt8183-kukui-jacuzzi-pico6.dts15 bt_wakeup: bt-wakeup {
85 bt_reset: bt-reset {
94 bt_pins_wakeup: bt-pins-wakeup {
95 piins-bt-wakeup {
101 bt_pins_reset: bt-pins-reset {
102 pins-bt-reset {
H A Dmt8192-asurada-hayato-r1.dts43 bt_pins: bt-pins {
44 pins-bt-kill {
49 pins-bt-wake {
54 pins-ap-wake-bt {
138 compatible = "realtek,rtl8822cs-bt";
/freebsd/sys/compat/linux/
H A Dlinux_vdso_gtod.inc189 *bt = th->th_offset;
204 bt->sec += x >> 32;
205 bintime_addx(bt, x << 32);
207 bintime_addx(bt, scale * delta);
209 bintime_add(bt, &th->th_boottime);
233 *bt = th->th_offset;
248 struct bintime bt;
260 bintime2timeval(&bt, tv);
268 struct bintime bt;
290 error = freebsd_getnanouptime(&bt, tk);
[all …]
/freebsd/sys/kern/
H A Dkern_lockstat.c77 struct bintime bt; in lockstat_nsecs() local
85 binuptime(&bt); in lockstat_nsecs()
86 ns = bt.sec * (uint64_t)1000000000; in lockstat_nsecs()
87 ns += ((uint64_t)1000000000 * (uint32_t)(bt.frac >> 32)) >> 32; in lockstat_nsecs()
/freebsd/sys/contrib/device-tree/Bindings/net/bluetooth/
H A Dnxp,88w8987-bt.yaml4 $id: http://devicetree.org/schemas/net/bluetooth/nxp,88w8987-bt.yaml#
23 - nxp,88w8987-bt
24 - nxp,88w8997-bt
43 compatible = "nxp,88w8987-bt";
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dlinux,bt-sco.yaml4 $id: http://devicetree.org/schemas/sound/linux,bt-sco.yaml#
26 - linux,bt-sco
38 compatible = "linux,bt-sco";
H A Dmt2701-cs42448.txt8 - mediatek,audio-codec-bt-mrg the phandles of bt-sco dummy codec
38 mediatek,audio-codec-bt-mrg = <&bt_sco_codec>;
/freebsd/sys/amd64/vmm/io/
H A Dvpmtmr.c64 struct bintime bt; in vpmtmr_init() local
70 FREQ2BT(PMTMR_FREQ, &bt); in vpmtmr_init()
71 vpmtmr->freq_sbt = bttosbt(bt); in vpmtmr_init()
/freebsd/sys/sys/
H A Dtime.h538 void binuptime(struct bintime *bt);
551 void bintime(struct bintime *bt);
555 void getbinuptime(struct bintime *bt);
568 void getbintime(struct bintime *bt);
594 #define BT2FREQ(bt) \ argument
595 (((uint64_t)0x8000000000000000 + ((bt)->frac >> 2)) / \
596 ((bt)->frac >> 1))
600 #define FREQ2BT(freq, bt) \ argument
602 (bt)->sec = 0; \
603 (bt)->frac = ((uint64_t)0x8000000000000000 / (freq)) << 1; \
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h136 BugReport(Kind kind, const BugType &bt, StringRef desc) in BugReport() argument
137 : BugReport(kind, bt, "", desc) {} in BugReport()
256 BasicBugReport(const BugType &bt, StringRef desc, PathDiagnosticLocation l) in BasicBugReport() argument
257 : BugReport(Kind::Basic, bt, desc), Location(l) {} in BasicBugReport()
369 PathSensitiveBugReport(const BugType &bt, StringRef desc, in PathSensitiveBugReport() argument
371 : PathSensitiveBugReport(bt, desc, desc, errorNode) {} in PathSensitiveBugReport()
373 PathSensitiveBugReport(const BugType &bt, StringRef shortDesc, StringRef desc, in PathSensitiveBugReport() argument
375 : PathSensitiveBugReport(bt, shortDesc, desc, errorNode, in PathSensitiveBugReport()
386 PathSensitiveBugReport(const BugType &bt, StringRef desc, in PathSensitiveBugReport() argument
390 : PathSensitiveBugReport(bt, desc, desc, errorNode, LocationToUnique, in PathSensitiveBugReport()
[all …]
/freebsd/tools/tools/build_option_survey/
H A Dreduce.sh32 bt=`awk 'NR == 2 {print $3}' $2/_.df`
33 echo $3 A $a S $s C $c B $bt D `expr $br - $bt`
/freebsd/sys/dev/acpica/Osd/
H A DOsdSchedule.c271 struct bintime bt; in AcpiOsGetTimer() local
274 binuptime(&bt); in AcpiOsGetTimer()
275 t = (uint64_t)bt.sec * 10000000; in AcpiOsGetTimer()
276 t += ((uint64_t)10000000 * (uint32_t)(bt.frac >> 32)) >> 32; in AcpiOsGetTimer()
/freebsd/contrib/jemalloc/include/jemalloc/internal/
H A Dprof_externs.h51 void bt_init(prof_bt_t *bt, void **vec);
52 void prof_backtrace(prof_bt_t *bt);
53 prof_tctx_t *prof_lookup(tsd_t *tsd, prof_bt_t *bt);
/freebsd/tools/regression/sockets/unix_cmsg/
H A Dt_xxxtime.c.in46 const struct %%DTYPE%% *bt;
51 bt = (struct %%DTYPE%% *)CMSG_DATA(cmsghdr);
53 if (uc_check_%%TTYPE%%(bt) < 0)
57 (intmax_t)bt->%%MAJ_MEMB%%, (uintmax_t)bt->%%MIN_MEMB%%);
/freebsd/sys/contrib/device-tree/src/arm/rockchip/
H A Drk3288-veyron-broadcom-bluetooth.dtsi15 compatible = "brcm,bcm43540-bt";
20 brcm,bt-pcm-int-params = [01 02 00 01 01];
/freebsd/sys/contrib/device-tree/src/arm64/rockchip/
H A Dpx30-engicam-ctouch2.dtsi11 bt {
12 bt_enable_h: bt-enable-h {
/freebsd/sys/contrib/device-tree/src/arm/broadcom/
H A Dbcm283x-rpi-wifi-bt.dtsi30 bt: bluetooth { label
31 compatible = "brcm,bcm43438-bt";
/freebsd/sys/x86/isa/
H A Dorm.c85 bus_space_tag_t bt; in orm_identify() local
114 bt = rman_get_bustag(res); in orm_identify()
116 bus_space_read_region_1(bt, bh, 0, buf, sizeof(buf)); in orm_identify()
/freebsd/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_freebsd.c40 const HAL_BEACON_TIMERS *bt);
962 const HAL_BEACON_TIMERS *bt) in ar9300_beacon_set_beacon_timers() argument
974 OS_REG_WRITE(ah, AR_NEXT_TBTT_TIMER, TU_TO_USEC(bt->bt_nexttbtt)); in ar9300_beacon_set_beacon_timers()
975 OS_REG_WRITE(ah, AR_NEXT_DMA_BEACON_ALERT, ONE_EIGHTH_TU_TO_USEC(bt->bt_nextdba)); in ar9300_beacon_set_beacon_timers()
976 OS_REG_WRITE(ah, AR_NEXT_SWBA, ONE_EIGHTH_TU_TO_USEC(bt->bt_nextswba)); in ar9300_beacon_set_beacon_timers()
977 OS_REG_WRITE(ah, AR_NEXT_NDP_TIMER, TU_TO_USEC(bt->bt_nextatim)); in ar9300_beacon_set_beacon_timers()
979 bperiod = TU_TO_USEC(bt->bt_intval & HAL_BEACON_PERIOD); in ar9300_beacon_set_beacon_timers()
980 AH9300(ah)->ah_beaconInterval = bt->bt_intval & HAL_BEACON_PERIOD; in ar9300_beacon_set_beacon_timers()
989 if (bt->bt_intval & HAL_BEACON_RESET_TSF) in ar9300_beacon_set_beacon_timers()
995 bt->bt_flags != 0 ? bt->bt_flags : in ar9300_beacon_set_beacon_timers()
/freebsd/crypto/openssl/crypto/cmp/
H A Dcmp_client.c133 int bt; in send_receive_check() local
176 bt = OSSL_CMP_MSG_get_bodytype(*rep); in send_receive_check()
182 ossl_cmp_log1(INFO, ctx, "received %s", ossl_cmp_bodytype_to_string(bt)); in send_receive_check()
185 if (bt != OSSL_CMP_PKIBODY_POLLREP && bt != OSSL_CMP_PKIBODY_PKICONF in send_receive_check()
193 if (bt == expected_type in send_receive_check()
195 || (IS_CREP(bt) && expected_type == OSSL_CMP_PKIBODY_POLLREP)) in send_receive_check()
199 ERR_raise(ERR_LIB_CMP, bt == OSSL_CMP_PKIBODY_ERROR ? CMP_R_RECEIVED_ERROR : in send_receive_check()
202 if (bt != OSSL_CMP_PKIBODY_ERROR) { in send_receive_check()
204 ossl_cmp_bodytype_to_string(bt), "'"); in send_receive_check()

12345678910>>...18