Home
last modified time | relevance | path

Searched defs:dst (Results 1 – 25 of 1459) sorted by relevance

12345678910>>...59

/netbsd/src/external/lgpl3/gmp/dist/mpn/generic/
Dtoom_interpolate_16pts.c66 #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 …]
Dtoom_interpolate_12pts.c70 #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 …]
Dtoom_interpolate_8pts.c48 #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 …]
Dtoom_interpolate_7pts.c57 #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/
Dstring.h50 #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/sys/dev/ic/
Disp_library.c809 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/gpl3/gcc/dist/gcc/config/i386/
Damxtileintrin.h59 #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
Damxint8intrin.h38 #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/sys/external/bsd/drm2/dist/drm/i915/
Di915_memcpy.c46 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/usr.sbin/mrinfo/
Dmrinfo.c179 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/lib/libc/nameser/
Dns_netint.c41 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/
Dns_netint.c36 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/
Dmaskbits.h65 #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/ibm-public/postfix/dist/src/smtp/
Dsmtp_misc.c72 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/bin/csh/
Dstr.c61 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/
Dvis.c155 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/bsd/wpa/dist/wpa_supplicant/
Dctrl_iface_named_pipe.c116 struct wpa_ctrl_dst *dst, *next; in ctrl_flush_broken_pipes() local
134 struct wpa_ctrl_dst *dst; in ctrl_open_pipe() local
222 static void ctrl_close_pipe(struct wpa_ctrl_dst *dst) in ctrl_close_pipe()
257 struct wpa_ctrl_dst *dst = (struct wpa_ctrl_dst *) overlap; in ctrl_iface_write_completed() local
279 static void wpa_supplicant_ctrl_iface_rx(struct wpa_ctrl_dst *dst, size_t len) in wpa_supplicant_ctrl_iface_rx()
348 struct wpa_ctrl_dst *dst = (struct wpa_ctrl_dst *) overlap; in ctrl_iface_read_completed() local
358 struct wpa_ctrl_dst *dst = eloop_data; in wpa_supplicant_ctrl_iface_receive() local
482 struct wpa_ctrl_dst *dst, *next; in wpa_supplicant_ctrl_iface_send() local
561 struct wpa_global_dst *dst, *next; in global_flush_broken_pipes() local
579 struct wpa_global_dst *dst; in global_open_pipe() local
[all …]
/netbsd/src/external/gpl3/binutils/dist/bfd/
Dcoff-z8k.c76 #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/gpl3/gdb/dist/bfd/
Dcoff-z8k.c76 #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/bsd/nvi/dist/common/
Dconv.c51 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 …]
/netbsd/src/common/lib/libc/string/
Dmemset.c107 u_char *dst; local
171 u_char *dst = dstv; in bzero() local
179 u_char *dst = dstv; in memset() local
/netbsd/src/sys/external/bsd/drm2/dist/drm/
Ddrm_rect.c61 static u32 clip_scaled(int src, int dst, int *clip) in clip_scaled()
98 bool drm_rect_clip_scaled(struct drm_rect *src, struct drm_rect *dst, in drm_rect_clip_scaled()
140 static int drm_calc_scale(int src, int dst) in drm_calc_scale()
176 const struct drm_rect *dst, in drm_rect_calc_hscale()
211 const struct drm_rect *dst, in drm_rect_calc_vscale()
/netbsd/src/usr.sbin/map-mbone/
Dmapper.c204 void ask(u_int32_t dst) in ask()
210 void ask2(u_int32_t dst) in ask2()
220 void accept_group_report(u_int32_t src, u_int32_t dst, u_int32_t group, int r_type) in accept_group_report()
230 void accept_probe(u_int32_t src, u_int32_t dst, char *p, int datalen, in accept_probe()
241 void accept_report(u_int32_t src, u_int32_t dst, char *p, int datalen, in accept_report()
252 void accept_neighbor_request(u_int32_t src, u_int32_t dst) in accept_neighbor_request()
260 void accept_neighbor_request2(u_int32_t src, u_int32_t dst) in accept_neighbor_request2()
272 void accept_neighbors(u_int32_t src, u_int32_t dst, u_char *p, int datalen, in accept_neighbors()
431 void accept_neighbors2(u_int32_t src, u_int32_t dst, u_char *p, int datalen, in accept_neighbors2()
951 void accept_prune(u_int32_t src, u_int32_t dst, char *p, int datalen) in accept_prune()
[all …]
/netbsd/src/sys/arch/pmax/ibus/
Dsii_ds.c132 kn230_copytobuf(u_short *src, volatile u_short *dst, int len) in kn230_copytobuf()
166 kn230_copyfrombuf(volatile u_short *src, char *dst, int len) in kn230_copyfrombuf()
205 kn01_copytobuf(u_short *src, volatile u_short *dst, int len) in kn01_copytobuf()
220 kn01_copyfrombuf(volatile u_short *src, char *dst, int len) in kn01_copyfrombuf()
/netbsd/src/external/cddl/osnet/dist/uts/common/zmod/
Dzmod.c40 z_uncompress(void *dst, size_t *dstlen, const void *src, size_t srclen) in z_uncompress()
69 z_compress_level(void *dst, size_t *dstlen, const void *src, size_t srclen, in z_compress_level()
95 z_compress(void *dst, size_t *dstlen, const void *src, size_t srclen) in z_compress()

12345678910>>...59