Home
last modified time | relevance | path

Searched refs:dst (Results 1 – 25 of 1617) sorted by relevance

12345678910>>...65

/NextBSD/sys/contrib/dev/ath/ath_hal/ar9300/
HDscorpion_reg_map_macro.h84 #define MAC_DMA_CR__RXE_LP__SET(dst) \ argument
85 (dst) = ((dst) &\
87 #define MAC_DMA_CR__RXE_LP__CLR(dst) \ argument
88 (dst) = ((dst) &\
96 #define MAC_DMA_CR__RXE_HP__SET(dst) \ argument
97 (dst) = ((dst) &\
99 #define MAC_DMA_CR__RXE_HP__CLR(dst) \ argument
100 (dst) = ((dst) &\
109 #define MAC_DMA_CR__RXD__MODIFY(dst, src) \ argument
110 (dst) = ((dst) &\
[all …]
HDosprey_reg_map_macro.h92 #define MAC_DMA_CR__RXE_LP__SET(dst) \ argument
93 (dst) = ((dst) &\
95 #define MAC_DMA_CR__RXE_LP__CLR(dst) \ argument
96 (dst) = ((dst) &\
104 #define MAC_DMA_CR__RXE_HP__SET(dst) \ argument
105 (dst) = ((dst) &\
107 #define MAC_DMA_CR__RXE_HP__CLR(dst) \ argument
108 (dst) = ((dst) &\
117 #define MAC_DMA_CR__RXD__MODIFY(dst, src) \ argument
118 (dst) = ((dst) &\
[all …]
HDposeidon_reg_map_macro.h96 #define AXI_INTERCONNECT_CTRL__FORCE_SEL_ON__MODIFY(dst, src) \ argument
97 (dst) = ((dst) &\
103 #define AXI_INTERCONNECT_CTRL__FORCE_SEL_ON__SET(dst) \ argument
104 (dst) = ((dst) &\
106 #define AXI_INTERCONNECT_CTRL__FORCE_SEL_ON__CLR(dst) \ argument
107 (dst) = ((dst) &\
120 #define AXI_INTERCONNECT_CTRL__SELECT_SLV_PCIE__MODIFY(dst, src) \ argument
121 (dst) = ((dst) &\
127 #define AXI_INTERCONNECT_CTRL__SELECT_SLV_PCIE__SET(dst) \ argument
128 (dst) = ((dst) &\
[all …]
/NextBSD/contrib/wpa/wpa_supplicant/
HDctrl_iface_named_pipe.c87 static void ctrl_close_pipe(struct wpa_ctrl_dst *dst);
93 static void global_close_pipe(struct wpa_global_dst *dst);
116 struct wpa_ctrl_dst *dst, *next; in ctrl_flush_broken_pipes() local
118 dst = priv->ctrl_dst; in ctrl_flush_broken_pipes()
120 while (dst) { in ctrl_flush_broken_pipes()
121 next = dst->next; in ctrl_flush_broken_pipes()
122 if (ctrl_broken_pipe(dst->pipe, dst->used)) { in ctrl_flush_broken_pipes()
124 dst); in ctrl_flush_broken_pipes()
125 ctrl_close_pipe(dst); in ctrl_flush_broken_pipes()
127 dst = next; in ctrl_flush_broken_pipes()
[all …]
/NextBSD/sys/ofed/drivers/infiniband/core/
HDuverbs_marshall.c36 void ib_copy_ah_attr_to_user(struct ib_uverbs_ah_attr *dst, in ib_copy_ah_attr_to_user() argument
39 memcpy(dst->grh.dgid, src->grh.dgid.raw, sizeof src->grh.dgid); in ib_copy_ah_attr_to_user()
40 dst->grh.flow_label = src->grh.flow_label; in ib_copy_ah_attr_to_user()
41 dst->grh.sgid_index = src->grh.sgid_index; in ib_copy_ah_attr_to_user()
42 dst->grh.hop_limit = src->grh.hop_limit; in ib_copy_ah_attr_to_user()
43 dst->grh.traffic_class = src->grh.traffic_class; in ib_copy_ah_attr_to_user()
44 memset(&dst->grh.reserved, 0, sizeof(dst->grh.reserved)); in ib_copy_ah_attr_to_user()
45 dst->dlid = src->dlid; in ib_copy_ah_attr_to_user()
46 dst->sl = src->sl; in ib_copy_ah_attr_to_user()
47 dst->src_path_bits = src->src_path_bits; in ib_copy_ah_attr_to_user()
[all …]
/NextBSD/crypto/heimdal/lib/roken/
HDvis.c153 do_hvis(char *dst, int c, int flag, int nextc, const char *extra) in do_hvis() argument
156 *dst++ = '%'; in do_hvis()
157 *dst++ = xtoa(((unsigned int)c >> 4) & 0xf); in do_hvis()
158 *dst++ = xtoa((unsigned int)c & 0xf); in do_hvis()
160 dst = do_svis(dst, c, flag, nextc, extra); in do_hvis()
162 return dst; in do_hvis()
175 do_svis(char *dst, int c, int flag, int nextc, const char *extra) in do_svis() argument
181 *dst++ = c; in do_svis()
182 return dst; in do_svis()
187 *dst++ = '\\'; *dst++ = 'n'; in do_svis()
[all …]
/NextBSD/contrib/ofed/libibverbs/src/
HDmarshall.c41 void ibv_copy_ah_attr_from_kern(struct ibv_ah_attr *dst, in ibv_copy_ah_attr_from_kern() argument
44 memcpy(dst->grh.dgid.raw, src->grh.dgid, sizeof dst->grh.dgid); in ibv_copy_ah_attr_from_kern()
45 dst->grh.flow_label = src->grh.flow_label; in ibv_copy_ah_attr_from_kern()
46 dst->grh.sgid_index = src->grh.sgid_index; in ibv_copy_ah_attr_from_kern()
47 dst->grh.hop_limit = src->grh.hop_limit; in ibv_copy_ah_attr_from_kern()
48 dst->grh.traffic_class = src->grh.traffic_class; in ibv_copy_ah_attr_from_kern()
50 dst->dlid = src->dlid; in ibv_copy_ah_attr_from_kern()
51 dst->sl = src->sl; in ibv_copy_ah_attr_from_kern()
52 dst->src_path_bits = src->src_path_bits; in ibv_copy_ah_attr_from_kern()
53 dst->static_rate = src->static_rate; in ibv_copy_ah_attr_from_kern()
[all …]
/NextBSD/crypto/openssh/openbsd-compat/
HDvis.c57 vis(char *dst, int c, int flag, int nextc) in vis() argument
60 *dst++ = c; in vis()
62 *dst++ = '\\'; in vis()
63 *dst = '\0'; in vis()
64 return (dst); in vis()
70 *dst++ = '\\'; in vis()
71 *dst++ = 'n'; in vis()
74 *dst++ = '\\'; in vis()
75 *dst++ = 'r'; in vis()
78 *dst++ = '\\'; in vis()
[all …]
/NextBSD/contrib/llvm/lib/Target/X86/
HDX86InstrShiftRotate.td18 let Constraints = "$src1 = $dst", SchedRW = [WriteShift] in {
20 def SHL8rCL : I<0xD2, MRM4r, (outs GR8 :$dst), (ins GR8 :$src1),
21 "shl{b}\t{%cl, $dst|$dst, cl}",
22 [(set GR8:$dst, (shl GR8:$src1, CL))], IIC_SR>;
23 def SHL16rCL : I<0xD3, MRM4r, (outs GR16:$dst), (ins GR16:$src1),
24 "shl{w}\t{%cl, $dst|$dst, cl}",
25 [(set GR16:$dst, (shl GR16:$src1, CL))], IIC_SR>, OpSize16;
26 def SHL32rCL : I<0xD3, MRM4r, (outs GR32:$dst), (ins GR32:$src1),
27 "shl{l}\t{%cl, $dst|$dst, cl}",
28 [(set GR32:$dst, (shl GR32:$src1, CL))], IIC_SR>, OpSize32;
[all …]
HDX86InstrExtension.td43 def MOVSX16rr8 : I<0xBE, MRMSrcReg, (outs GR16:$dst), (ins GR8:$src),
44 "movs{bw|x}\t{$src, $dst|$dst, $src}", [], IIC_MOVSX_R16_R8>,
47 def MOVSX16rm8 : I<0xBE, MRMSrcMem, (outs GR16:$dst), (ins i8mem:$src),
48 "movs{bw|x}\t{$src, $dst|$dst, $src}", [], IIC_MOVSX_R16_M8>,
51 def MOVSX32rr8 : I<0xBE, MRMSrcReg, (outs GR32:$dst), (ins GR8:$src),
52 "movs{bl|x}\t{$src, $dst|$dst, $src}",
53 [(set GR32:$dst, (sext GR8:$src))], IIC_MOVSX>, TB,
55 def MOVSX32rm8 : I<0xBE, MRMSrcMem, (outs GR32:$dst), (ins i8mem :$src),
56 "movs{bl|x}\t{$src, $dst|$dst, $src}",
57 [(set GR32:$dst, (sextloadi32i8 addr:$src))], IIC_MOVSX>, TB,
[all …]
HDX86InstrControl.td60 def JMP_1 : Ii8PCRel<0xEB, RawFrm, (outs), (ins brtarget8:$dst),
61 "jmp\t$dst", [(br bb:$dst)], IIC_JMP_REL>;
63 def JMP_2 : Ii16PCRel<0xE9, RawFrm, (outs), (ins brtarget16:$dst),
64 "jmp\t$dst", [], IIC_JMP_REL>, OpSize16;
65 def JMP_4 : Ii32PCRel<0xE9, RawFrm, (outs), (ins brtarget32:$dst),
66 "jmp\t$dst", [], IIC_JMP_REL>, OpSize32;
73 def _1 : Ii8PCRel <opc1, RawFrm, (outs), (ins brtarget8:$dst), asm,
74 [(X86brcond bb:$dst, Cond, EFLAGS)], IIC_Jcc>;
76 def _2 : Ii16PCRel<opc4, RawFrm, (outs), (ins brtarget16:$dst), asm,
78 def _4 : Ii32PCRel<opc4, RawFrm, (outs), (ins brtarget32:$dst), asm,
[all …]
HDX86InstrXOP.td15 def rr : IXOP<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
16 !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
17 [(set VR128:$dst, (Int VR128:$src))]>, XOP;
18 def rm : IXOP<opc, MRMSrcMem, (outs VR128:$dst), (ins i128mem:$src),
19 !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
20 [(set VR128:$dst, (Int (bitconvert (memop addr:$src))))]>, XOP;
44 def rr : IXOP<opc, MRMSrcReg, (outs VR128:$dst), (ins VR128:$src),
45 !strconcat(OpcodeStr, "\t{$src, $dst|$dst, $src}"),
46 [(set VR128:$dst, (Int VR128:$src))]>, XOP;
47 def rm : IXOP<opc, MRMSrcMem, (outs VR128:$dst), (ins memop:$src),
[all …]
HDX86InstrMMX.td93 let Constraints = "$src1 = $dst" in {
98 def irr : MMXI<opc, MRMSrcReg, (outs VR64:$dst),
100 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
101 [(set VR64:$dst, (IntId VR64:$src1, VR64:$src2))], itins.rr>,
105 def irm : MMXI<opc, MRMSrcMem, (outs VR64:$dst),
107 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
108 [(set VR64:$dst, (IntId VR64:$src1,
116 def rr : MMXI<opc, MRMSrcReg, (outs VR64:$dst),
118 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
119 [(set VR64:$dst, (IntId VR64:$src1, VR64:$src2))], itins.rr>,
[all …]
HDX86InstrSystem.td126 def MOV32rd : I<0x21, MRMDestReg, (outs GR32:$dst), (ins DEBUG_REG:$src),
127 "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_DR>, TB,
129 def MOV64rd : I<0x21, MRMDestReg, (outs GR64:$dst), (ins DEBUG_REG:$src),
130 "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_DR>, TB,
133 def MOV32dr : I<0x23, MRMSrcReg, (outs DEBUG_REG:$dst), (ins GR32:$src),
134 "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_DR_REG>, TB,
136 def MOV64dr : I<0x23, MRMSrcReg, (outs DEBUG_REG:$dst), (ins GR64:$src),
137 "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_DR_REG>, TB,
145 def MOV32rc : I<0x20, MRMDestReg, (outs GR32:$dst), (ins CONTROL_REG:$src),
146 "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_CR>, TB,
[all …]
HDX86InstrSSE.td246 def rr : SI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
248 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
249 !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
250 [(set RC:$dst, (OpNode RC:$src1, RC:$src2))], itins.rr, d>,
253 def rm : SI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
255 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
256 !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
257 [(set RC:$dst, (OpNode RC:$src1, (load addr:$src2)))], itins.rm, d>,
267 def rr_Int : SI_Int<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
269 !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
[all …]
/NextBSD/sys/contrib/ngatm/netnatm/sig/
HDsig_unimsgcpy.c10 copy_msg_alerting(struct uni_alerting *src, struct uni_alerting *dst) in copy_msg_alerting() argument
15 dst->connid = src->connid; in copy_msg_alerting()
17 dst->epref = src->epref; in copy_msg_alerting()
19 dst->notify = src->notify; in copy_msg_alerting()
22 dst->git[d++] = src->git[s]; in copy_msg_alerting()
24 dst->uu = src->uu; in copy_msg_alerting()
26 dst->report = src->report; in copy_msg_alerting()
28 dst->unrec = src->unrec; in copy_msg_alerting()
32 copy_msg_call_proc(struct uni_call_proc *src, struct uni_call_proc *dst) in copy_msg_call_proc() argument
35 dst->connid = src->connid; in copy_msg_call_proc()
[all …]
HDunimsgcpy.h8 copy_msg_alerting(struct uni_alerting *src, struct uni_alerting *dst);
12 copy_msg_call_proc(struct uni_call_proc *src, struct uni_call_proc *dst);
16 copy_msg_connect(struct uni_connect *src, struct uni_connect *dst);
20 copy_msg_connect_ack(struct uni_connect_ack *src, struct uni_connect_ack *dst);
24 copy_msg_release(struct uni_release *src, struct uni_release *dst);
28 copy_msg_release_compl(struct uni_release_compl *src, struct uni_release_compl *dst);
32 copy_msg_setup(struct uni_setup *src, struct uni_setup *dst);
36 copy_msg_status(struct uni_status *src, struct uni_status *dst);
40 copy_msg_status_enq(struct uni_status_enq *src, struct uni_status_enq *dst);
44 copy_msg_notify(struct uni_notify *src, struct uni_notify *dst);
[all …]
/NextBSD/sys/dev/isp/
HDisp_library.c743 isp_put_marker(ispsoftc_t *isp, isp_marker_t *src, isp_marker_t *dst) in isp_put_marker() argument
746 isp_put_hdr(isp, &src->mrk_header, &dst->mrk_header); in isp_put_marker()
747 ISP_IOXPUT_32(isp, src->mrk_handle, &dst->mrk_handle); in isp_put_marker()
749 ISP_IOXPUT_8(isp, src->mrk_reserved0, &dst->mrk_target); in isp_put_marker()
750 ISP_IOXPUT_8(isp, src->mrk_target, &dst->mrk_reserved0); in isp_put_marker()
752 ISP_IOXPUT_8(isp, src->mrk_reserved0, &dst->mrk_reserved0); in isp_put_marker()
753 ISP_IOXPUT_8(isp, src->mrk_target, &dst->mrk_target); in isp_put_marker()
755 ISP_IOXPUT_16(isp, src->mrk_modifier, &dst->mrk_modifier); in isp_put_marker()
756 ISP_IOXPUT_16(isp, src->mrk_flags, &dst->mrk_flags); in isp_put_marker()
757 ISP_IOXPUT_16(isp, src->mrk_lun, &dst->mrk_lun); in isp_put_marker()
[all …]
/NextBSD/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
HDdsl_synctask.c73 dsl_sync_task_t dst = { 0 }; in dsl_sync_task() local
85 dst.dst_pool = dp; in dsl_sync_task()
86 dst.dst_txg = dmu_tx_get_txg(tx); in dsl_sync_task()
87 dst.dst_space = blocks_modified << DST_AVG_BLKSHIFT; in dsl_sync_task()
88 dst.dst_space_check = space_check; in dsl_sync_task()
89 dst.dst_checkfunc = checkfunc != NULL ? checkfunc : dsl_null_checkfunc; in dsl_sync_task()
90 dst.dst_syncfunc = syncfunc; in dsl_sync_task()
91 dst.dst_arg = arg; in dsl_sync_task()
92 dst.dst_error = 0; in dsl_sync_task()
93 dst.dst_nowaiter = B_FALSE; in dsl_sync_task()
[all …]
/NextBSD/contrib/openbsm/compat/
HDvis.h81 vis(dst, c, flag, nextc) in vis() argument
82 char *dst; in vis()
96 *dst++ = '%';
97 snprintf(dst, 4, (c < 16 ? "0%X" : "%X"), c);
98 dst += 2;
111 *dst++ = c;
113 *dst++ = '\\';
114 *dst = '\0';
115 return (dst);
121 *dst++ = '\\';
[all …]
/NextBSD/contrib/llvm/lib/Target/MSP430/
HDMSP430InstrInfo.td125 def Select8 : Pseudo<(outs GR8:$dst), (ins GR8:$src, GR8:$src2, i8imm:$cc),
127 [(set GR8:$dst,
129 def Select16 : Pseudo<(outs GR16:$dst), (ins GR16:$src, GR16:$src2, i8imm:$cc),
131 [(set GR16:$dst,
134 def Shl8 : Pseudo<(outs GR8:$dst), (ins GR8:$src, GR8:$cnt),
136 [(set GR8:$dst, (MSP430shl GR8:$src, GR8:$cnt))]>;
137 def Shl16 : Pseudo<(outs GR16:$dst), (ins GR16:$src, GR8:$cnt),
139 [(set GR16:$dst, (MSP430shl GR16:$src, GR8:$cnt))]>;
140 def Sra8 : Pseudo<(outs GR8:$dst), (ins GR8:$src, GR8:$cnt),
142 [(set GR8:$dst, (MSP430sra GR8:$src, GR8:$cnt))]>;
[all …]
/NextBSD/contrib/libc-vis/
HDvis.c137 do_hvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_hvis() argument
145 dst = do_svis(dst, c, flags, nextc, extra); in do_hvis()
147 *dst++ = L'%'; in do_hvis()
148 *dst++ = xtoa(((unsigned int)c >> 4) & 0xf); in do_hvis()
149 *dst++ = xtoa((unsigned int)c & 0xf); in do_hvis()
152 return dst; in do_hvis()
160 do_mvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_mvis() argument
169 *dst++ = L'='; in do_mvis()
170 *dst++ = XTOA(((unsigned int)c >> 4) & 0xf); in do_mvis()
171 *dst++ = XTOA((unsigned int)c & 0xf); in do_mvis()
[all …]
/NextBSD/contrib/ncurses/ncurses/tinfo/
HDstrings.c70 _nc_str_init(string_desc * dst, char *src, size_t len) in _nc_str_init() argument
72 if (dst != 0) { in _nc_str_init()
73 dst->s_head = src; in _nc_str_init()
74 dst->s_tail = src; in _nc_str_init()
75 dst->s_size = len - 1; in _nc_str_init()
76 dst->s_init = dst->s_size; in _nc_str_init()
80 return dst; in _nc_str_init()
87 _nc_str_null(string_desc * dst, size_t len) in _nc_str_null() argument
89 return _nc_str_init(dst, 0, len); in _nc_str_null()
96 _nc_str_copy(string_desc * dst, string_desc * src) in _nc_str_copy() argument
[all …]
/NextBSD/lib/libasl/
HDasl_common.c458 …ction == ACTION_OUT_DEST) && (r->dst != NULL) && (r->dst->path != NULL) && (!strcmp(r->dst->path, … in _asl_out_dest_for_path()
498 asl_out_dst_data_t *dst; in _asl_common_make_dir_path() local
542 dst = _asl_out_dest_for_path(mlist, tmp); in _asl_common_make_dir_path()
543 if ((dst == NULL) && (flags & MODULE_FLAG_NONSTD_DIR)) in _asl_common_make_dir_path()
552 if (dst != NULL) in _asl_common_make_dir_path()
554 mode = dst->mode; in _asl_common_make_dir_path()
566 if (dst != NULL) in _asl_common_make_dir_path()
568 if (dst->nuid > 0) u = dst->uid[0]; in _asl_common_make_dir_path()
569 if (dst->ngid > 0) g = dst->gid[0]; in _asl_common_make_dir_path()
590 if (r->dst == NULL) return -1; in asl_out_mkpath()
[all …]
/NextBSD/sbin/iscontrol/
HDmisc.c85 char *src, *dst, *tmp; in str2bin() local
98 dst = tmp; in str2bin()
100 *dst++ = c2b(*src++); in str2bin()
102 *dst = c2b(*src++) << 4; in str2bin()
103 *dst++ |= c2b(*src++); in str2bin()
105 len = dst - tmp; in str2bin()
117 dst = tmp; in str2bin()
122 *dst = b6 << 2; in str2bin()
125 *dst++ |= b6 >> 4; in str2bin()
126 *dst = b6 << 4; in str2bin()
[all …]

12345678910>>...65