Home
last modified time | relevance | path

Searched refs:_dst (Results 1 – 3 of 3) sorted by relevance

/linux-2.6.39/scripts/
DMakefile.headersinst11 _dst := $(if $(dst),$(dst),$(obj))
16 _dst := $(if $(destination-y),$(destination-y),$(_dst))
20 install := $(INSTALL_HDR_PATH)/$(_dst)
91 $(Q)$(MAKE) $(hdr-inst)=$(obj)/$@ dst=$(_dst)/$@
/linux-2.6.39/arch/x86/kvm/
Demulate.c191 #define ____emulate_2op(_op, _src, _dst, _eflags, _x, _y, _suffix, _dsttype) \ argument
197 : "=m" (_eflags), "+q" (*(_dsttype*)&(_dst).val),\
204 #define __emulate_2op_nobyte(_op,_src,_dst,_eflags,_wx,_wy,_lx,_ly,_qx,_qy) \ argument
208 switch ((_dst).bytes) { \
210 ____emulate_2op(_op,_src,_dst,_eflags,_wx,_wy,"w",u16);\
213 ____emulate_2op(_op,_src,_dst,_eflags,_lx,_ly,"l",u32);\
216 ON64(____emulate_2op(_op,_src,_dst,_eflags,_qx,_qy,"q",u64)); \
221 #define __emulate_2op(_op,_src,_dst,_eflags,_bx,_by,_wx,_wy,_lx,_ly,_qx,_qy) \ argument
224 switch ((_dst).bytes) { \
226 ____emulate_2op(_op,_src,_dst,_eflags,_bx,_by,"b",u8); \
[all …]
/linux-2.6.39/net/dsa/
Ddsa.c242 static void dsa_link_poll_timer(unsigned long _dst) in dsa_link_poll_timer() argument
244 struct dsa_switch_tree *dst = (void *)_dst; in dsa_link_poll_timer()