Home
last modified time | relevance | path

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

12345678910>>...26

/freebsd/crypto/openssl/providers/implementations/digests/
H A Dblake2_impl.h25 uint32_t w; in load32() local
29 uint32_t w = ((uint32_t)src[0]) in load32() local
42 uint64_t w; in load64() local
46 uint64_t w = ((uint64_t)src[0]) in load64() local
58 static ossl_inline void store32(uint8_t *dst, uint32_t w) in store32()
73 static ossl_inline void store64(uint8_t *dst, uint64_t w) in store64()
90 uint64_t w = ((uint64_t)src[0]) in load48() local
99 static ossl_inline void store48(uint8_t *dst, uint64_t w) in store48()
110 static ossl_inline uint32_t rotr32(const uint32_t w, const unsigned int c) in rotr32()
115 static ossl_inline uint64_t rotr64(const uint64_t w, const unsigned int c) in rotr64()
/freebsd/crypto/openssh/openbsd-compat/
H A Dbsd-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
H A Dsha1.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/sys/dev/usb/
H A Dusb_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/contrib/libarchive/libarchive/
H A Darchive_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()
H A Darchive_write_set_format_warc.c122 struct warc_s *w; in archive_write_set_format_warc() local
165 struct warc_s *w = a->format_data; _warc_options() local
184 struct warc_s *w = a->format_data; _warc_header() local
271 struct warc_s *w = a->format_data; _warc_data() local
294 struct warc_s *w = a->format_data; _warc_finish_entry() local
318 struct warc_s *w = a->format_data; _warc_free() local
[all...]
/freebsd/sys/contrib/libb2/
H A Dblake2-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/crypto/openssl/crypto/bn/
H A Dbn_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/contrib/unbound/sldns/
H A Dwire2str.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/contrib/atf/atf-c++/
H A 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/sys/contrib/dev/mediatek/mt76/
H A Dutil.h72 mt76_worker_setup(struct ieee80211_hw *hw, struct mt76_worker *w, in mt76_worker_setup()
92 mt76_worker_schedule(struct mt76_worker *w) in mt76_worker_schedule()
104 mt76_worker_enable(struct mt76_worker *w) in mt76_worker_enable()
115 mt76_worker_disable(struct mt76_worker *w) in mt76_worker_disable()
126 mt76_worker_teardown(struct mt76_worker *w) in mt76_worker_teardown()
/freebsd/crypto/libecc/include/libecc/words/
H A Dwords.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/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dcommon.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/contrib/unbound/libunbound/
H A Dlibworker.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/contrib/unbound/services/
H A Doutside_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/contrib/ntp/libntp/lib/isc/
H A Dsha1.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/sys/dev/sound/pci/hda/
H A Dhdaa.c268 struct hdaa_widget *w; in hdaa_channels_handler() local
379 hdaa_hpredir_handler(struct hdaa_widget *w) in hdaa_hpredir_handler()
461 hdaa_autorecsrc_handler(struct hdaa_audio_as *as, struct hdaa_widget *w) in hdaa_autorecsrc_handler()
532 hdaa_presence_handler(struct hdaa_widget *w) in hdaa_presence_handler()
579 struct hdaa_widget *w; in hdaa_jack_poll_callback() local
602 hdaa_eld_dump(struct hdaa_widget *w) in hdaa_eld_dump()
682 hdaa_eld_handler(struct hdaa_widget *w) in hdaa_eld_handler()
746 struct hdaa_widget *w; in hdaa_sense_init() local
798 struct hdaa_widget *w; in hdaa_sense_deinit() local
940 hdaa_local_patch_pin(struct hdaa_widget *w) in hdaa_local_patch_pin()
[all …]
/freebsd/usr.sbin/makefs/cd9660/
H A Dcd9660_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/contrib/bearssl/src/ec/
H A Dec_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/usr.bin/localedef/
H A Dparser.y198 wchar_t *w = get_wcs(); variable
214 wchar_t *w = get_wcs(); variable
/freebsd/contrib/bearssl/src/aead/
H A Dccm.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/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOStreamMacros.h
/freebsd/usr.bin/finger/
H A Dutil.c100 WHERE *w; in enter_lastlog() local
137 WHERE *w; in enter_where() local
218 WHERE *w; in walloc() local
282 find_idle_and_ttywrite(WHERE *w) in find_idle_and_ttywrite()
/freebsd/contrib/ldns/
H A Dsha1.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/crypto/openssl/crypto/ripemd/
H A Drmd_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

12345678910>>...26