/freebsd/crypto/openssl/providers/implementations/digests/ |
H A D | blake2_impl.h | 25 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/sys/dev/usb/ |
H A D | usb_endian.h | 49 #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/crypto/openssh/openbsd-compat/ |
H A D | bsd-waitpid.h | 36 #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 D | sha1.c | 42 #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/contrib/libarchive/libarchive/ |
H A D | archive_blake2_impl.h | 37 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 D | archive_write_set_format_warc.c | 122 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 D | blake2-impl.h | 58 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 D | bn_word.c | 13 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 D | wire2str.c | 388 int w = vsnprintf(*str, *slen, format, args); in sldns_str_vprint() local 404 int w; in sldns_str_print() local 428 int w in print_remainder_hex() local 438 int w = 0, comprloop = 0; sldns_wire2str_pkt_scan() local 489 int w = 0; sldns_rr_tcttl_scan() local 524 int w = 0; sldns_wire2str_rr_scan() local 595 int w = 0; sldns_wire2str_rrquestion_scan() local 620 int w = 0; sldns_wire2str_rr_unknown_scan() local 655 int flags, w = 0; rr_comment_dnskey() local 708 int w = 0; rr_comment_nsec3() local 735 int w = 0; sldns_wire2str_header_scan() local 782 int w = 0, n; sldns_wire2str_rdata_scan() local 820 int w = 0; sldns_wire2str_rdata_unknown_scan() local 853 int w = 0; sldns_wire2str_dname_scan() local 1037 int w = 0; sldns_wire2str_svcparam_port2str() local 1051 int w = 0; sldns_wire2str_svcparam_ipv4hint2str() local 1080 int w = 0; sldns_wire2str_svcparam_ipv6hint2str() local 1107 int w = 0; sldns_wire2str_svcparam_mandatory2str() local 1130 int w = 0; sldns_wire2str_svcparam_alpn2str() local 1168 int w = 0; sldns_wire2str_svcparam_ech2str() local 1362 int w; sldns_wire2str_int8_scan() local 1372 int w; sldns_wire2str_int16_scan() local 1382 int w; sldns_wire2str_int32_scan() local 1392 int w; sldns_wire2str_period_scan() local 1403 int w; sldns_wire2str_tsigtime_scan() local 1427 int w; sldns_wire2str_a_scan() local 1441 int w; sldns_wire2str_aaaa_scan() local 1472 int w = 0; sldns_wire2str_str_scan() local 1490 int i, w = 0; sldns_wire2str_apl_scan() local 1595 int w = 0; sldns_wire2str_nsec_scan() local 1638 int w; sldns_wire2str_nsec3_salt_scan() local 1656 int data, w; sldns_wire2str_cert_alg_scan() local 1702 int w = 0; loc_cm_print() local 1733 int w = 0; sldns_wire2str_loc_scan() local 1810 int bit, port, w = 0; sldns_wire2str_wks_scan() local 1882 int w = 0; sldns_wire2str_ipseckey_scan_internal() local 1925 int w=sldns_wire2str_ipseckey_scan_internal(d, dl, s, sl, pkt, pktlen, comprloop); sldns_wire2str_ipseckey_scan() local 1938 int w; sldns_wire2str_hip_scan() local 1963 int w; sldns_wire2str_int16_data_scan() local 1988 int w; sldns_wire2str_ilnp64_scan() local 2001 int w; sldns_wire2str_eui48_scan() local 2013 int w; sldns_wire2str_eui64_scan() local 2027 int w = 0; sldns_wire2str_tag_scan() local 2046 int w = 0; sldns_wire2str_long_str_scan() local 2059 int data, w; sldns_wire2str_tsigerror_scan() local 2083 int w = 0; sldns_wire2str_edns_llq_print() local 2119 int w = 0; sldns_wire2str_edns_ul_print() local 2133 int w = 0; sldns_wire2str_edns_nsid_print() local 2155 int w = 0; sldns_wire2str_edns_dau_print() local 2170 int w = 0; sldns_wire2str_edns_dhu_print() local 2184 int w = 0; sldns_wire2str_edns_n3u_print() local 2196 int w = 0; sldns_wire2str_edns_subnet_print() local 2260 int w = 0; sldns_wire2str_edns_keepalive_print() local 2280 int w = 0; sldns_wire2str_edns_ede_print() local 2325 int w = 0; sldns_wire2str_edns_option_print() local 2372 int w = 0; print_edns_opts() local 2406 int w = 0; sldns_wire2str_edns_scan() local [all...] |
/freebsd/contrib/atf/atf-c++/ |
H A D | tests_test.cpp | 98 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 D | util.h | 72 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/krb5/src/util/verto/ |
H A D | ev.c | 1545 # define ABSPRI(w) (((W)w), 0) argument 1547 # define ABSPRI(w) (((W)w)->priority - EV_MINPRI) argument 1557 #define ev_active(w) ((W)(w))->active argument 1558 #define ev_at(w) ((WT)(w))->at argument 1787 W w; member 1804 WT w; member 1988 pendingcb (EV_P_ ev_prepare *w, int revents) in pendingcb() 1993 ev_feed_event (EV_P_ void *w, int revents) EV_THROW in ev_feed_event() 2012 feed_reverse (EV_P_ W w) in feed_reverse() 2041 ev_io *w; in fd_event_nocheck() local [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/private/ |
H A D | common.h | 51 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/crypto/libecc/include/libecc/words/ |
H A D | words.h | 79 #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/contrib/unbound/libunbound/ |
H A D | libworker.c | 92 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 315 struct libworker* w = (struct libworker*)arg; libworker_handle_control_cmd() local 332 struct libworker* w = (struct libworker*)arg; libworker_dobg() local 378 struct libworker* w; libworker_bg() local 578 setup_qinfo_edns(struct libworker * w,struct ctx_query * q,struct query_info * qinfo,struct edns_data * edns) setup_qinfo_edns() argument 607 struct libworker* w = libworker_setup(ctx, 0, NULL); libworker_fg() local 689 struct libworker* w = ctx->event_worker; libworker_attach_mesh() local 734 add_bg_result(struct libworker * w,struct ctx_query * q,sldns_buffer * pkt,int err,char * reason,int was_ratelimited) add_bg_result() argument 814 handle_newq(struct libworker * w,uint8_t * buf,uint32_t len) handle_newq() argument 869 struct libworker* w = (struct libworker*)arg; libworker_alloc_cleanup() local 881 struct libworker* w = (struct libworker*)q->env->worker; libworker_send_query() local [all...] |
/freebsd/contrib/unbound/services/ |
H A D | outside_network.c | 195 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 2311 struct waiting_tcp* w = (struct waiting_tcp*)arg; global() local 2424 struct waiting_tcp* w; global() local 2753 struct waiting_tcp* w = (struct waiting_tcp*) global() local 3079 struct waiting_tcp* w = (struct waiting_tcp*)sq->pending; global() local 3878 struct waiting_tcp* w; global() local [all...] |
/freebsd/sys/dev/sound/pci/hda/ |
H A D | hdaa.c | 268 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/contrib/ntp/libntp/lib/isc/ |
H A D | sha1.c | 107 #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/usr.sbin/makefs/cd9660/ |
H A D | cd9660_conversion.c | 56 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 D | ec_c25519_m31.c | 133 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 D | parser.y | 198 wchar_t *w = get_wcs(); variable 214 wchar_t *w = get_wcs(); variable
|
/freebsd/contrib/bearssl/src/aead/ |
H A D | ccm.c | 223 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 D | IOStreamMacros.h |
|
/freebsd/usr.bin/finger/ |
H A D | util.c | 100 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 D | sha1.c | 38 #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
|