Home
last modified time | relevance | path

Searched refs:bdp (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/compat/linux/
H A Dlinux_file.c403 struct dirent *bdp; in linux_getdents() local
433 bdp = (struct dirent *) inp; in linux_getdents()
434 reclen = bdp->d_reclen; in linux_getdents()
435 linuxreclen = LINUX_RECLEN(bdp->d_namlen); in linux_getdents()
446 linux_dirent->d_ino = bdp->d_fileno; in linux_getdents()
447 linux_dirent->d_off = bdp->d_off; in linux_getdents()
452 lbuf[linuxreclen - 1] = bdp->d_type; in linux_getdents()
453 strlcpy(linux_dirent->d_name, bdp->d_name, in linux_getdents()
480 struct dirent *bdp; in linux_getdents64() local
510 bdp = (struct dirent *) inp; in linux_getdents64()
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_gf2m.c628 BN_ULONG *udp, *bdp, *vdp, *cdp; in BN_GF2m_mod_inv_vartime() local
638 bdp = b->d; in BN_GF2m_mod_inv_vartime()
639 bdp[0] = 1; in BN_GF2m_mod_inv_vartime()
641 bdp[i] = 0; in BN_GF2m_mod_inv_vartime()
658 b0 = bdp[0]; in BN_GF2m_mod_inv_vartime()
665 b1 = bdp[i + 1] ^ (p->d[i + 1] & mask); in BN_GF2m_mod_inv_vartime()
666 bdp[i] = ((b0 >> 1) | (b1 << (BN_BITS2 - 1))) & BN_MASK2; in BN_GF2m_mod_inv_vartime()
670 bdp[i] = b0 >> 1; in BN_GF2m_mod_inv_vartime()
693 bdp = cdp; in BN_GF2m_mod_inv_vartime()
698 bdp[i] ^= cdp[i]; in BN_GF2m_mod_inv_vartime()
/freebsd/share/doc/smm/18.net/
H A Dspell.ok156 bdp
/freebsd/contrib/sqlite3/
H A Dshell.c4649 #define IS_BX_DIGIT(bdp) (((u8)(bdp))<0x80) argument
4650 #define IS_BX_WS(bdp) ((bdp)==WS) argument
4651 #define IS_BX_PAD(bdp) ((bdp)==PC) argument
4718 u8 bdp = BX_DV_PROTO(c); in fromBase64() local
4719 switch( bdp ){ in fromBase64()
4729 bdp = 0; in fromBase64()
4733 qv = qv<<6 | bdp; in fromBase64()
/freebsd/usr.sbin/services_mkdb/
H A Dservices1049 bdp 581/tcp #Bundle Discovery Protocol
1050 bdp 581/udp #Bundle Discovery Protocol
/freebsd/contrib/arm-optimized-routines/math/test/traces/
H A Dsincosf.txt17421 0x1.22bdp-2
17525 0x1.22bdp-2
18042 0x1.22bdp-2
18146 0x1.22bdp-2
22518 0x1.450bdp+0
22630 0x1.450bdp+0
23077 0x1.450bdp+0
23187 0x1.450bdp+0
23304 0x1.844bdp-3
H A Dexp.txt2773 -0x1.07670469986bdp-13
8755 -0x1.01131688524bdp-8
/freebsd/sys/netinet/tcp_stacks/
H A Dbbr.c3411 uint64_t bdp, rtt; in bbr_get_raw_target_cwnd() local
3425 bdp = bbr_get_bw_delay_prod(rtt, bw); in bbr_get_raw_target_cwnd()
3427 cwnd = (uint32_t)(((bdp * ((uint64_t)gain)) + (uint64_t)(BBR_UNIT - 1)) / ((uint64_t)BBR_UNIT)); in bbr_get_raw_target_cwnd()