Home
last modified time | relevance | path

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

12345678910>>...25

/freebsd-src/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-src/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-src/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-src/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.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-src/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-src/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-src/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-src/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-src/contrib/unbound/sldns/
H A Dwire2str.c399 return w; in sldns_str_print() local
383 int w = vsnprintf(*str, *slen, format, args); sldns_str_vprint() local
423 int w = 0; print_remainder_hex() local
433 int w = 0, comprloop = 0; sldns_wire2str_pkt_scan() local
484 int w = 0; sldns_rr_tcttl_scan() local
519 int w = 0; sldns_wire2str_rr_scan() local
590 int w = 0; sldns_wire2str_rrquestion_scan() local
615 int w = 0; sldns_wire2str_rr_unknown_scan() local
650 int flags, w = 0; rr_comment_dnskey() local
703 int w = 0; rr_comment_nsec3() local
730 int w = 0; sldns_wire2str_header_scan() local
777 int w = 0, n; sldns_wire2str_rdata_scan() local
815 int w = 0; sldns_wire2str_rdata_unknown_scan() local
848 int w = 0; sldns_wire2str_dname_scan() local
1032 int w = 0; sldns_wire2str_svcparam_port2str() local
1046 int w = 0; sldns_wire2str_svcparam_ipv4hint2str() local
1075 int w = 0; sldns_wire2str_svcparam_ipv6hint2str() local
1102 int w = 0; sldns_wire2str_svcparam_mandatory2str() local
1125 int w = 0; sldns_wire2str_svcparam_alpn2str() local
1163 int w = 0; sldns_wire2str_svcparam_ech2str() local
1356 int w; sldns_wire2str_int8_scan() local
1366 int w; sldns_wire2str_int16_scan() local
1376 int w; sldns_wire2str_int32_scan() local
1386 int w; sldns_wire2str_period_scan() local
1397 int w; sldns_wire2str_tsigtime_scan() local
1421 int w; sldns_wire2str_a_scan() local
1435 int w; sldns_wire2str_aaaa_scan() local
1466 int w = 0; sldns_wire2str_str_scan() local
1484 int i, w = 0; sldns_wire2str_apl_scan() local
1589 int w = 0; sldns_wire2str_nsec_scan() local
1632 int w; sldns_wire2str_nsec3_salt_scan() local
1650 int data, w; sldns_wire2str_cert_alg_scan() local
1696 int w = 0; loc_cm_print() local
1727 int w = 0; sldns_wire2str_loc_scan() local
1804 int bit, port, w = 0; sldns_wire2str_wks_scan() local
1876 int w = 0; sldns_wire2str_ipseckey_scan_internal() local
1919 int w=sldns_wire2str_ipseckey_scan_internal(d, dl, s, sl, pkt, pktlen, comprloop); sldns_wire2str_ipseckey_scan() local
1932 int w; sldns_wire2str_hip_scan() local
1957 int w; sldns_wire2str_int16_data_scan() local
1982 int w; sldns_wire2str_ilnp64_scan() local
1995 int w; sldns_wire2str_eui48_scan() local
2007 int w; sldns_wire2str_eui64_scan() local
2021 int w = 0; sldns_wire2str_tag_scan() local
2040 int w = 0; sldns_wire2str_long_str_scan() local
2053 int data, w; sldns_wire2str_tsigerror_scan() local
2077 int w = 0; sldns_wire2str_edns_llq_print() local
2113 int w = 0; sldns_wire2str_edns_ul_print() local
2127 int w = 0; sldns_wire2str_edns_nsid_print() local
2149 int w = 0; sldns_wire2str_edns_dau_print() local
2164 int w = 0; sldns_wire2str_edns_dhu_print() local
2178 int w = 0; sldns_wire2str_edns_n3u_print() local
2190 int w = 0; sldns_wire2str_edns_subnet_print() local
2254 int w = 0; sldns_wire2str_edns_keepalive_print() local
2274 int w = 0; sldns_wire2str_edns_ede_print() local
2319 int w = 0; sldns_wire2str_edns_option_print() local
2366 int w = 0; print_edns_opts() local
2400 int w = 0; sldns_wire2str_edns_scan() local
[all...]
/freebsd-src/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-src/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-src/contrib/unbound/libunbound/
H A Dlibworker.c92 libworker_delete_env(struct libworker* w) in libworker_delete_env() argument
112 libworker_delete(struct libworker * w) libworker_delete() argument
121 libworker_delete_event(struct libworker * w) libworker_delete_event() argument
133 struct libworker* w = (struct libworker*)calloc(1, sizeof(*w)); libworker_setup() local
266 handle_cancel(struct libworker * w,uint8_t * buf,uint32_t len) handle_cancel() argument
287 libworker_do_cmd(struct libworker * w,uint8_t * msg,uint32_t len) libworker_do_cmd() argument
314 struct libworker* w = (struct libworker*)arg; libworker_handle_control_cmd() local
331 struct libworker* w = (struct libworker*)arg; libworker_dobg() local
377 struct libworker* w; libworker_bg() local
577 setup_qinfo_edns(struct libworker * w,struct ctx_query * q,struct query_info * qinfo,struct edns_data * edns) setup_qinfo_edns() argument
606 struct libworker* w = libworker_setup(ctx, 0, NULL); libworker_fg() local
688 struct libworker* w = ctx->event_worker; libworker_attach_mesh() local
733 add_bg_result(struct libworker * w,struct ctx_query * q,sldns_buffer * pkt,int err,char * reason,int was_ratelimited) add_bg_result() argument
813 handle_newq(struct libworker * w,uint8_t * buf,uint32_t len) handle_newq() argument
868 struct libworker* w = (struct libworker*)arg; libworker_alloc_cleanup() local
880 struct libworker* w = (struct libworker*)q->env->worker; libworker_send_query() local
[all...]
/freebsd-src/contrib/unbound/services/
H A Doutside_network.c195 waiting_tcp_delete(struct waiting_tcp* w) in waiting_tcp_delete() argument
213 pick_outgoing_tcp(struct pending_tcp* pend, struct waiting_tcp* w, int s) in pick_outgoing_tcp() argument
374 struct waiting_tcp* w = reuse->write_wait_first; global() local
470 struct waiting_tcp* w = (struct waiting_tcp*)node->key; global() local
869 struct waiting_tcp* w = outnet->tcp_wait_first; global() local
946 struct waiting_tcp* w; global() local
1048 struct waiting_tcp* w; global() local
1156 struct waiting_tcp* w = (struct waiting_tcp*)node->key; global() local
1215 struct waiting_tcp* w = (struct waiting_tcp*)node->key; global() local
1225 struct waiting_tcp* w = (struct waiting_tcp*)node->key; global() local
1285 struct waiting_tcp* w = NULL; global() local
2300 struct waiting_tcp* w = (struct waiting_tcp*)arg; global() local
2413 struct waiting_tcp* w; global() local
2742 struct waiting_tcp* w = (struct waiting_tcp*) global() local
3068 struct waiting_tcp* w = (struct waiting_tcp*)sq->pending; global() local
3864 struct waiting_tcp* w; global() local
[all...]
/freebsd-src/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-src/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() argument
461 hdaa_autorecsrc_handler(struct hdaa_audio_as * as,struct hdaa_widget * w) hdaa_autorecsrc_handler() argument
532 hdaa_presence_handler(struct hdaa_widget * w) hdaa_presence_handler() argument
579 struct hdaa_widget *w; hdaa_jack_poll_callback() local
602 hdaa_eld_dump(struct hdaa_widget * w) hdaa_eld_dump() argument
682 hdaa_eld_handler(struct hdaa_widget * w) hdaa_eld_handler() argument
746 struct hdaa_widget *w; hdaa_sense_init() local
798 struct hdaa_widget *w; hdaa_sense_deinit() local
940 hdaa_local_patch_pin(struct hdaa_widget * w) hdaa_local_patch_pin() argument
1034 hdaa_dump_pin_sb(struct sbuf * sb,struct hdaa_widget * w) hdaa_dump_pin_sb() argument
1133 struct hdaa_widget *w, *cw; hdaa_sysctl_caps() local
1324 struct hdaa_widget *w; hdaa_local_patch() local
1381 hdaa_widget_connection_parse(struct hdaa_widget * w) hdaa_widget_connection_parse() argument
1466 hdaa_widget_parse(struct hdaa_widget * w) hdaa_widget_parse() argument
1575 hdaa_widget_postprocess(struct hdaa_widget * w) hdaa_widget_postprocess() argument
1712 hdaa_widget_connection_select(struct hdaa_widget * w,uint8_t index) hdaa_widget_connection_select() argument
1844 struct hdaa_widget *w, *wp; hdaa_audio_setup() local
2103 struct hdaa_widget *w; hdaa_channel_stop() local
2226 struct hdaa_widget *w, *cw; hdaa_audio_ctl_ossmixer_init() local
2356 struct hdaa_widget *w, *wc; hdaa_audio_ctl_source_volume() local
2433 struct hdaa_widget *w, *wc; hdaa_audio_ctl_dest_volume() local
2502 struct hdaa_widget *w, *cw; hdaa_audio_ctl_dev_volume() local
2582 struct hdaa_widget *w; hdaa_audio_ctl_ossmixer_set() local
2683 struct hdaa_widget *w, *cw; hdaa_audio_ctl_recsel_comm() local
2758 struct hdaa_widget *w; hdaa_audio_ctl_ossmixer_setrecsrc() local
2924 struct hdaa_widget *w; hdaa_audio_parse() local
2986 struct hdaa_widget *w; hdaa_audio_postprocess() local
3001 struct hdaa_widget *w, *cw; hdaa_audio_ctl_parse() local
3163 struct hdaa_widget *w; hdaa_audio_as_parse() local
3321 struct hdaa_widget *w; hdaa_audio_trace_dac() local
3432 struct hdaa_widget *w, *wc; hdaa_audio_trace_adc() local
3526 struct hdaa_widget *w; hdaa_audio_undo_trace() local
3779 struct hdaa_widget *w; hdaa_audio_trace_as_in() local
3893 struct hdaa_widget *w, *wc; hdaa_audio_trace_to_out() local
3977 struct hdaa_widget *w; hdaa_audio_trace_as_extra() local
4129 struct hdaa_widget *w; hdaa_audio_disable_nonaudio() local
4153 struct hdaa_widget *w, *cw; hdaa_audio_disable_useless() local
4287 struct hdaa_widget *w, *cw; hdaa_audio_disable_unas() local
4382 struct hdaa_widget *w; hdaa_audio_disable_notselected() local
4416 struct hdaa_widget *w, *cw; hdaa_audio_disable_crossas() local
4518 struct hdaa_widget *w, *wc; hdaa_audio_ctl_source_amp() local
4625 struct hdaa_widget *w, *wc; hdaa_audio_ctl_dest_amp() local
4718 struct hdaa_widget *w; hdaa_audio_assign_names() local
4921 hdaa_adjust_amp(struct hdaa_widget * w,int ossdev,int found,int minamp,int maxamp) hdaa_adjust_amp() argument
4952 struct hdaa_widget *w, *cw; hdaa_audio_assign_mixers() local
5020 struct hdaa_widget *w; hdaa_audio_prepare_pin_ctrl() local
5211 struct hdaa_widget *w; hdaa_audio_commit() local
5272 struct hdaa_widget *w; hdaa_pcmchannel_setup() local
5677 hdaa_dump_pin(struct hdaa_widget * w) hdaa_dump_pin() argument
5746 hdaa_dump_pin_config(struct hdaa_widget * w,uint32_t conf) hdaa_dump_pin_config() argument
5766 struct hdaa_widget *w; hdaa_dump_pin_configs() local
5801 struct hdaa_widget *w, *cw; hdaa_dump_nodes() local
5897 struct hdaa_widget *w, *cw; hdaa_dump_dst_nid() local
5945 struct hdaa_widget *w; hdaa_dump_dac() local
5983 struct hdaa_widget *w; hdaa_dump_adc() local
6022 struct hdaa_widget *w; hdaa_dump_mix() local
6049 struct hdaa_widget *w; hdaa_pindump() local
6262 struct hdaa_widget *w; hdaa_unconfigure() local
6800 struct hdaa_widget *w; hdaa_unsol_intr() local
6884 struct hdaa_widget *w; hdaa_chan_type() local
[all...]
/freebsd-src/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-src/usr.bin/localedef/
H A Dparser.y198 wchar_t *w = get_wcs(); variable
214 wchar_t *w = get_wcs(); variable
/freebsd-src/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-src/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-src/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-src/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
/freebsd-src/contrib/bearssl/T0/
H A DBlobWriter.cs40 TextWriter w; field in BlobWriter
50 internal BlobWriter(TextWriter w, int maxLineLen, int indent) in BlobWriter()
/freebsd-src/libexec/rbootd/
H A Drmp_var.h133 #define WORDZE(w) ((w) == 0) argument
134 #define ZEROWORD(w) (w) = 0 argument
136 #define GETWORD(w, i) (i) = ntohl(w) argument
137 #define PUTWORD(i, w) (w) = htonl(i) argument
146 #define WORDZE(w) \ argument
148 #define ZEROWORD(w) \ argument
154 #define GETWORD(w, i) \ argument
156 #define PUTWORD(i, w) \ argument

12345678910>>...25