Home
last modified time | relevance | path

Searched defs:w (Results 1 – 25 of 616) sorted by relevance

12345678910>>...25

/freebsd-13-stable/crypto/openssh/openbsd-compat/
HDbsd-waitpid.h36 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ argument
37 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) argument
38 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) argument
39 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w)) argument
40 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1) argument
41 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) argument
43 #define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG) argument
HDsha1.c42 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
43 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
44 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
45 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
46 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
/freebsd-13-stable/sys/dev/usb/
HDusb_endian.h49 #define UGETB(w) \ argument
52 #define UGETW(w) \ argument
56 #define UGETDW(w) \ argument
62 #define UGETQW(w) \ argument
72 #define USETB(w,v) do { \ argument
76 #define USETW(w,v) do { \ argument
81 #define USETDW(w,v) do { \ argument
88 #define USETQW(w,v) do { \ argument
99 #define USETW2(w,b1,b0) do { \ argument
104 #define USETW4(w,b3,b2,b1,b0) do { \ argument
[all …]
/freebsd-13-stable/crypto/openssl/crypto/blake2/
HDblake2_impl.h27 uint32_t w; in load32() local
31 uint32_t w = ((uint32_t)src[0]) in load32() local
47 uint64_t w; in load64() local
51 uint64_t w = ((uint64_t)src[0]) in load64() local
63 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32()
81 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64()
101 uint64_t w = ((uint64_t)src[0]) in load48() local
110 static ossl_inline void store48(uint8_t *dst, uint64_t w) in store48()
121 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32()
126 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64()
/freebsd-13-stable/contrib/libarchive/libarchive/
HDarchive_blake2_impl.h37 uint32_t w; in load32() local
52 uint64_t w; in load64() local
71 uint16_t w; in load16() local
81 static BLAKE2_INLINE void store16( void *dst, uint16_t w ) in store16()
92 static BLAKE2_INLINE void store32( void *dst, uint32_t w ) in store32()
105 static BLAKE2_INLINE void store64( void *dst, uint64_t w ) in store64()
133 static BLAKE2_INLINE void store48( void *dst, uint64_t w ) in store48()
144 static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32()
149 static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64()
HDarchive_write_set_format_warc.c121 struct warc_s *w; in archive_write_set_format_warc() local
164 struct warc_s *w = a->format_data; in _warc_options() local
183 struct warc_s *w = a->format_data; in _warc_header() local
270 struct warc_s *w = a->format_data; in _warc_data() local
293 struct warc_s *w = a->format_data; in _warc_finish_entry() local
317 struct warc_s *w = a->format_data; in _warc_free() local
/freebsd-13-stable/sys/contrib/libb2/
HDblake2-impl.h58 static inline void store32( void *dst, uint32_t w ) in store32()
71 static inline void store64( void *dst, uint64_t w ) in store64()
91 uint64_t w = *p++; in load48() local
100 static inline void store48( void *dst, uint64_t w ) in store48()
111 static inline uint32_t rotl32( const uint32_t w, const unsigned c ) in rotl32()
116 static inline uint64_t rotl64( const uint64_t w, const unsigned c ) in rotl64()
121 static inline uint32_t rotr32( const uint32_t w, const unsigned c ) in rotr32()
126 static inline uint64_t rotr64( const uint64_t w, const unsigned c ) in rotr64()
/freebsd-13-stable/crypto/openssl/crypto/bn/
HDbn_word.c13 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word()
61 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word()
98 int BN_add_word(BIGNUM *a, BN_ULONG w) in BN_add_word()
134 int BN_sub_word(BIGNUM *a, BN_ULONG w) in BN_sub_word()
181 int BN_mul_word(BIGNUM *a, BN_ULONG w) in BN_mul_word()
/freebsd-13-stable/contrib/unbound/sldns/
HDwire2str.c388 int w = vsnprintf(*str, *slen, format, args); in sldns_str_vprint() local
404 int w; in sldns_str_print() local
428 int w = 0; in print_remainder_hex() local
438 int w = 0, comprloop = 0; in sldns_wire2str_pkt_scan() local
489 int w = 0; in sldns_rr_tcttl_scan() local
524 int w = 0; in sldns_wire2str_rr_scan() local
595 int w = 0; in sldns_wire2str_rrquestion_scan() local
620 int w = 0; in sldns_wire2str_rr_unknown_scan() local
655 int flags, w = 0; in rr_comment_dnskey() local
708 int w = 0; in rr_comment_nsec3() local
[all …]
/freebsd-13-stable/contrib/atf/atf-c++/
Dtests_test.cpp98 atf::tests::detail::atf_tp_writer w(ss); in ATF_TEST_CASE_BODY() local
106 atf::tests::detail::atf_tp_writer w(ss); in ATF_TEST_CASE_BODY() local
121 atf::tests::detail::atf_tp_writer w(ss); in ATF_TEST_CASE_BODY() local
143 atf::tests::detail::atf_tp_writer w(ss); in ATF_TEST_CASE_BODY() local
/freebsd-13-stable/sys/contrib/libsodium/src/libsodium/include/sodium/private/
HDcommon.h51 uint64_t w; in load64_le() local
69 store64_le(uint8_t dst[8], uint64_t w) in store64_le()
90 uint32_t w; in load32_le() local
104 store32_le(uint8_t dst[4], uint32_t w) in store32_le()
123 uint64_t w; in load64_be() local
141 store64_be(uint8_t dst[8], uint64_t w) in store64_be()
162 uint32_t w; in load32_be() local
176 store32_be(uint8_t dst[4], uint32_t w) in store32_be()
/freebsd-13-stable/crypto/libecc/include/libecc/words/
HDwords.h79 #define WLSHIFT(w, c) ((word_t)(((c) >= WORD_BITS) ? WORD(0) : (word_t)((w) << (c)))) argument
80 #define WRSHIFT(w, c) ((word_t)(((c) >= WORD_BITS) ? WORD(0) : (word_t)((w) >> (c)))) argument
89 #define WORD_MASK_IFZERO(w) ((word_t)(((word_t)((w) != 0)) - WORD(1))) argument
90 #define WORD_MASK_IFNOTZERO(w) ((word_t)(((word_t)((w) == 0)) - WORD(1))) argument
/freebsd-13-stable/contrib/unbound/services/
HDoutside_network.c195 waiting_tcp_delete(struct waiting_tcp* w) in waiting_tcp_delete()
213 pick_outgoing_tcp(struct pending_tcp* pend, struct waiting_tcp* w, int s) in pick_outgoing_tcp()
374 struct waiting_tcp* w = reuse->write_wait_first; local
470 struct waiting_tcp* w = (struct waiting_tcp*)node->key; local
869 struct waiting_tcp* w = outnet->tcp_wait_first; local
946 struct waiting_tcp* w; local
1048 struct waiting_tcp* w; local
1156 struct waiting_tcp* w = (struct waiting_tcp*)node->key; local
1215 struct waiting_tcp* w = (struct waiting_tcp*)node->key; local
1225 struct waiting_tcp* w = (struct waiting_tcp*)node->key; local
[all …]
/freebsd-13-stable/contrib/unbound/libunbound/
HDlibworker.c92 libworker_delete_env(struct libworker* w) in libworker_delete_env()
112 libworker_delete(struct libworker* w) in libworker_delete()
121 libworker_delete_event(struct libworker* w) in libworker_delete_event()
133 struct libworker* w = (struct libworker*)calloc(1, sizeof(*w)); in libworker_setup() local
266 handle_cancel(struct libworker* w, uint8_t* buf, uint32_t len) in handle_cancel()
287 libworker_do_cmd(struct libworker* w, uint8_t* msg, uint32_t len) in libworker_do_cmd()
315 struct libworker* w = (struct libworker*)arg; in libworker_handle_control_cmd() local
332 struct libworker* w = (struct libworker*)arg; in libworker_dobg() local
378 struct libworker* w; in libworker_bg() local
578 setup_qinfo_edns(struct libworker* w, struct ctx_query* q, in setup_qinfo_edns()
[all …]
/freebsd-13-stable/contrib/ntp/libntp/lib/isc/
HDsha1.c107 #define R0(v,w,x,y,z,i) \ argument
110 #define R1(v,w,x,y,z,i) \ argument
113 #define R2(v,w,x,y,z,i) \ argument
116 #define R3(v,w,x,y,z,i) \ argument
119 #define R4(v,w,x,y,z,i) \ argument
140 #define nR0(v,w,x,y,z,i) R0(*v,*w,*x,*y,*z,i) argument
141 #define nR1(v,w,x,y,z,i) R1(*v,*w,*x,*y,*z,i) argument
142 #define nR2(v,w,x,y,z,i) R2(*v,*w,*x,*y,*z,i) argument
143 #define nR3(v,w,x,y,z,i) R3(*v,*w,*x,*y,*z,i) argument
144 #define nR4(v,w,x,y,z,i) R4(*v,*w,*x,*y,*z,i) argument
/freebsd-13-stable/sys/dev/sound/pci/hda/
HDhdaa.c270 struct hdaa_widget *w; in hdaa_channels_handler() local
380 hdaa_hpredir_handler(struct hdaa_widget *w) in hdaa_hpredir_handler()
462 hdaa_autorecsrc_handler(struct hdaa_audio_as *as, struct hdaa_widget *w) in hdaa_autorecsrc_handler()
533 hdaa_presence_handler(struct hdaa_widget *w) in hdaa_presence_handler()
580 struct hdaa_widget *w; in hdaa_jack_poll_callback() local
603 hdaa_eld_dump(struct hdaa_widget *w) in hdaa_eld_dump()
683 hdaa_eld_handler(struct hdaa_widget *w) in hdaa_eld_handler()
747 struct hdaa_widget *w; in hdaa_sense_init() local
799 struct hdaa_widget *w; in hdaa_sense_deinit() local
941 hdaa_local_patch_pin(struct hdaa_widget *w) in hdaa_local_patch_pin()
[all …]
/freebsd-13-stable/usr.sbin/makefs/cd9660/
HDcd9660_conversion.c56 cd9660_721(uint16_t w, unsigned char *twochar) in cd9660_721()
65 cd9660_731(uint32_t w, unsigned char *fourchar) in cd9660_731()
75 cd9660_722(uint16_t w, unsigned char *twochar) in cd9660_722()
84 cd9660_732(uint32_t w, unsigned char *fourchar) in cd9660_732()
/freebsd-13-stable/contrib/bearssl/src/ec/
HDec_c25519_m31.c133 uint32_t w; in le30_to_le8() local
257 uint64_t w; in mul9() local
328 uint64_t w; in square9() local
354 uint32_t w; in reduce_final_f255() local
398 uint64_t w; in f255_mul() local
455 uint64_t w; in f255_square() local
484 uint32_t cc, w; in f255_add() local
513 uint32_t cc, w; in f255_sub() local
538 uint64_t w; in f255_mul_a24() local
/freebsd-13-stable/usr.bin/localedef/
HDparser.y198 wchar_t *w = get_wcs(); variable
214 wchar_t *w = get_wcs(); variable
/freebsd-13-stable/contrib/bearssl/src/aead/
HDccm.c223 unsigned w, x; in br_ccm_run() local
232 unsigned w; in br_ccm_run() local
284 unsigned w, x; in br_ccm_run() local
293 unsigned w; in br_ccm_run() local
/freebsd-13-stable/usr.bin/finger/
HDutil.c107 WHERE *w; in enter_lastlog() local
144 WHERE *w; in enter_where() local
225 WHERE *w; in walloc() local
289 find_idle_and_ttywrite(WHERE *w) in find_idle_and_ttywrite()
/freebsd-13-stable/crypto/openssl/crypto/aes/
HDaes_core.c49 u32 w[2]; member
57 static void XtimeWord(u32 *w) in XtimeWord()
70 static void XtimeLong(u64 *w) in XtimeLong()
129 static void SubWord(u32 *w) in SubWord()
220 static void SubLong(u64 *w) in SubLong()
314 static void InvSubLong(u64 *w) in InvSubLong()
511 static void AddRoundKey(u64 *state, const u64 *w) in AddRoundKey()
518 const u64 *w, int nr) in Cipher()
544 const u64 *w, int nr) in InvCipher()
583 static void KeyExpansion(const unsigned char *key, u64 *w, in KeyExpansion()
/freebsd-13-stable/contrib/ldns/
HDsha1.c38 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
39 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
40 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
41 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
42 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
/freebsd-13-stable/crypto/openssl/crypto/ripemd/
HDrmd_local.h64 #define RIP1(a,b,c,d,e,w,s) { \ argument
69 #define RIP2(a,b,c,d,e,w,s,K) { \ argument
74 #define RIP3(a,b,c,d,e,w,s,K) { \ argument
79 #define RIP4(a,b,c,d,e,w,s,K) { \ argument
84 #define RIP5(a,b,c,d,e,w,s,K) { \ argument
/freebsd-13-stable/libexec/rbootd/
HDrmp_var.h135 #define WORDZE(w) ((w) == 0) argument
136 #define ZEROWORD(w) (w) = 0 argument
138 #define GETWORD(w, i) (i) = ntohl(w) argument
139 #define PUTWORD(i, w) (w) = htonl(i) argument
148 #define WORDZE(w) \ argument
150 #define ZEROWORD(w) \ argument
156 #define GETWORD(w, i) \ argument
158 #define PUTWORD(i, w) \ argument

12345678910>>...25