Home
last modified time | relevance | path

Searched defs:a (Results 76 – 100 of 3394) sorted by relevance

12345678910>>...136

/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_mapping_sparc64.h66 static inline bool AddrIsInLowMem(uptr a) { in AddrIsInLowMem()
71 static inline bool AddrIsInLowShadow(uptr a) { in AddrIsInLowShadow()
76 static inline bool AddrIsInMidMem(uptr a) { in AddrIsInMidMem()
81 static inline bool AddrIsInMidShadow(uptr a) { in AddrIsInMidShadow()
86 static inline bool AddrIsInHighMem(uptr a) { in AddrIsInHighMem()
91 static inline bool AddrIsInHighShadow(uptr a) { in AddrIsInHighShadow()
96 static inline bool AddrIsInShadowGap(uptr a) { in AddrIsInShadowGap()
H A Dasan_mapping.h309 static inline bool AddrIsInLowMem(uptr a) { in AddrIsInLowMem()
314 static inline bool AddrIsInLowShadow(uptr a) { in AddrIsInLowShadow()
319 static inline bool AddrIsInMidMem(uptr a) { in AddrIsInMidMem()
324 static inline bool AddrIsInMidShadow(uptr a) { in AddrIsInMidShadow()
329 static inline bool AddrIsInHighMem(uptr a) { in AddrIsInHighMem()
334 static inline bool AddrIsInHighShadow(uptr a) { in AddrIsInHighShadow()
339 static inline bool AddrIsInShadowGap(uptr a) { in AddrIsInShadowGap()
364 static inline bool AddrIsInMem(uptr a) { in AddrIsInMem()
376 static inline bool AddrIsInShadow(uptr a) { in AddrIsInShadow()
387 static inline bool AddrIsAlignedByGranularity(uptr a) { in AddrIsAlignedByGranularity()
[all …]
/freebsd/crypto/openssl/crypto/rc5/
H A Drc5_local.h129 # define ROTATE_l32(a,n) _lrotl(a,n) argument
130 # define ROTATE_r32(a,n) _lrotr(a,n) argument
132 # define ROTATE_l32(a,n) _rotl(a,n) argument
133 # define ROTATE_r32(a,n) _rotr(a,n) argument
136 # define ROTATE_l32(a,n) ({ register unsigned int ret; \ argument
143 # define ROTATE_r32(a,n) ({ register unsigned int ret; \ argument
153 # define ROTATE_l32(a,n) (((a)<<(n&0x1f))|(((a)&0xffffffff)>>((32-n)&0x1f))) argument
156 # define ROTATE_r32(a,n) (((a)<<((32-n)&0x1f))|(((a)&0xffffffff)>>(n&0x1f))) argument
168 #define E_RC5_32(a,b,s,n) \ argument
178 #define D_RC5_32(a,b,s,n) \ argument
/freebsd/tools/tools/ath/athalq/
H A Dar9300_ds.c42 ath_alq_print_edma_tx_fifo_push(struct if_ath_alq_payload *a) in ath_alq_print_edma_tx_fifo_push()
58 ar9300_decode_txstatus(struct if_ath_alq_payload *a) in ar9300_decode_txstatus()
148 ar9300_decode_txdesc(struct if_ath_alq_payload *a) in ar9300_decode_txdesc()
332 ar9300_decode_rxstatus(struct if_ath_alq_payload *a) in ar9300_decode_rxstatus()
423 ar9300_alq_payload(struct if_ath_alq_payload *a) in ar9300_alq_payload()
/freebsd/contrib/wireguard-tools/
H A Dcurve25519.c34 #define le64_to_cpup(a) __builtin_bswap64(*(a)) argument
35 #define le32_to_cpup(a) __builtin_bswap32(*(a)) argument
36 #define cpu_to_le64(a) __builtin_bswap64(a) argument
38 #define le64_to_cpup(a) (*(a)) argument
39 #define le32_to_cpup(a) (*(a)) argument
40 #define cpu_to_le64(a) (a) argument
58 static __always_inline __unused __le32 get_unaligned_le32(const u8 *a) in get_unaligned_le32()
64 static __always_inline __unused __le64 get_unaligned_le64(const u8 *a) in get_unaligned_le64()
/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_open_memory.c56 archive_read_open_memory(struct archive *a, const void *buff, size_t size) in archive_read_open_memory()
67 archive_read_open_memory2(struct archive *a, const void *buff, in archive_read_open_memory2()
93 memory_read_open(struct archive *a, void *client_data) in memory_read_open()
108 memory_read(struct archive *a, void *client_data, const void **buff) in memory_read()
128 memory_read_skip(struct archive *a, void *client_data, int64_t skip) in memory_read_skip()
146 memory_read_seek(struct archive *a, void *client_data, int64_t offset, int whence) in memory_read_seek()
179 memory_read_close(struct archive *a, void *client_data) in memory_read_close()
H A Darchive_read_open_filename.c95 archive_read_open_file(struct archive *a, const char *filename, in archive_read_open_file()
102 archive_read_open_filename(struct archive *a, const char *filename, in archive_read_open_filename()
112 archive_read_open_filenames(struct archive *a, const char **filenames, in archive_read_open_filenames()
238 archive_read_open_filename_w(struct archive *a, const wchar_t *wfilename, in archive_read_open_filename_w()
248 file_open(struct archive *a, void *client_data) in file_open()
418 file_read(struct archive *a, void *client_data, const void **buff) in file_read()
477 file_skip_lseek(struct archive *a, void *client_data, int64_t request) in file_skip_lseek()
524 file_skip(struct archive *a, void *client_data, int64_t request) in file_skip()
564 file_close2(struct archive *a, void *client_data) in file_close2()
603 file_close(struct archive *a, void *client_data) in file_close()
[all …]
H A Darchive_read_support_format_raw.c58 struct archive_read *a = (struct archive_read *)_a; in archive_read_support_format_raw() local
96 archive_read_format_raw_bid(struct archive_read *a, int best_bid) in archive_read_format_raw_bid()
107 archive_read_format_raw_read_header(struct archive_read *a, in archive_read_format_raw_read_header()
128 archive_read_format_raw_read_data(struct archive_read *a, in archive_read_format_raw_read_data()
169 archive_read_format_raw_read_data_skip(struct archive_read *a) in archive_read_format_raw_read_data_skip()
183 archive_read_format_raw_cleanup(struct archive_read *a) in archive_read_format_raw_cleanup()
H A Darchive_write_disk_posix.c413 la_mktemp(struct archive_write_disk *a) in la_mktemp()
501 lazy_stat(struct archive_write_disk *a) in lazy_stat()
1992 struct archive_write_disk *a; in archive_write_disk_new() local
2074 restore_entry(struct archive_write_disk *a) in restore_entry()
2646 struct archive_write_disk *a; in _archive_write_disk_free() local
2692 struct fixup_entry *a, *b, *t; in sort_dir_list() local
3622 set_times(struct archive_write_disk *a, in set_times()
3837 set_fflags(struct archive_write_disk *a) in set_fflags()
4482 set_xattrs(struct archive_write_disk *a) in set_xattrs()
4572 set_xattrs(struct archive_write_disk *a) in set_xattrs()
[all …]
/freebsd/crypto/openssl/crypto/bn/asm/
H A Dx86_64-gcc.c74 # define mul_add(r,a,word,carry) do { \ argument
91 # define mul(r,a,word,carry) do { \ argument
104 # define sqr(r0,r1,a) \ argument
169 void bn_sqr_words(BN_ULONG *r, const BN_ULONG *a, int n) in bn_sqr_words()
349 # define mul_add_c(a,b,c0,c1,c2) do { \ argument
361 # define sqr_add_c(a,i,c0,c1,c2) do { \ argument
373 # define mul_add_c2(a,b,c0,c1,c2) do { \ argument
390 # define sqr_add_c2(a,i,j,c0,c1,c2) \ argument
393 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) in bn_mul_comba8()
535 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a) in bn_sqr_comba8()
[all …]
/freebsd/contrib/libarchive/tar/
H A Dwrite.c140 set_writer_options(struct bsdtar *bsdtar, struct archive *a) in set_writer_options()
170 set_reader_options(struct bsdtar *bsdtar, struct archive *a) in set_reader_options()
207 struct archive *a; in tar_mode_c() local
262 struct archive *a; in tar_mode_r() local
352 struct archive *a; in tar_mode_u() local
438 write_archive(struct archive *a, struct bsdtar *bsdtar) in write_archive()
603 archive_names_from_file(struct bsdtar *bsdtar, struct archive *a) in archive_names_from_file()
738 copy_file_data_block(struct bsdtar *bsdtar, struct archive *a, in copy_file_data_block()
962 write_file(struct bsdtar *bsdtar, struct archive *a, in write_file()
972 write_entry(struct bsdtar *bsdtar, struct archive *a, in write_entry()
[all …]
/freebsd/crypto/openssl/crypto/bn/
H A Dbn_mod.c33 int BN_mod_add(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_add()
53 int bn_mod_add_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mod_add_fixed_top()
104 int BN_mod_add_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_mod_add_quick()
115 int BN_mod_sub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_sub()
137 int bn_mod_sub_fixed_top(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in bn_mod_sub_fixed_top()
191 int BN_mod_sub_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, in BN_mod_sub_quick()
207 int BN_mod_mul(BIGNUM *r, const BIGNUM *a, const BIGNUM *b, const BIGNUM *m, in BN_mod_mul()
236 int BN_mod_sqr(BIGNUM *r, const BIGNUM *a, const BIGNUM *m, BN_CTX *ctx) in BN_mod_sqr()
256 int BN_mod_lshift1_quick(BIGNUM *r, const BIGNUM *a, const BIGNUM *m) in BN_mod_lshift1_quick()
266 int BN_mod_lshift(BIGNUM *r, const BIGNUM *a, int n, const BIGNUM *m, in BN_mod_lshift()
[all …]
H A Dbn_intern.c141 int bn_get_top(const BIGNUM *a) in bn_get_top()
146 int bn_get_dmax(const BIGNUM *a) in bn_get_dmax()
151 void bn_set_all_zero(BIGNUM *a) in bn_set_all_zero()
170 BN_ULONG *bn_get_words(const BIGNUM *a) in bn_get_words()
175 void bn_set_static_words(BIGNUM *a, const BN_ULONG *words, int size) in bn_set_static_words()
188 int bn_set_words(BIGNUM *a, const BN_ULONG *words, int num_words) in bn_set_words()
/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_archive_match_time.c262 struct archive *a; in test_newer_mtime_than_file_mbs() local
319 struct archive *a; in test_newer_ctime_than_file_mbs() local
381 struct archive *a; in test_newer_mtime_than_file_wcs() local
438 struct archive *a; in test_newer_ctime_than_file_wcs() local
733 struct archive *a; in test_older_mtime_than_file_mbs() local
790 struct archive *a; in test_older_ctime_than_file_mbs() local
853 struct archive *a; in test_older_mtime_than_file_wcs() local
910 struct archive *a; in test_older_ctime_than_file_wcs() local
973 struct archive *a; in test_mtime_between_files_mbs() local
1032 struct archive *a; in test_mtime_between_files_wcs() local
[all …]
H A Dtest_write_read_format_zip.c42 write_contents(struct archive *a) in write_contents()
270 verify_contents(struct archive *a, int seeking, int improved_streaming) in verify_contents()
580 struct archive *a; in DEFINE_TEST() local
629 struct archive *a; in DEFINE_TEST() local
679 struct archive *a; in DEFINE_TEST() local
733 struct archive *a; in DEFINE_TEST() local
H A Dtest_read_set_format.c36 struct archive *a; in DEFINE_TEST() local
106 struct archive *a; in DEFINE_TEST() local
130 struct archive *a; in DEFINE_TEST() local
155 struct archive *a; in DEFINE_TEST() local
180 struct archive *a; in DEFINE_TEST() local
203 struct archive *a; in DEFINE_TEST() local
/freebsd/contrib/wpa/src/tls/
H A Dbignum.c115 int bignum_cmp(const struct bignum *a, const struct bignum *b) in bignum_cmp()
127 int bignum_cmp_d(const struct bignum *a, unsigned long b) in bignum_cmp_d()
140 int bignum_add(const struct bignum *a, const struct bignum *b, in bignum_add()
158 int bignum_sub(const struct bignum *a, const struct bignum *b, in bignum_sub()
176 int bignum_mul(const struct bignum *a, const struct bignum *b, in bignum_mul()
195 int bignum_mulmod(const struct bignum *a, const struct bignum *b, in bignum_mulmod()
215 int bignum_exptmod(const struct bignum *a, const struct bignum *b, in bignum_exptmod()
/freebsd/crypto/openssl/crypto/asn1/
H A Da_int.c207 int ossl_i2c_ASN1_INTEGER(ASN1_INTEGER *a, unsigned char **pp) in ossl_i2c_ASN1_INTEGER()
525 int ASN1_INTEGER_get_int64(int64_t *pr, const ASN1_INTEGER *a) in ASN1_INTEGER_get_int64()
530 int ASN1_INTEGER_set_int64(ASN1_INTEGER *a, int64_t r) in ASN1_INTEGER_set_int64()
535 int ASN1_INTEGER_get_uint64(uint64_t *pr, const ASN1_INTEGER *a) in ASN1_INTEGER_get_uint64()
540 int ASN1_INTEGER_set_uint64(ASN1_INTEGER *a, uint64_t r) in ASN1_INTEGER_set_uint64()
545 int ASN1_INTEGER_set(ASN1_INTEGER *a, long v) in ASN1_INTEGER_set()
550 long ASN1_INTEGER_get(const ASN1_INTEGER *a) in ASN1_INTEGER_get()
574 int ASN1_ENUMERATED_get_int64(int64_t *pr, const ASN1_ENUMERATED *a) in ASN1_ENUMERATED_get_int64()
579 int ASN1_ENUMERATED_set_int64(ASN1_ENUMERATED *a, int64_t r) in ASN1_ENUMERATED_set_int64()
584 int ASN1_ENUMERATED_set(ASN1_ENUMERATED *a, long v) in ASN1_ENUMERATED_set()
[all …]
/freebsd/contrib/ntp/sntp/libevent/test/
H A Dtinytest_macros.h143 #define tt_assert_test_type(a,b,str_test,type,test,fmt,die_on_fail) \ argument
153 #define tt_assert_op_type(a,op,b,type,fmt) \ argument
157 #define tt_int_op(a,op,b) \ argument
169 #define tt_uint_op(a,op,b) \ argument
173 #define tt_ptr_op(a,op,b) \ argument
178 #define tt_nstr_op(n,a,op,b) \ argument
183 #define tt_str_op(a,op,b) \ argument
198 #define tt_want_int_op(a,op,b) \ argument
201 #define tt_want_uint_op(a,op,b) \ argument
205 #define tt_want_ptr_op(a,op,b) \ argument
[all …]
/freebsd/contrib/libevent/test/
H A Dtinytest_macros.h143 #define tt_assert_test_type(a,b,str_test,type,test,fmt,die_on_fail) \ argument
153 #define tt_assert_op_type(a,op,b,type,fmt) \ argument
157 #define tt_int_op(a,op,b) \ argument
169 #define tt_uint_op(a,op,b) \ argument
173 #define tt_ptr_op(a,op,b) \ argument
178 #define tt_nstr_op(n,a,op,b) \ argument
183 #define tt_str_op(a,op,b) \ argument
198 #define tt_want_int_op(a,op,b) \ argument
201 #define tt_want_uint_op(a,op,b) \ argument
205 #define tt_want_ptr_op(a,op,b) \ argument
[all …]
/freebsd/sys/cddl/compat/opensolaris/sys/
H A Delf.h70 #define EC_ADDR(a) ((Elf64_Addr)(a)) /* "ull" */ argument
71 #define EC_OFF(a) ((Elf64_Off)(a)) /* "ull" */ argument
72 #define EC_HALF(a) ((Elf64_Half)(a)) /* "d" */ argument
73 #define EC_WORD(a) ((Elf64_Word)(a)) /* "u" */ argument
74 #define EC_SWORD(a) ((Elf64_Sword)(a)) /* "d" */ argument
75 #define EC_XWORD(a) ((Elf64_Xword)(a)) /* "ull" */ argument
76 #define EC_SXWORD(a) ((Elf64_Sxword)(a)) /* "ll" */ argument
77 #define EC_LWORD(a) ((Elf64_Lword)(a)) /* "ull" */ argument
/freebsd/contrib/tcsh/
H A Dtc.sig.h58 # define killpg(a, b) kill(-(a), (b)) argument
64 # define killpg(a, b) kill((a), (b)) argument
70 # define killpg(a, b) kill((a), (b)) argument
72 # define signal(a, b) signal((a), (a) == SIGCHLD ? SIG_IGN : (b)) argument
77 # define killpg(a, b) kill(-(a), (b)) argument
82 # define killpg(a, b) kill(-getpgrp(a), b) argument
/freebsd/crypto/openssl/crypto/
H A Dctype.c255 const int a = ossl_toascii(c); in ossl_ctype_check() local
271 int a = ossl_toascii(c); in ossl_isdigit() local
278 int a = ossl_toascii(c); in ossl_isupper() local
285 int a = ossl_toascii(c); in ossl_islower() local
298 int a = ossl_toascii(c); in ossl_tolower() local
305 int a = ossl_toascii(c); in ossl_toupper() local
/freebsd/sys/dev/cxgb/common/
H A Djhash.h19 #define __jhash_mix(a, b, c) \ argument
41 u32 a, b, c, len; in jhash() local
84 u32 a, b, c, len; in jhash2() local
117 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words()
128 static inline u32 jhash_2words(u32 a, u32 b, u32 initval) in jhash_2words()
133 static inline u32 jhash_1word(u32 a, u32 initval) in jhash_1word()
/freebsd/sys/compat/linuxkpi/common/include/linux/
H A Djhash.h26 #define __jhash_mix(a, b, c) \ argument
48 u32 a, b, c, len; in jhash() local
91 u32 a, b, c, len; in jhash2() local
123 static inline u32 jhash_3words(u32 a, u32 b, u32 c, u32 initval) in jhash_3words()
134 static inline u32 jhash_2words(u32 a, u32 b, u32 initval) in jhash_2words()
139 static inline u32 jhash_1word(u32 a, u32 initval) in jhash_1word()

12345678910>>...136