Searched refs:w1 (Results 1 - 25 of 107) sorted by relevance

12345

/freebsd-current/contrib/wpa/wpa_supplicant/binder/
H A Dsupplicant.h3 * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
13 #include "fi/w1/wpa_supplicant/BnSupplicant.h"
14 #include "fi/w1/wpa_supplicant/IIface.h"
15 #include "fi/w1/wpa_supplicant/ISupplicantCallbacks.h"
30 class Supplicant : public fi::w1::wpa_supplicant::BnSupplicant
38 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override;
43 android::sp<fi::w1::wpa_supplicant::IIface> *aidl_return) override;
49 std::vector<android::sp<fi::w1::wpa_supplicant::ISupplicantCallbacks>>
H A Diface.h3 * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
13 #include "fi/w1/wpa_supplicant/BnIface.h"
28 class Iface : public fi::w1::wpa_supplicant::BnIface
H A Dbinder_manager.h3 * Copyright (c) 2004-2016, Jouni Malinen <j@w1.fi>
40 android::sp<fi::w1::wpa_supplicant::IIface> *iface_object);
/freebsd-current/contrib/bearssl/src/symcipher/
H A Daes_ct64_cbcdec.c50 uint32_t w1[16], w2[16]; local
54 br_range_dec32le(w1, 16, buf);
56 br_range_dec32le(w1, len >> 2, buf);
60 &q[i], &q[i + 4], w1 + (i << 2));
74 w2[i] ^= w1[i - 4];
76 memcpy(ivw, w1 + 12, sizeof ivw);
83 w2[i] ^= w1[i - 4];
85 memcpy(ivw, w1 + j - 4, sizeof ivw);
H A Dpoly1305_ctmul.c73 uint64_t w0, w1, w2, w3, w4; local
103 w1 = M(a0, r1) + M(a1, r0) + M(a2, u4) + M(a3, u3) + M(a4, u2);
119 w1 += c;
120 c = w1 >> 26;
121 a1 = (uint32_t)w1 & 0x3FFFFFF;
/freebsd-current/contrib/tcpdump/
H A Dprint-tipc.c65 nd_uint32_t w1; member in struct:tipc_pkthdr
72 #define TIPC_MTYPE(w1) (((w1) >> 29) & 0x07)
73 #define TIPC_BROADCAST_ACK(w1) (((w1) >> 0) & 0xFFFF)
109 nd_uint32_t w1; member in struct:payload_tipc_pkthdr
123 nd_uint32_t w1; member in struct:internal_tipc_pkthdr
134 #define TIPC_SEQ_GAP(w1) (((w1) >> 16) & 0x1FFF)
145 nd_uint32_t w1; member in struct:link_conf_tipc_pkthdr
159 uint32_t w0, w1, w2; local
218 uint32_t w0, w1, w2, w4, w5, w9; local
280 uint32_t w0, w1, w5; local
[all...]
/freebsd-current/lib/libc/string/
H A Dwcscoll.c77 const wchar_t *w1 = ws1; local
90 if ((tr1 = wcsdup(w1)) == NULL)
109 w1 = tr1;
115 while (*w1 && *w2) {
120 _collate_lookup(table, w1, &len1,
150 w1 += len1;
153 if (!*w1) {
159 ret = *w1;
164 while (*w1 || *w2 || st1 || st2) {
166 while (*w1 || st
[all...]
H A Dstrcoll.c54 wchar_t *w1 = NULL, *w2 = NULL; local
89 w1 = t1;
94 if ((mbsrtowcs_l(w1, &cs1, sz1, &mbs1, locale)) == (size_t)-1)
100 ret = wcscoll_l(w1, w2, locale);
/freebsd-current/sys/arm64/arm64/
H A Dbus_space_asm.S62 1: ldrb w1, [x0]
63 strb w1, [x3], #1
83 1: ldrh w1, [x0]
84 strh w1, [x3], #2
104 1: ldr w1, [x0]
105 str w1, [x3], #4
146 1: ldrb w1, [x0], #1
147 strb w1, [x3], #1
167 1: ldrh w1, [x0], #2
168 strh w1, [x
[all...]
H A Dsupport.S158 cmp w4, w1 /* Compare */
176 mov w7, w1 /* Back up the compare value */
178 cas w1, w3, [x0] /* Compare and Swap */
180 cmp w1, w7 /* Check if successful */
184 str w1, [x2] /* Store the read data */
283 fsudata sttrb, w1, 0
293 fsudata sttrh, w1, 0
303 fsudata sttr, w1, 0
/freebsd-current/sys/contrib/openzfs/include/sys/
H A Dspa_checksum.h42 #define ZIO_SET_CHECKSUM(zcp, w0, w1, w2, w3) \
45 (zcp)->zc_word[1] = w1; \
/freebsd-current/lib/libsys/aarch64/
H A Dcerror.S36 str w1, [x0]
/freebsd-current/contrib/ofed/librdmacm/
H A Dib.h75 __be32 w1, __be32 w2, __be32 w3, __be32 w4)
77 addr->sib_addr32[0] = w1;
74 ib_addr_set(struct ib_addr *addr, __be32 w1, __be32 w2, __be32 w3, __be32 w4) argument
/freebsd-current/contrib/nvi/common/
H A Dencoding.c213 unsigned int w1, w2; local
216 w1 = buf[0] << 8 ^ buf[1];
218 w1 = buf[0] ^ buf[1] << 8;
220 if (w1 < 0xD800 || w1 > 0xDFFF)
221 u = w1;
222 else if (w1 > 0xDBFF);
228 u = ((w1 ^ 0xD800) << 10 ^ (w2 ^ 0xDC00)) + 0x10000;
/freebsd-current/sys/contrib/openzfs/module/zcommon/
H A Dcityhash.c53 cityhash4(uint64_t w1, uint64_t w2, uint64_t w3, uint64_t w4) argument
56 uint64_t a = w1 * HASH_K1;
/freebsd-current/sys/ofed/include/rdma/
H A Dib.h76 __be32 w1, __be32 w2, __be32 w3, __be32 w4)
78 addr->sib_addr32[0] = w1;
75 ib_addr_set(struct ib_addr *addr, __be32 w1, __be32 w2, __be32 w3, __be32 w4) argument
/freebsd-current/libexec/rbootd/
H A Drmp_var.h123 * COPYWORD(w1,w2) Copy u_word `w1' to `w2'.
135 #define COPYWORD(w1,w2) (w2) = (w1)
150 #define COPYWORD(w1, w2) \
151 { (w2).val[_WORD_HIGHPART] = (w1).val[_WORD_HIGHPART]; \
152 (w2).val[_WORD_LOWPART] = (w1).val[_WORD_LOWPART]; \
/freebsd-current/contrib/libxo/xo/
H A Dxo.c102 int w1 = 0, w2 = 0; local
136 w1 = strtol(next_arg(), NULL, 0);
146 rc = snprintf(buf, bufsiz, fmt, w1, w2, value);
148 rc = snprintf(buf, bufsiz, fmt, w1, value);
155 rc = snprintf(buf, bufsiz, fmt, w1, w2, value);
157 rc = snprintf(buf, bufsiz, fmt, w1, value);
164 rc = snprintf(buf, bufsiz, fmt, w1, w2, value);
166 rc = snprintf(buf, bufsiz, fmt, w1, value);
173 rc = snprintf(buf, bufsiz, fmt, w1, w2, value);
175 rc = snprintf(buf, bufsiz, fmt, w1, valu
[all...]
/freebsd-current/contrib/netbsd-tests/rump/rumpkern/h_client/
H A Dh_reconcli.c84 pthread_t pt, w1, w2, w3, w4; local
106 pthread_create(&w1, NULL, worker, NULL);
115 pthread_join(w1, NULL);
/freebsd-current/sys/contrib/openzfs/module/icp/asm-x86_64/aes/
H A Daestab.h121 d_4(uint32_t, t_dec(f, l), sb_data, w0, w1, w2, w3);
135 d_4(uint32_t, t_dec(i, l), isb_data, w0, w1, w2, w3);
150 d_4(uint32_t, t_dec(l, s), sb_data, w0, w1, w2, w3);
/freebsd-current/contrib/arm-optimized-routines/string/aarch64/
H A Dmemcmp-sve.S40 lasta w1, p1, z1.b
/freebsd-current/sys/sys/
H A Dassym.h40 char name ## w1[((ASSYM_ABS(value) & 0xFFFF0000UL) >> 16) + ASSYM_BIAS]; \
/freebsd-current/sys/compat/linuxkpi/common/include/net/
H A Dipv6.h90 __be32 w1, __be32 w2,
93 __ipv6_addr_set_half(&addr->s6_addr32[0], w1, w2);
89 ipv6_addr_set(struct in6_addr *addr, __be32 w1, __be32 w2, __be32 w3, __be32 w4) argument
/freebsd-current/crypto/openssl/crypto/aria/
H A Daria.c542 uint32_t w0[4], w1[4], w2[4], w3[4]; local
572 w1[0] = GET_U32_BE(userKey, 4);
573 w1[1] = GET_U32_BE(userKey, 5);
575 w1[2] = GET_U32_BE(userKey, 6);
576 w1[3] = GET_U32_BE(userKey, 7);
579 w1[2] = w1[3] = 0;
583 w1[0] = w1[1] = w1[
675 register uint32_t w1, w2; local
1126 ARIA_u128 kr, w0, w1, w2, w3; local
[all...]
/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_prime.c342 BIGNUM *g, *w1, *w3, *x, *m, *z, *b; local
351 w1 = BN_CTX_get(ctx);
359 /* w1 := w - 1 */
360 && BN_copy(w1, w)
361 && BN_sub_word(w1, 1)
373 while (!BN_is_bit_set(w1, a))
376 if (!BN_rshift(m, w1, a))
409 if (BN_is_one(z) || BN_cmp(z, w1) == 0)
417 if (BN_cmp(z, w1) == 0)
458 BN_clear(w1);
[all...]

Completed in 1135 milliseconds

12345