/netbsd-src/external/lgpl3/gmp/dist/mpn/generic/ |
H A D | toom_interpolate_16pts.c | 66 #define DO_mpn_sublsh_n(dst,src,n,s,ws) mpn_sublsh_n(dst,dst,src,n,s) argument 69 DO_mpn_sublsh_n(mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws) in DO_mpn_sublsh_n() 82 #define DO_mpn_addlsh_n(dst,src,n,s,ws) mpn_addlsh_n(dst,dst,src,n,s) argument 86 DO_mpn_addlsh_n(mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws) in DO_mpn_addlsh_n() 100 #define DO_mpn_subrsh(dst,nd,src,ns,s,ws) mpn_subrsh(dst,nd,src,ns,s) argument 103 #define DO_mpn_subrsh(dst,nd,src,ns,s,ws) \ argument 155 #define mpn_divexact_by255(dst,src,size) \ argument 159 #define mpn_divexact_by255(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(255),BINVERT_255,0) argument 161 #define mpn_divexact_by255(dst,src,size) mpn_divexact_1(dst,src,size,CNST_LIMB(255)) argument 168 #define mpn_divexact_by255x4(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(255),BINVERT_255… argument [all …]
|
H A D | toom_interpolate_12pts.c | 70 #define DO_mpn_sublsh_n(dst,src,n,s,ws) mpn_sublsh_n(dst,dst,src,n,s) argument 73 DO_mpn_sublsh_n(mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws) in DO_mpn_sublsh_n() 86 #define DO_mpn_addlsh_n(dst,src,n,s,ws) mpn_addlsh_n(dst,dst,src,n,s) argument 90 DO_mpn_addlsh_n(mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws) in DO_mpn_addlsh_n() 104 #define DO_mpn_subrsh(dst,nd,src,ns,s,ws) mpn_subrsh(dst,nd,src,ns,s) argument 107 #define DO_mpn_subrsh(dst,nd,src,ns,s,ws) \ argument 136 #define mpn_divexact_by255(dst,src,size) \ argument 140 #define mpn_divexact_by255(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(255),BINVERT_255,0) argument 142 #define mpn_divexact_by255(dst,src,size) mpn_divexact_1(dst,src,size,CNST_LIMB(255)) argument 149 #define mpn_divexact_by9x4(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,CNST_LIMB(9),BINVERT_9,2) argument [all …]
|
H A D | toom_interpolate_8pts.c | 48 #define mpn_divexact_by3(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,3,BINVERT_3,0) argument 50 #define mpn_divexact_by3(dst,src,size) mpn_divexact_1(dst,src,size,3) argument 56 #define mpn_divexact_by45(dst,src,size) \ argument 60 #define mpn_divexact_by45(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,45,BINVERT_45,0) argument 62 #define mpn_divexact_by45(dst,src,size) mpn_divexact_1(dst,src,size,45) argument 68 #define DO_mpn_sublsh2_n(dst,src,n,ws) mpn_sublsh2_n_ip1(dst,src,n) argument 70 #define DO_mpn_sublsh2_n(dst,src,n,ws) DO_mpn_sublsh_n(dst,src,n,2,ws) argument 74 #define DO_mpn_sublsh_n(dst,src,n,s,ws) mpn_sublsh_n (dst,dst,src,n,s) argument 77 DO_mpn_sublsh_n (mp_ptr dst, mp_srcptr src, mp_size_t n, unsigned int s, mp_ptr ws) in DO_mpn_sublsh_n() 91 #define DO_mpn_subrsh(dst,nd,src,ns,s,ws) mpn_subrsh (dst,nd,src,ns,s) argument [all …]
|
H A D | toom_interpolate_7pts.c | 57 #define mpn_divexact_by3(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,3,BINVERT_3,0) argument 59 #define mpn_divexact_by3(dst,src,size) mpn_divexact_1(dst,src,size,3) argument 65 #define mpn_divexact_by9(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,9,BINVERT_9,0) argument 67 #define mpn_divexact_by9(dst,src,size) mpn_divexact_1(dst,src,size,9) argument 73 #define mpn_divexact_by15(dst,src,size) mpn_pi1_bdiv_q_1(dst,src,size,15,BINVERT_15,0) argument 75 #define mpn_divexact_by15(dst,src,size) mpn_divexact_1(dst,src,size,15) argument
|
/netbsd-src/include/ssp/ |
H A D | string.h | 50 #define __ssp_bos_check3(fun, dst, src, len) \ argument 55 #define __ssp_bos_check2(fun, dst, src) \ argument 95 #define memcpy(dst, src, len) __ssp_bos_check3(memcpy, dst, src, len) argument 96 #define memmove(dst, src, len) __ssp_bos_check3(memmove, dst, src, len) argument 97 #define memset(dst, val, len) __ssp_bos_check3(memset, dst, val, len) argument 98 #define stpcpy(dst, src) __ssp_bos_check2(stpcpy, dst, src) argument 100 #define stpncpy(dst, src, len) __ssp_bos_check3(stpncpy, dst, src, len) argument 102 #define strcpy(dst, src) __ssp_bos_check2(strcpy, dst, src) argument 103 #define strcat(dst, src) __ssp_bos_check2(strcat, dst, src) argument 104 #define strncpy(dst, src, len) __ssp_bos_check3(strncpy, dst, src, len) argument [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Headers/ |
H A D | amxintrin.h | 84 #define _tile_loadd(dst, base, stride) \ argument 104 #define _tile_stream_loadd(dst, base, stride) \ argument 122 #define _tile_stored(dst, base, stride) \ argument 151 #define _tile_dpbssd(dst, src0, src1) \ argument 170 #define _tile_dpbsud(dst, src0, src1) \ argument 189 #define _tile_dpbusd(dst, src0, src1) \ argument 208 #define _tile_dpbuud(dst, src0, src1) \ argument 226 #define _tile_dpbf16ps(dst, src0, src1) \ argument 245 _tile1024i dst, _tile1024i src1, _tile1024i src2) { in _tile_dpbssd_internal() 252 _tile1024i dst, _tile1024i src1, _tile1024i src2) { in _tile_dpbsud_internal() [all …]
|
/netbsd-src/sys/dev/ic/ |
H A D | isp_library.c | 809 isp_put_marker(ispsoftc_t *isp, isp_marker_t *src, isp_marker_t *dst) in isp_put_marker() 830 isp_put_marker_24xx(ispsoftc_t *isp, isp_marker_24xx_t *src, isp_marker_24xx_t *dst) in isp_put_marker_24xx() 850 isp_put_request_t2(ispsoftc_t *isp, ispreqt2_t *src, ispreqt2_t *dst) in isp_put_request_t2() 873 isp_put_request_t2e(ispsoftc_t *isp, ispreqt2e_t *src, ispreqt2e_t *dst) in isp_put_request_t2e() 895 isp_put_request_t3(ispsoftc_t *isp, ispreqt3_t *src, ispreqt3_t *dst) in isp_put_request_t3() 919 isp_put_request_t3e(ispsoftc_t *isp, ispreqt3e_t *src, ispreqt3e_t *dst) in isp_put_request_t3e() 942 isp_put_extended_request(ispsoftc_t *isp, ispextreq_t *src, ispextreq_t *dst) in isp_put_extended_request() 964 isp_put_request_t7(ispsoftc_t *isp, ispreqt7_t *src, ispreqt7_t *dst) in isp_put_request_t7() 999 isp_put_24xx_tmf(ispsoftc_t *isp, isp24xx_tmf_t *src, isp24xx_tmf_t *dst) in isp_put_24xx_tmf() 1030 isp_put_24xx_abrt(ispsoftc_t *isp, isp24xx_abrt_t *src, isp24xx_abrt_t *dst) in isp_put_24xx_abrt() [all …]
|
/netbsd-src/external/bsd/elftoolchain/dist/libelf/ |
H A D | gelf_xlate.c | 41 elf32_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf32_xlatetof() 48 elf64_xlatetof(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf64_xlatetof() 55 elf32_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf32_xlatetom() 62 elf64_xlatetom(Elf_Data *dst, const Elf_Data *src, unsigned int encoding) in elf64_xlatetom() 69 gelf_xlatetom(Elf *e, Elf_Data *dst, const Elf_Data *src, in gelf_xlatetom() 80 gelf_xlatetof(Elf *e, Elf_Data *dst, const Elf_Data *src, in gelf_xlatetof()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/i386/ |
H A D | amxtileintrin.h | 59 #define _tile_loadd(dst,base,stride) \ argument 62 #define _tile_loadd_internal(dst,base,stride) \ argument 67 #define _tile_stream_loadd(dst,base,stride) \ argument 70 #define _tile_stream_loadd_internal(dst,base,stride) \ argument 75 #define _tile_stored(dst,base,stride) \ argument 84 #define _tile_zero(dst) \ argument 87 #define _tile_zero_internal(dst) \ argument
|
H A D | amxint8intrin.h | 38 #define _tile_int8_dp_internal(name,dst,src1,src2) \ argument 42 #define _tile_dpbssd(dst,src1,src2) \ argument 45 #define _tile_dpbsud(dst,src1,src2) \ argument 48 #define _tile_dpbusd(dst,src1,src2) \ argument 51 #define _tile_dpbuud(dst,src1,src2) \ argument
|
/netbsd-src/usr.sbin/mrinfo/ |
H A D | mrinfo.c | 179 ask(u_int32_t dst) in ask() 186 ask2(u_int32_t dst) in ask2() 196 accept_neighbors(u_int32_t src, u_int32_t dst, u_char *p, int datalen, in accept_neighbors() 228 accept_neighbors2(u_int32_t src, u_int32_t dst, u_char *p, int datalen, in accept_neighbors2() 433 u_int32_t src, dst, group; in main() local 556 void accept_probe(u_int32_t src, u_int32_t dst, char *p, int datalen, in accept_probe() 560 void accept_group_report(u_int32_t src, u_int32_t dst, u_int32_t group, in accept_group_report() 564 void accept_neighbor_request2(u_int32_t src, u_int32_t dst) in accept_neighbor_request2() 567 void accept_report(u_int32_t src, u_int32_t dst, char *p, int datalen, in accept_report() 571 void accept_neighbor_request(u_int32_t src, u_int32_t dst) in accept_neighbor_request() [all …]
|
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/ |
H A D | i915_memcpy.c | 46 static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) in __memcpy_ntdqa() 75 static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) in __memcpy_ntdqu() 104 static void __memcpy_ntdqa(void *dst, const void *src, unsigned long len) {} in __memcpy_ntdqa() 105 static void __memcpy_ntdqu(void *dst, const void *src, unsigned long len) {} in __memcpy_ntdqu() 125 bool i915_memcpy_from_wc(void *dst, const void *src, unsigned long len) in i915_memcpy_from_wc() 150 void i915_unaligned_memcpy_from_wc(void *dst, void *src, unsigned long len) in i915_unaligned_memcpy_from_wc()
|
/netbsd-src/lib/libc/nameser/ |
H A D | ns_netint.c | 41 uint16_t dst; in ns_get16() local 49 u_int32_t dst; in ns_get32() local 56 ns_put16(uint16_t src, u_char *dst) { in ns_put16() 61 ns_put32(uint32_t src, u_char *dst) { in ns_put32()
|
/netbsd-src/external/bsd/libbind/dist/nameser/ |
H A D | ns_netint.c | 36 u_int dst; in ns_get16() local 44 u_long dst; in ns_get32() local 51 ns_put16(u_int src, u_char *dst) { in ns_put16() 56 ns_put32(u_long src, u_char *dst) { in ns_put32()
|
/netbsd-src/sys/arch/hp300/stand/common/ |
H A D | maskbits.h | 65 #define FASTGETBITS(psrc, x, w, dst) \ argument 86 #define getunalignedword(psrc, x, dst) \ argument 93 #define fnCLEAR(src, dst) (0) argument 94 #define fnCOPY(src, dst) (src) argument 95 #define fnXOR(src, dst) (src ^ dst) argument 96 #define fnCOPYINVERTED(src, dst)(~src) argument 98 #define DoRop(result, alu, src, dst) \ argument
|
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/ |
H A D | benchmark_gtest.cc | 10 std::vector<int> dst; in TEST() local 16 std::vector<int64_t> dst; in TEST() local 22 std::vector<int> dst; in TEST() local 28 std::vector<int64_t> dst; in TEST() local
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/test/ |
H A D | benchmark_gtest.cc | 10 std::vector<int> dst; in TEST() local 16 std::vector<int64_t> dst; in TEST() local 22 std::vector<int> dst; in TEST() local 28 std::vector<int64_t> dst; in TEST() local
|
/netbsd-src/bin/csh/ |
H A D | str.c | 61 Char **dst, **sdst; in blk2short() local 80 char **dst, **sdst; in short2blk() local 100 Char *dst, *edst; in str2short() local 131 char *dst, *edst; in short2str() local 156 s_strcpy(Char *dst, const Char *src) in s_strcpy() 167 s_strncpy(Char *dst, const Char *src, size_t n) in s_strncpy() 186 s_strcat(Char *dst, const Char *src) in s_strcat() 201 s_strncat(Char *dst, Char *src, size_t n) in s_strncat() 374 char *dst, *edst; in short2qstr() local
|
/netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/ |
H A D | vis.c | 155 do_hvis(char *dst, int c, int flag, int nextc, const char *extra) in do_hvis() 177 do_svis(char *dst, int c, int flag, int nextc, const char *extra) in do_svis() 255 rk_svis(char *dst, int c, int flag, int nextc, const char *extra) in rk_svis() 293 rk_strsvis(char *dst, const char *csrc, int flag, const char *extra) in rk_strsvis() 322 rk_strsvisx(char *dst, const char *csrc, size_t len, int flag, const char *extra) in rk_strsvisx() 360 rk_vis(char *dst, int c, int flag, int nextc) in rk_vis() 393 rk_strvis(char *dst, const char *src, int flag) in rk_strvis() 410 rk_strvisx(char *dst, const char *src, size_t len, int flag) in rk_strvisx()
|
/netbsd-src/external/ibm-public/postfix/dist/src/smtp/ |
H A D | smtp_misc.c | 72 void smtp_rewrite_generic_internal(VSTRING *dst, const char *src) in smtp_rewrite_generic_internal() 82 void smtp_quote_822_address_flags(VSTRING *dst, const char *src, int flags) in smtp_quote_822_address_flags() 95 void smtp_quote_821_address(VSTRING *dst, const char *src) in smtp_quote_821_address()
|
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
H A D | msan_poisoning.cc | 43 void CopyOrigin(const void *dst, const void *src, uptr size, in CopyOrigin() 80 u32 *dst = (u32 *)MEM_TO_ORIGIN(beg); in CopyOrigin() local 98 void MoveShadowAndOrigin(const void *dst, const void *src, uptr size, in MoveShadowAndOrigin() 108 void CopyShadowAndOrigin(const void *dst, const void *src, uptr size, in CopyShadowAndOrigin() 117 void CopyMemory(void *dst, const void *src, uptr size, StackTrace *stack) { in CopyMemory() 148 void SetOrigin(const void *dst, uptr size, u32 origin) { in SetOrigin() 166 void PoisonMemory(const void *dst, uptr size, StackTrace *stack) { in PoisonMemory()
|
/netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
H A D | coff-z8k.c | 76 #define SWAP_OUT_RELOC_EXTRA(abfd, src, dst) \ argument 83 rtype2howto (arelent *internal, struct internal_reloc *dst) in rtype2howto() 228 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 262 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 287 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 315 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 341 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local
|
/netbsd-src/external/gpl3/binutils/dist/bfd/ |
H A D | coff-z8k.c | 76 #define SWAP_OUT_RELOC_EXTRA(abfd, src, dst) \ argument 83 rtype2howto (arelent *internal, struct internal_reloc *dst) in rtype2howto() 240 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 273 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 299 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 326 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local 353 bfd_vma dst = bfd_coff_reloc16_get_value (reloc, link_info, in extra_case() local
|
/netbsd-src/external/mit/libuv/dist/src/ |
H A D | inet.c | 40 int uv_inet_ntop(int af, const void* src, char* dst, size_t size) { in uv_inet_ntop() 53 static int inet_ntop4(const unsigned char *src, char *dst, size_t size) { in inet_ntop4() 67 static int inet_ntop6(const unsigned char *src, char *dst, size_t size) { in inet_ntop6() 151 int uv_inet_pton(int af, const char* src, void* dst) { in uv_inet_pton() 180 static int inet_pton4(const char *src, unsigned char *dst) { in inet_pton4() 219 static int inet_pton6(const char *src, unsigned char *dst) { in inet_pton6()
|
/netbsd-src/external/bsd/nvi/dist/common/ |
H A D | conv.c | 51 const CHAR_T **dst) in raw2int() 111 size_t *tolen, const CHAR_T **dst, const char *enc) in default_char2int() 187 size_t *tolen, const CHAR_T **dst) in fe_char2int() 194 size_t *tolen, const CHAR_T **dst) in ie_char2int() 201 size_t *tolen, const CHAR_T **dst) in cs_char2int() 209 size_t *tolen, const char **dst) in CHAR_T_int2char() 219 size_t *tolen, const CHAR_T **dst) in CHAR_T_char2int() 229 const char **dst) in int2raw() 260 char *dst; in default_int2char() local 358 size_t *tolen, const char **dst) in fe_int2char() [all …]
|