/freebsd/stand/i386/libi386/ |
H A D | biosdisk.c | 211 bdinfo_t *bd = NULL; in bd_get_bdinfo() local 216 return (bd); in bd_get_bdinfo() 219 STAILQ_FOREACH(bd, bdi, bd_link) { in bd_get_bdinfo() 221 return (bd); in bd_get_bdinfo() 224 return (bd); in bd_get_bdinfo() 234 bdinfo_t *bd; in bd_bios2unit() local 240 STAILQ_FOREACH(bd, bdi[i], bd_link) { in bd_bios2unit() 241 if (bd->bd_unit == biosdev) { in bd_bios2unit() 243 bd->bd_unit); in bd_bios2unit() 256 bdinfo_t *bd; in bd_unit2bios() local [all …]
|
/freebsd/sys/compat/linuxkpi/common/include/linux/ |
H A D | backlight.h | 71 #define bl_get_data(bd) (bd)->data argument 75 void linux_backlight_device_unregister(struct backlight_device *bd); 78 #define backlight_device_unregister(bd) linux_backlight_device_unregister(bd) argument 81 backlight_update_status(struct backlight_device *bd) in backlight_update_status() argument 83 return (bd->ops->update_status(bd)); in backlight_update_status() 87 backlight_force_update(struct backlight_device *bd, int reason) in backlight_force_update() argument 89 bd->props.brightness = bd->ops->get_brightness(bd); in backlight_force_update() 93 backlight_get_brightness(struct backlight_device *bd) in backlight_get_brightness() argument 96 return (bd->props.brightness); in backlight_get_brightness() 100 backlight_device_set_brightness(struct backlight_device *bd, int brightness) in backlight_device_set_brightness() argument [all …]
|
/freebsd/usr.bin/netstat/ |
H A D | bpf.c | 76 bpf_flags(struct xbpf_d *bd, char *flagbuf) in bpf_flags() argument 79 *flagbuf++ = bd->bd_promisc ? 'p' : '-'; in bpf_flags() 80 *flagbuf++ = bd->bd_immediate ? 'i' : '-'; in bpf_flags() 81 *flagbuf++ = bd->bd_hdrcmplt ? '-' : 'f'; in bpf_flags() 82 *flagbuf++ = (bd->bd_direction == BPF_D_IN) ? '-' : in bpf_flags() 83 ((bd->bd_direction == BPF_D_OUT) ? 'o' : 's'); in bpf_flags() 84 *flagbuf++ = bd->bd_feedback ? 'b' : '-'; in bpf_flags() 85 *flagbuf++ = bd->bd_async ? 'a' : '-'; in bpf_flags() 86 *flagbuf++ = bd->bd_locked ? 'l' : '-'; in bpf_flags() 89 if (bd->bd_promisc) in bpf_flags() [all …]
|
/freebsd/sys/kern/ |
H A D | vfs_bio.c | 144 #define BD_LOCKPTR(bd) (&(bd)->bd_cleanq->bq_lock) argument 145 #define BD_LOCK(bd) mtx_lock(BD_LOCKPTR((bd))) argument 146 #define BD_UNLOCK(bd) mtx_unlock(BD_LOCKPTR((bd))) argument 147 #define BD_ASSERT_LOCKED(bd) mtx_assert(BD_LOCKPTR((bd)), MA_OWNED) argument 148 #define BD_RUN_LOCKPTR(bd) (&(bd)->bd_run_lock) argument 149 #define BD_RUN_LOCK(bd) mtx_lock(BD_RUN_LOCKPTR((bd))) argument 150 #define BD_RUN_UNLOCK(bd) mtx_unlock(BD_RUN_LOCKPTR((bd))) argument 151 #define BD_DOMAIN(bd) (bd - bdomain) argument 200 static void bd_init(struct bufdomain *bd); 201 static int bd_flushall(struct bufdomain *bd); [all …]
|
/freebsd/sys/netinet/ |
H A D | in_fib_algo.c | 98 const struct bsearch4_data *bd = (const struct bsearch4_data *)algo_data; in bsearch4_lookup() local 103 int end = bd->num_items; in bsearch4_lookup() 108 br = &bd->br[i]; in bsearch4_lookup() 123 return (bd->br[start].nh); in bsearch4_lookup() 148 struct bsearch4_data *bd; in bsearch4_init() local 164 bd = (struct bsearch4_data *)roundup2((uintptr_t)mem, CACHE_LINE_SIZE); in bsearch4_init() 165 bd->mem = mem; in bsearch4_init() 166 bd->alloc_items = count; in bsearch4_init() 167 bd->fd = fd; in bsearch4_init() 169 *_data = bd; in bsearch4_init() [all …]
|
/freebsd/sys/net/ |
H A D | bpfdesc.h | 115 #define BPFD_LOCK(bd) mtx_lock(&(bd)->bd_lock) argument 116 #define BPFD_UNLOCK(bd) mtx_unlock(&(bd)->bd_lock) argument 117 #define BPFD_LOCK_ASSERT(bd) mtx_assert(&(bd)->bd_lock, MA_OWNED) argument 119 #define BPF_PID_REFRESH(bd, td) (bd)->bd_pid = (td)->td_proc->p_pid argument 120 #define BPF_PID_REFRESH_CUR(bd) (bd)->bd_pid = curthread->td_proc->p_pid argument
|
H A D | bpf.c | 2988 struct bpf_d *bd; in bpf_zero_counters() local 2996 CK_LIST_FOREACH(bd, &bp->bif_dlist, bd_next) { in bpf_zero_counters() 2997 counter_u64_zero(bd->bd_rcount); in bpf_zero_counters() 2998 counter_u64_zero(bd->bd_dcount); in bpf_zero_counters() 2999 counter_u64_zero(bd->bd_fcount); in bpf_zero_counters() 3000 counter_u64_zero(bd->bd_wcount); in bpf_zero_counters() 3001 counter_u64_zero(bd->bd_wfcount); in bpf_zero_counters() 3002 counter_u64_zero(bd->bd_zcopy); in bpf_zero_counters() 3012 bpfstats_fill_xbpf(struct xbpf_d *d, struct bpf_d *bd) in bpfstats_fill_xbpf() argument 3018 d->bd_immediate = bd->bd_immediate; in bpfstats_fill_xbpf() [all …]
|
/freebsd/sys/arm/freescale/imx/ |
H A D | imx6_sdma.c | 84 struct sdma_buffer_descriptor *bd; in sdma_intr() local 107 bd = &channel->bd[j]; in sdma_intr() 108 bd->mode.status |= BD_DONE; in sdma_intr() 109 if (bd->mode.status & BD_RROR) in sdma_intr() 185 channel->bd = kmem_alloc_contig(PAGE_SIZE, M_ZERO, 0, ~0, in sdma_alloc() 202 kmem_free(channel->bd, PAGE_SIZE); in sdma_free() 244 struct sdma_buffer_descriptor *bd; in sdma_configure() local 275 bd = &channel->bd[i]; in sdma_configure() 276 bd->mode.command = conf->command; in sdma_configure() 277 bd->mode.status = BD_DONE | BD_EXTD | BD_CONT | BD_INTR; in sdma_configure() [all …]
|
/freebsd/sys/contrib/dev/athk/ath12k/ |
H A D | core.c | 140 void ath12k_core_free_bdf(struct ath12k_base *ab, struct ath12k_board_data *bd) in ath12k_core_free_bdf() argument 142 if (!IS_ERR(bd->fw)) in ath12k_core_free_bdf() 143 release_firmware(bd->fw); in ath12k_core_free_bdf() 145 memset(bd, 0, sizeof(*bd)); in ath12k_core_free_bdf() 149 struct ath12k_board_data *bd, in ath12k_core_parse_bd_ie_board() argument 212 bd->data = board_ie_data; in ath12k_core_parse_bd_ie_board() 213 bd->len = board_ie_len; in ath12k_core_parse_bd_ie_board() 238 struct ath12k_board_data *bd, in ath12k_core_fetch_board_data_api_n() argument 254 if (!bd->fw) in ath12k_core_fetch_board_data_api_n() 255 bd->fw = ath12k_core_firmware_request(ab, filename); in ath12k_core_fetch_board_data_api_n() [all …]
|
/freebsd/tools/bus_space/examples/ |
H A D | am79c900_diag.py | 249 bd = bufdesc.from_address(addr_rxdesc + ctypes.sizeof(bufdesc) * i) variable 250 bd.buffer = busaddr + (addr_rxbufs - cpuaddr) + bufsize * i 251 bd.flags = (1 << 31) | (15 << 12) | (-bufsize & 0xfff) 252 bd.length = 0 253 bd._pad_ = 0 256 bd = bufdesc.from_address(addr_txdesc + ctypes.sizeof(bufdesc) * i) variable 257 bd.buffer = busaddr + (addr_txbufs - cpuaddr) + bufsize * i 258 bd.flags = (15 << 12) 259 bd.length = 0 260 bd._pad_ = 0 [all …]
|
/freebsd/sys/arm/ti/cpsw/ |
H A D | if_cpsw.c | 425 struct cpsw_cpdma_bd bd; in cpsw_dump_slot() local 429 cpsw_cpdma_read_bd(sc, slot, &bd); in cpsw_dump_slot() 431 cpsw_cpdma_bd_paddr(sc, slot), bd.next); in cpsw_dump_slot() 432 printf(" BufPtr: 0x%08x BufLen: 0x%08x\n", bd.bufptr, bd.buflen); in cpsw_dump_slot() 433 printf(" BufOff: 0x%08x PktLen: 0x%08x\n", bd.bufoff, bd.pktlen); in cpsw_dump_slot() 437 if (bd.flags & (1 << (15 - i))) { in cpsw_dump_slot() 1602 struct cpsw_cpdma_bd bd; in cpsw_rx_dequeue() local 1617 cpsw_cpdma_read_bd(sc, slot, &bd); in cpsw_rx_dequeue() 1624 if ((bd.flags & (CPDMA_BD_OWNER | CPDMA_BD_TDOWNCMPLT)) == in cpsw_rx_dequeue() 1639 if (bd.flags & CPDMA_BD_TDOWNCMPLT) { in cpsw_rx_dequeue() [all …]
|
/freebsd/sys/contrib/dev/athk/ath11k/ |
H A D | core.c | 1087 void ath11k_core_free_bdf(struct ath11k_base *ab, struct ath11k_board_data *bd) in ath11k_core_free_bdf() argument 1089 if (!IS_ERR(bd->fw)) in ath11k_core_free_bdf() 1090 release_firmware(bd->fw); in ath11k_core_free_bdf() 1092 memset(bd, 0, sizeof(*bd)); in ath11k_core_free_bdf() 1096 struct ath11k_board_data *bd, in ath11k_core_parse_bd_ie_board() argument 1163 bd->data = board_ie_data; in ath11k_core_parse_bd_ie_board() 1164 bd->len = board_ie_len; in ath11k_core_parse_bd_ie_board() 1189 struct ath11k_board_data *bd, in ath11k_core_fetch_board_data_api_n() argument 1208 if (!bd->fw) in ath11k_core_fetch_board_data_api_n() 1209 bd->fw = ath11k_core_firmware_request(ab, filename); in ath11k_core_fetch_board_data_api_n() [all …]
|
/freebsd/crypto/heimdal/lib/gssapi/mech/ |
H A D | gss_mo.c | 608 gss_buffer_desc bd; in gss_display_mech_attr() local 609 bd.value = rk_UNCONST(ma->name); in gss_display_mech_attr() 610 bd.length = strlen(ma->name); in gss_display_mech_attr() 611 major = _gss_copy_buffer(minor_status, &bd, name); in gss_display_mech_attr() 617 gss_buffer_desc bd; in gss_display_mech_attr() local 618 bd.value = rk_UNCONST(ma->short_desc); in gss_display_mech_attr() 619 bd.length = strlen(ma->short_desc); in gss_display_mech_attr() 620 major = _gss_copy_buffer(minor_status, &bd, short_desc); in gss_display_mech_attr() 626 gss_buffer_desc bd; in gss_display_mech_attr() local 627 bd.value = rk_UNCONST(ma->long_desc); in gss_display_mech_attr() [all …]
|
/freebsd/crypto/openssl/crypto/bn/asm/ |
H A D | sparcv9a-mont.pl | 114 $ba="%f0"; $bb="%f2"; $bc="%f4"; $bd="%f6"; 219 ldda [%o4+4]%asi,$bd 230 fxtod $bd,$bd 248 fmuld $alo,$bd,$alod 260 fmuld $ahi,$bd,$ahid 315 fmuld $alo,$bd,$alod 342 fmuld $ahi,$bd,$ahid 402 fmuld $alo,$bd,$alod 426 fmuld $ahi,$bd,$ahid 537 ldda [%o4+4]%asi,$bd [all …]
|
H A D | ppc64-mont.pl | 172 $ba="f0"; $bb="f1"; $bc="f2"; $bd="f3"; 372 lfd $bd,`$FRAME+24`($sp) 388 fcfid $bd,$bd 431 fmadd $T1b,$A0,$bd,$T1b 433 fmadd $T2b,$A1,$bd,$T2b 435 fmadd $T3b,$A2,$bd,$T3b 437 fmul $dotb,$A3,$bd 567 fmadd $T1b,$A0,$bd,$T1b 569 fmadd $T2b,$A1,$bd,$T2b 573 fmadd $T3b,$A2,$bd,$T3b [all …]
|
/freebsd/secure/caroot/untrusted/ |
H A D | GeoTrust_Universal_CA.pem | 28 be:2b:5b:b5:a4:9e:a1:d9:72:58:bd:00:1b:4c:bf: 46 bd:cf:b4:f3:5c:5d:54:7a:69:09:96:d6:db:11:c1: 48 e1:bd:7d:a7:bd:57:65:0b:e4:fe:25:ed:b6:69:10: 49 dc:28:1a:46:bd:01:1d:d0:97:b5:e1:98:3b:c0:37: 79 5a:08:76:a9:a6:af:77:2f:b7:60:bd:44:46:6a:ef:97:ff:73: 85 10:a8:fb:f5:38:86:f1:db:0a:c6:bd:84:a3:23:41:de:d6:77: 89 dd:09:8e:18:a8:da:40:8d:92:26:11:53:61:73:5d:eb:bd:e7: 94 37:4d:8b:20:59:03:30:19:a1:2c:c8:bd:11:1f:df:ae:c9:4a: 98 3f:a1:14:a7:cf:b5:5d:eb:db:db:1c:c4:76:df:88:b9:bd:45:
|
H A D | Staat_der_Nederlanden_Root_CA_-_G2.pem | 31 bd:61:48:ef:fd:d2:e0:60:88:e5:b9:18:60:28:c3: 47 99:bc:18:7e:9f:ee:7d:66:7c:3e:bd:94:b8:81:ce: 52 f3:6b:74:c4:72:74:e1:e3:8b:a0:4a:bd:8d:66:2f: 57 f0:76:ff:0b:79:b5:af:bd:fb:a9:69:91:46:97:68: 76 15:09:50:51:ef:2d:bd:24:7b:88:86:3b:f9:b4:bc:92:09:96: 80 d9:50:3e:8a:42:18:29:c6:b4:56:fc:56:10:a0:05:17:bd:0c: 88 e4:bd:7e:59:6c:9b:f0:f0:d8:e7:ca:f2:e9:97:38:7e:89:be:
|
/freebsd/secure/caroot/trusted/ |
H A D | Baltimore_CyberTrust_Root.pem | 42 c9:23:53:3f:1f:24:98:21:5c:07:99:29:bd:c6:3a: 43 ec:e7:6e:86:3a:6b:97:74:63:33:bd:68:18:31:f0: 57 bd:f7:64:fd:2d:d7:30:e3:a4:10:17:eb:da:29:29:b6:79:3f: 58 76:f6:19:13:23:b8:10:0a:f9:58:a4:d4:61:70:bd:04:61:6a: 59 12:8a:17:d5:0a:bd:c5:bc:30:7c:d6:e9:0c:25:8d:86:40:4f: 65 1a:63:bd:64:e6:1f:b7:ce:f0:f2:9f:2e:bb:1b:b7:f2:50:88:
|
H A D | BJCA_Global_Root_CA1.pem | 29 00:f1:66:08:bd:d9:c5:15:61:cb:84:04:41:a5:69: 44 c8:f4:35:d1:64:63:7a:e9:6e:9a:28:d6:30:bd:e6: 55 cf:69:f1:6e:44:6c:d4:24:ea:8d:24:a1:18:bf:bd: 57 e7:f1:23:3e:d7:df:85:9d:27:3c:d4:40:bd:0a:0c: 58 bd:f5:e7:8d:25:d6:81:74:87:46:d4:29:75:a2:42: 62 ff:50:1f:ab:c2:b4:c0:ce:e8:ea:fd:0f:bd:8d:4d: 79 8e:b4:36:9e:d4:9c:bd:dd:20:d6:53:c9:18:a9:b5:56:b9:76: 80 8b:95:67:66:ee:bd:98:fe:ae:ef:be:6e:fb:60:f6:fd:59:c6:
|
H A D | Atos_TrustedRoot_Root_CA_RSA_TLS_2021.pem | 29 00:b6:80:0e:c4:79:bd:05:8c:7d:b0:a3:9d:4d:22: 31 bd:8f:6c:b7:23:8f:5f:d5:c4:d8:41:cb:f2:02:1e: 34 46:bd:eb:d4:7b:3f:3f:7c:47:38:04:a9:1b:aa:52: 35 df:13:37:d3:15:15:4e:bd:5f:7c:af:ad:63:c7:79: 53 58:06:bd:c9:b6:e3:f6:89:5d:89:f9:ac:44:a1:cb: 59 e7:bd:ec:c1:73:a7:94:5a:cb:92:64:82:a6:00:c1: 86 99:71:b5:33:b5:57:45:e6:42:47:75:6a:0e:b0:08:0c:ae:bd: 101 1b:3d:8b:6e:cc:4d:b0:16:0d:96:1d:83:1f:46:c0:9b:bd:43:
|
H A D | GLOBALTRUST_2020.pem | 18 5a:4b:bd:5a:fb:4f:8a:5b:fa:65:e5 31 34:f9:ec:8b:8a:78:c5:dd:6b:af:bd:c4:df:93:45: 82 0f:4b:70:43:d0:82:ff:a8:cc:bf:a4:94:c0:be:87:bd:8a:e3: 85 f9:60:1b:a0:c5:97:c3:d3:2c:88:31:a2:bd:30:ec:d0:d0:c0: 92 7e:a5:37:80:b1:1c:52:bd:33:81:4c:8f:f9:dd:65:d9:14:cd: 101 64:ef:ff:67:47:88:58:25:2f:3e:86:07:bd:fb:a8:e5:82:a8: 103 01:30:c4:f2:a9:fa:d0:03:bd:72:37:60:56:1f:36:7c:bd:39:
|
/freebsd/sys/dev/qlnx/qlnxe/ |
H A D | qlnx_def.h | 163 #define BD_UNMAP_ADDR(bd) HILO_U64(le32toh((bd)->addr.hi), \ argument 164 le32toh((bd)->addr.lo)) 165 #define BD_UNMAP_LEN(bd) (le16toh((bd)->nbytes)) argument 167 #define BD_SET_UNMAP_ADDR_LEN(bd, maddr, len) \ argument 169 (bd)->addr.hi = htole32(U64_HI(maddr)); \ 170 (bd)->addr.lo = htole32(U64_LO(maddr)); \ 171 (bd)->nbytes = htole16(len); \
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/ |
H A D | multc3.c | 24 fp_t bd = b * d; in __multc3() local 28 COMPLEXTF_REAL(z) = ac - bd; in __multc3() 51 (crt_isinf(ac) || crt_isinf(bd) || crt_isinf(ad) || crt_isinf(bc))) { in __multc3()
|
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/ |
H A D | CrashDebugger.cpp | 90 ReducePassList(BugDriver &bd) : BD(bd) {} in ReducePassList() argument 145 ReduceCrashingGlobalInitializers(BugDriver &bd, BugTester testFn) in ReduceCrashingGlobalInitializers() argument 146 : BD(bd), TestFn(testFn) {} in ReduceCrashingGlobalInitializers() 212 ReduceCrashingFunctions(BugDriver &bd, BugTester testFn) in ReduceCrashingFunctions() argument 213 : BD(bd), TestFn(testFn) {} in ReduceCrashingFunctions() 344 ReduceCrashingFunctionAttributes(BugDriver &bd, const std::string &FnName, in ReduceCrashingFunctionAttributes() argument 346 : BD(bd), FnName(FnName), TestFn(testFn) {} in ReduceCrashingFunctionAttributes() 563 ReduceCrashingConditionals(BugDriver &bd, BugTester testFn, bool Direction) in ReduceCrashingConditionals() argument 564 : BD(bd), TestFn(testFn), Direction(Direction) {} in ReduceCrashingConditionals() 662 ReduceSimplifyCFG(BugDriver &bd, BugTester testFn) in ReduceSimplifyCFG() argument [all …]
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_pkey_provided/ |
H A D | DSA.pub.txt | 5 0d:07:5f:19:44:02:f1:bd:ce:df:10:f8:02:5d:7d: 18 97:f1:49:c9:f9:f4:9b:f4:e8:85:a7:bd:36:55:4a: 20 bd 42 71:51:32:e9:47:74:bd:0c:21:40:84:12:0a:17:73: 55 e3:ae:bd:52:54:05:d8:26:26:ba:ba:05:b5:e9:e5:
|