/haiku/src/libs/compat/openbsd_wlan/net80211/ |
H A D | ieee80211_priv.h | 84 ((u_int64_t)(p)[0] << 56 | (u_int64_t)(p)[1] << 48 | \ 85 (u_int64_t)(p)[2] << 40 | (u_int64_t)(p)[3] << 32 | \ 86 (u_int64_t)(p)[4] << 24 | (u_int64_t)(p)[5] << 16 | \ 87 (u_int64_t)(p)[6] << 8 | (u_int64_t)(p)[7]) 115 ((u_int64_t)(p)[5] << 40 | (u_int64_t)(p)[4] << 32 | \ 116 (u_int64_t)(p)[3] << 24 | (u_int64_t)(p)[2] << 16 | \ 117 (u_int64_t)(p)[1] << 8 | (u_int64_t)(p)[0])
|
H A D | ieee80211_crypto.h | 84 u_int64_t k_rsc[IEEE80211_NUM_TID]; 85 u_int64_t k_mgmt_rsc; 86 u_int64_t k_tsc; 169 void ieee80211_michael_mic_failure(struct ieee80211com *, u_int64_t);
|
H A D | ieee80211_crypto_ccmp.c | 82 u_int64_t pn, int lm, u_int8_t b[16], u_int8_t a[16], u_int8_t s0[16]) in ieee80211_ccmp_phase1() 332 *pn = (u_int64_t)ivp[0] | in ieee80211_ccmp_get_pn() 333 (u_int64_t)ivp[1] << 8 | in ieee80211_ccmp_get_pn() 334 (u_int64_t)ivp[4] << 16 | in ieee80211_ccmp_get_pn() 335 (u_int64_t)ivp[5] << 24 | in ieee80211_ccmp_get_pn() 336 (u_int64_t)ivp[6] << 32 | in ieee80211_ccmp_get_pn() 337 (u_int64_t)ivp[7] << 40; in ieee80211_ccmp_get_pn() 348 u_int64_t pn, *prsc; in ieee80211_ccmp_decrypt()
|
H A D | ieee80211_crypto_tkip.c | 342 *tsc = (u_int64_t)ivp[2] | in ieee80211_tkip_get_tsc() 343 (u_int64_t)ivp[0] << 8 | in ieee80211_tkip_get_tsc() 344 (u_int64_t)ivp[4] << 16 | in ieee80211_tkip_get_tsc() 345 (u_int64_t)ivp[5] << 24 | in ieee80211_tkip_get_tsc() 346 (u_int64_t)ivp[6] << 32 | in ieee80211_tkip_get_tsc() 347 (u_int64_t)ivp[7] << 40; in ieee80211_tkip_get_tsc() 361 u_int64_t tsc, *prsc; in ieee80211_tkip_decrypt() 538 ieee80211_michael_mic_failure(struct ieee80211com *ic, u_int64_t tsc) in ieee80211_michael_mic_failure()
|
H A D | ieee80211_proto.h | 111 struct ieee80211_node *, u_int16_t, u_int64_t); 151 struct ieee80211_node *, u_int64_t);
|
H A D | ieee80211_node.h | 328 u_int64_t ni_replaycnt; 330 u_int64_t ni_reqreplaycnt;
|
H A D | ieee80211_crypto_bip.c | 159 u_int64_t ipn; in ieee80211_bip_decap()
|
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ |
H A D | if_ath_tsf.h | 38 static __inline u_int64_t 39 ath_extend_tsf15(u_int32_t rstamp, u_int64_t tsf) in ath_extend_tsf15() 51 static __inline u_int64_t 52 ath_extend_tsf32(u_int32_t rstamp, u_int64_t tsf) in ath_extend_tsf32() 55 u_int64_t tsf64 = (tsf & ~0xffffffffULL) | rstamp; in ath_extend_tsf32() 72 static __inline u_int64_t 73 ath_extend_tsf(struct ath_softc *sc, u_int32_t rstamp, u_int64_t tsf) in ath_extend_tsf()
|
H A D | if_ath_tdma.c | 183 (long long) ( ((u_int64_t) (bt.bt_nexttbtt)) << 10), in ath_tdma_settimers() 184 (long long) ( ((u_int64_t) (bt.bt_nexttbtt)) << 10)); in ath_tdma_settimers() 359 #define TU_TO_TSF(_tu) (((u_int64_t)(_tu)) << 10) in ath_tdma_update() 365 u_int64_t tsf, rstamp, nextslot, nexttbtt, nexttbtt_full; in ath_tdma_update()
|
/haiku/src/libs/compat/freebsd_network/compat/sys/ |
H A D | types.h | 24 #define __bitcount64(x) __builtin_popcountll((u_int64_t)(x)) 58 static __inline u_int64_t 59 __bitcount64(u_int64_t _x) in __bitcount64() 73 static __inline u_int64_t 74 __bitcount64(u_int64_t _x) in __bitcount64()
|
/haiku/src/libs/compat/openbsd_wlan/crypto/ |
H A D | sha2.c | 105 (w)[0] += (u_int64_t)(n); \ 150 void SHA512Transform(u_int64_t *, const u_int8_t *); 187 const static u_int64_t K512[80] = { 231 const static u_int64_t sha384_initial_hash_value[8] = { 243 const static u_int64_t sha512_initial_hash_value[8] = { 510 *(u_int64_t *)&context->buffer[SHA256_SHORT_BLOCK_LENGTH] = context->bitcount[0]; in SHA256Final() 546 W512[j] = (u_int64_t)data[7] | ((u_int64_t)data[6] << 8) | \ 547 ((u_int64_t)data[5] << 16) | ((u_int64_t)data[4] << 24) | \ 548 ((u_int64_t)data[3] << 32) | ((u_int64_t)data[2] << 40) | \ 549 ((u_int64_t)data[1] << 48) | ((u_int64_t)data[0] << 56); \ [all …]
|
H A D | sha2.h | 57 u_int64_t st64[8]; 59 u_int64_t bitcount[2];
|
H A D | key_wrap.c | 48 u_int64_t B[2], t; in aes_key_wrap() 81 u_int64_t B[2], t; in aes_key_unwrap()
|
H A D | sha1.h | 17 u_int64_t count;
|
H A D | md5.h | 23 u_int64_t count; /* number of bits, mod 2^64 */
|
/haiku/src/add-ons/kernel/file_systems/fat/bsd/sys/ |
H A D | namei.h | 43 u_int64_t cn_flags; /* flags to namei */
|
/haiku/src/add-ons/kernel/drivers/network/ether/nforce/dev/nfe/ |
H A D | if_nfereg.h | 230 #define NFE_ADDR_LO(x) ((u_int64_t) (x) & 0xffffffff) 231 #define NFE_ADDR_HI(x) ((u_int64_t) (x) >> 32)
|
/haiku/src/add-ons/kernel/drivers/network/wlan/aironetwifi/dev/an/ |
H A D | if_anreg.h | 157 u_int64_t an_phys; 166 u_int64_t an_phys; 175 u_int64_t an_phys;
|
/haiku/headers/posix/ |
H A D | stdint.h | 164 typedef uint64_t u_int64_t; typedef
|
/haiku/headers/private/firewire/ |
H A D | firewirereg.h | 293 u_int64_t start; 294 u_int64_t end;
|
/haiku/src/add-ons/kernel/file_systems/fat/ |
H A D | support.h | 104 ComponentName(u_int64_t flags, struct ucred* cred, enum nameiop nameiop, int lkflags,
|
/haiku/src/libs/compat/freebsd_wlan/net80211/ |
H A D | ieee80211_crypto_ccmp.c | 90 static int ccmp_decrypt(struct ieee80211_key *, u_int64_t pn, 344 u_int64_t pn, size_t dlen, in ccmp_init_blocks() 593 ccmp_decrypt(struct ieee80211_key *key, u_int64_t pn, struct mbuf *m, int hdrlen) in ccmp_decrypt()
|
H A D | ieee80211_scan.h | 275 u_int64_t tsf;
|
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/ |
H A D | ar9300_recv_ds.c | 200 u_int32_t pa, struct ath_desc *nds, u_int64_t tsf, in ar9300_proc_rx_desc()
|
/haiku/src/add-ons/kernel/file_systems/ufs2/ |
H A D | ufs2.h | 297 u_int64_t fs_swuid; /* system-wide uid */ 334 u_int64_t fs_maxfilesize; /* maximum representable file size */
|