Home
last modified time | relevance | path

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

12345678910>>...57

/external/qemu/distrib/sdl-1.2.12/src/audio/
DSDL_audiocvt.c41 Uint8 *src, *dst; in SDL_ConvertMono() local
44 dst = cvt->buf; in SDL_ConvertMono()
47 *dst = (Uint8)(sample / 2); in SDL_ConvertMono()
49 dst += 1; in SDL_ConvertMono()
55 Sint8 *src, *dst; in SDL_ConvertMono() local
58 dst = (Sint8 *)cvt->buf; in SDL_ConvertMono()
61 *dst = (Sint8)(sample / 2); in SDL_ConvertMono()
63 dst += 1; in SDL_ConvertMono()
69 Uint8 *src, *dst; in SDL_ConvertMono() local
72 dst = cvt->buf; in SDL_ConvertMono()
[all …]
/external/llvm/lib/Target/X86/
DX86InstrShiftRotate.td18 let Constraints = "$src1 = $dst" 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))]>;
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))]>, OpSize;
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))]>;
[all …]
DX86InstrExtension.td41 def MOVSX16rr8 : I<0xBE, MRMSrcReg, (outs GR16:$dst), (ins GR8:$src),
42 "movs{bw|x}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
43 def MOVSX16rm8 : I<0xBE, MRMSrcMem, (outs GR16:$dst), (ins i8mem:$src),
44 "movs{bw|x}\t{$src, $dst|$dst, $src}", []>, TB, OpSize;
45 def MOVSX32rr8 : I<0xBE, MRMSrcReg, (outs GR32:$dst), (ins GR8:$src),
46 "movs{bl|x}\t{$src, $dst|$dst, $src}",
47 [(set GR32:$dst, (sext GR8:$src))]>, TB;
48 def MOVSX32rm8 : I<0xBE, MRMSrcMem, (outs GR32:$dst), (ins i8mem :$src),
49 "movs{bl|x}\t{$src, $dst|$dst, $src}",
50 [(set GR32:$dst, (sextloadi32i8 addr:$src))]>, TB;
[all …]
DX86InstrSSE.td26 def rr : SI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
28 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
29 !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
30 [(set RC:$dst, (OpNode RC:$src1, RC:$src2))]>;
32 def rm : SI<opc, MRMSrcMem, (outs RC:$dst), (ins RC:$src1, x86memop:$src2),
34 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
35 !strconcat(OpcodeStr, "\t{$src2, $src1, $dst|$dst, $src1, $src2}")),
36 [(set RC:$dst, (OpNode RC:$src1, (load addr:$src2)))]>;
44 def rr_Int : SI<opc, MRMSrcReg, (outs RC:$dst), (ins RC:$src1, RC:$src2),
46 !strconcat(asm, "\t{$src2, $dst|$dst, $src2}"),
[all …]
DX86InstrMMX.td23 let Constraints = "$src1 = $dst" in {
28 def irr : MMXI<opc, MRMSrcReg, (outs VR64:$dst),
30 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
31 [(set VR64:$dst, (IntId VR64:$src1, VR64:$src2))]> {
34 def irm : MMXI<opc, MRMSrcMem, (outs VR64:$dst),
36 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
37 [(set VR64:$dst, (IntId VR64:$src1,
44 def rr : MMXI<opc, MRMSrcReg, (outs VR64:$dst),
46 !strconcat(OpcodeStr, "\t{$src2, $dst|$dst, $src2}"),
47 [(set VR64:$dst, (IntId VR64:$src1, VR64:$src2))]>;
[all …]
/external/wpa_supplicant_8/wpa_supplicant/
Dctrl_iface_named_pipe.c93 static void ctrl_close_pipe(struct wpa_ctrl_dst *dst);
99 static void global_close_pipe(struct wpa_global_dst *dst);
122 struct wpa_ctrl_dst *dst, *next; in ctrl_flush_broken_pipes() local
124 dst = priv->ctrl_dst; in ctrl_flush_broken_pipes()
126 while (dst) { in ctrl_flush_broken_pipes()
127 next = dst->next; in ctrl_flush_broken_pipes()
128 if (ctrl_broken_pipe(dst->pipe, dst->used)) { in ctrl_flush_broken_pipes()
130 dst); in ctrl_flush_broken_pipes()
131 ctrl_close_pipe(dst); in ctrl_flush_broken_pipes()
133 dst = next; in ctrl_flush_broken_pipes()
[all …]
/external/wpa_supplicant_6/wpa_supplicant/
Dctrl_iface_named_pipe.c93 static void ctrl_close_pipe(struct wpa_ctrl_dst *dst);
99 static void global_close_pipe(struct wpa_global_dst *dst);
122 struct wpa_ctrl_dst *dst, *next; in ctrl_flush_broken_pipes() local
124 dst = priv->ctrl_dst; in ctrl_flush_broken_pipes()
126 while (dst) { in ctrl_flush_broken_pipes()
127 next = dst->next; in ctrl_flush_broken_pipes()
128 if (ctrl_broken_pipe(dst->pipe, dst->used)) { in ctrl_flush_broken_pipes()
130 dst); in ctrl_flush_broken_pipes()
131 ctrl_close_pipe(dst); in ctrl_flush_broken_pipes()
133 dst = next; in ctrl_flush_broken_pipes()
[all …]
/external/wpa_supplicant/
Dctrl_iface_named_pipe.c93 static void ctrl_close_pipe(struct wpa_ctrl_dst *dst);
99 static void global_close_pipe(struct wpa_global_dst *dst);
122 struct wpa_ctrl_dst *dst, *next; in ctrl_flush_broken_pipes() local
124 dst = priv->ctrl_dst; in ctrl_flush_broken_pipes()
126 while (dst) { in ctrl_flush_broken_pipes()
127 next = dst->next; in ctrl_flush_broken_pipes()
128 if (ctrl_broken_pipe(dst->pipe, dst->used)) { in ctrl_flush_broken_pipes()
130 dst); in ctrl_flush_broken_pipes()
131 ctrl_close_pipe(dst); in ctrl_flush_broken_pipes()
133 dst = next; in ctrl_flush_broken_pipes()
[all …]
/external/v8/src/x64/
Dassembler-x64.h660 void pop(Register dst);
661 void pop(const Operand& dst);
667 void movb(Register dst, const Operand& src);
668 void movb(Register dst, Immediate imm);
669 void movb(const Operand& dst, Register src);
673 void movw(const Operand& dst, Register src);
675 void movl(Register dst, Register src);
676 void movl(Register dst, const Operand& src);
677 void movl(const Operand& dst, Register src);
678 void movl(const Operand& dst, Immediate imm);
[all …]
Dassembler-x64.cc647 Register dst, in immediate_arithmetic_op() argument
650 emit_rex_64(dst); in immediate_arithmetic_op()
653 emit_modrm(subcode, dst); in immediate_arithmetic_op()
655 } else if (dst.is(rax)) { in immediate_arithmetic_op()
660 emit_modrm(subcode, dst); in immediate_arithmetic_op()
666 const Operand& dst, in immediate_arithmetic_op() argument
669 emit_rex_64(dst); in immediate_arithmetic_op()
672 emit_operand(subcode, dst); in immediate_arithmetic_op()
676 emit_operand(subcode, dst); in immediate_arithmetic_op()
683 Register dst, in immediate_arithmetic_op_16() argument
[all …]
/external/llvm/lib/Target/SystemZ/
DSystemZInstrFP.td29 def SelectF32 : Pseudo<(outs FP32:$dst), (ins FP32:$src1, FP32:$src2, i8imm:$cc),
31 [(set FP32:$dst,
33 def SelectF64 : Pseudo<(outs FP64:$dst), (ins FP64:$src1, FP64:$src2, i8imm:$cc),
35 [(set FP64:$dst,
44 def LD_Fp032 : Pseudo<(outs FP32:$dst), (ins),
45 "lzer\t{$dst}",
46 [(set FP32:$dst, fpimm0)]>;
47 def LD_Fp064 : Pseudo<(outs FP64:$dst), (ins),
48 "lzdr\t{$dst}",
49 [(set FP64:$dst, fpimm0)]>;
[all …]
DSystemZInstrInfo.td79 def Select32 : Pseudo<(outs GR32:$dst), (ins GR32:$src1, GR32:$src2, i8imm:$cc),
81 [(set GR32:$dst,
83 def Select64 : Pseudo<(outs GR64:$dst), (ins GR64:$src1, GR64:$src2, i8imm:$cc),
85 [(set GR64:$dst,
101 def JMP : Pseudo<(outs), (ins brtarget:$dst), "j\t{$dst}", [(br bb:$dst)]>;
104 def JMPr : Pseudo<(outs), (ins GR64:$dst), "br\t{$dst}", [(brind GR64:$dst)]>;
108 def JO : Pseudo<(outs), (ins brtarget:$dst),
109 "jo\t$dst",
110 [(SystemZbrcond bb:$dst, SYSTEMZ_COND_O, PSW)]>;
111 def JH : Pseudo<(outs), (ins brtarget:$dst),
[all …]
/external/llvm/lib/Target/MSP430/
DMSP430InstrInfo.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 …]
/external/opencv/cv/src/
D_cvmatrix.h45 #define icvCopyVector( src, dst, len ) memcpy( (dst), (src), (len)*sizeof((dst)[0])) argument
46 #define icvSetZero( dst, len ) memset( (dst), 0, (len)*sizeof((dst)[0])) argument
48 #define icvCopyVector_32f( src, len, dst ) memcpy((dst),(src),(len)*sizeof(float)) argument
49 #define icvSetZero_32f( dst, cols, rows ) memset((dst),0,(rows)*(cols)*sizeof(float)) argument
50 #define icvCopyVector_64d( src, len, dst ) memcpy((dst),(src),(len)*sizeof(double)) argument
51 #define icvSetZero_64d( dst, cols, rows ) memset((dst),0,(rows)*(cols)*sizeof(double)) argument
52 #define icvCopyMatrix_32f( src, w, h, dst ) memcpy((dst),(src),(w)*(h)*sizeof(float)) argument
53 #define icvCopyMatrix_64d( src, w, h, dst ) memcpy((dst),(src),(w)*(h)*sizeof(double)) argument
63 #define icvAddMatrix_32f( src1, src2, dst, w, h ) \ argument
64 icvAddVector_32f( (src1), (src2), (dst), (w)*(h))
[all …]
/external/icu4c/tools/genrb/
Dustr.c79 ustr_cpy(struct UString *dst, in ustr_cpy() argument
83 if(U_FAILURE(*status) || dst == src) in ustr_cpy()
86 if(dst->fCapacity < src->fLength) { in ustr_cpy()
87 ustr_resize(dst, ALLOCATION(src->fLength), status); in ustr_cpy()
91 if(src->fChars == NULL || dst->fChars == NULL){ in ustr_cpy()
94 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength); in ustr_cpy()
95 dst->fLength = src->fLength; in ustr_cpy()
96 dst->fChars[dst->fLength] = 0x0000; in ustr_cpy()
118 ustr_cat(struct UString *dst, in ustr_cat() argument
122 ustr_ncat(dst, src, src->fLength, status); in ustr_cat()
[all …]
/external/qemu/distrib/sdl-1.2.12/src/video/
DSDL_blit_1.c37 Uint8 *src, *map, *dst; in Blit1to1() local
45 dst = info->d_pixels; in Blit1to1()
53 *dst = map[*src]; in Blit1to1()
55 dst++; in Blit1to1()
60 *dst = map[*src]; in Blit1to1()
61 dst++; in Blit1to1()
66 dst += dstskip; in Blit1to1()
83 Uint8 *src, *dst; in Blit1to2() local
92 dst = info->d_pixels; in Blit1to2()
100 *(Uint16 *)dst = map[*src++]; in Blit1to2()
[all …]
/external/skia/src/core/
DSkBlitRow_D32.cpp7 static void S32_Opaque_BlitRow32(SkPMColor* SK_RESTRICT dst, in S32_Opaque_BlitRow32() argument
11 memcpy(dst, src, count * sizeof(SkPMColor)); in S32_Opaque_BlitRow32()
14 static void S32_Blend_BlitRow32(SkPMColor* SK_RESTRICT dst, in S32_Blend_BlitRow32() argument
24 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
25 dst += 1; in S32_Blend_BlitRow32()
31 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
32 dst += 1; in S32_Blend_BlitRow32()
33 *dst = SkAlphaMulQ(*(src++), src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
34 dst += 1; in S32_Blend_BlitRow32()
38 *dst = SkAlphaMulQ(*src, src_scale) + SkAlphaMulQ(*dst, dst_scale); in S32_Blend_BlitRow32()
[all …]
DSkXfermode.cpp22 static SkPMColor SkFourByteInterp(SkPMColor src, SkPMColor dst, U8CPU alpha) { in SkFourByteInterp() argument
25 unsigned a = SkAlphaBlend(SkGetPackedA32(src), SkGetPackedA32(dst), scale); in SkFourByteInterp()
26 unsigned r = SkAlphaBlend(SkGetPackedR32(src), SkGetPackedR32(dst), scale); in SkFourByteInterp()
27 unsigned g = SkAlphaBlend(SkGetPackedG32(src), SkGetPackedG32(dst), scale); in SkFourByteInterp()
28 unsigned b = SkAlphaBlend(SkGetPackedB32(src), SkGetPackedB32(dst), scale); in SkFourByteInterp()
87 static SkPMColor clear_modeproc(SkPMColor src, SkPMColor dst) { in clear_modeproc() argument
92 static SkPMColor src_modeproc(SkPMColor src, SkPMColor dst) { in src_modeproc() argument
97 static SkPMColor dst_modeproc(SkPMColor src, SkPMColor dst) { in dst_modeproc() argument
98 return dst; in dst_modeproc()
102 static SkPMColor srcover_modeproc(SkPMColor src, SkPMColor dst) { in srcover_modeproc() argument
[all …]
DSkUtils.cpp21 #define assign_16_longs(dst, value) \
23 (dst)[0] = value; (dst)[1] = value; \
24 (dst)[2] = value; (dst)[3] = value; \
25 (dst)[4] = value; (dst)[5] = value; \
26 (dst)[6] = value; (dst)[7] = value; \
27 (dst)[8] = value; (dst)[9] = value; \
28 (dst)[10] = value; (dst)[11] = value; \
29 (dst)[12] = value; (dst)[13] = value; \
30 (dst)[14] = value; (dst)[15] = value; \
33 #define assign_16_longs(dst, value) \ argument
[all …]
DSkPackBits.cpp5 static inline void small_memcpy(void* SK_RESTRICT dst, in small_memcpy() argument
8 uint8_t* d = (uint8_t*)dst; in small_memcpy()
30 static inline void small_memset(void* dst, uint8_t value, int n) { in small_memset() argument
32 uint8_t* d = (uint8_t*)dst; in small_memset()
64 #define PB_MEMCPY(dst, src, count) \ argument
67 memcpy(dst, src, count); \
69 small_memcpy(dst, src, count); \
127 static uint8_t* flush_same16(uint8_t dst[], uint16_t value, int count) { in flush_same16() argument
133 *dst++ = (uint8_t)(n - 1); in flush_same16()
134 *dst++ = (uint8_t)(value >> 8); in flush_same16()
[all …]
/external/webkit/Source/WebKit/android/plugins/
DSkANP.cpp31 SkRect* SkANP::SetRect(SkRect* dst, const ANPRectF& src) { in SetRect() argument
32 dst->set(SkFloatToScalar(src.left), in SetRect()
36 return dst; in SetRect()
39 SkIRect* SkANP::SetRect(SkIRect* dst, const ANPRectI& src) { in SetRect() argument
40 dst->set(src.left, src.top, src.right, src.bottom); in SetRect()
41 return dst; in SetRect()
44 ANPRectI* SkANP::SetRect(ANPRectI* dst, const SkIRect& src) { in SetRect() argument
45 dst->left = src.fLeft; in SetRect()
46 dst->top = src.fTop; in SetRect()
47 dst->right = src.fRight; in SetRect()
[all …]
/external/kernel-headers/original/linux/
Dbitmap.h87 extern void __bitmap_complement(unsigned long *dst, const unsigned long *src,
89 extern void __bitmap_shift_right(unsigned long *dst,
91 extern void __bitmap_shift_left(unsigned long *dst,
93 extern void __bitmap_and(unsigned long *dst, const unsigned long *bitmap1,
95 extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1,
97 extern void __bitmap_xor(unsigned long *dst, const unsigned long *bitmap1,
99 extern void __bitmap_andnot(unsigned long *dst, const unsigned long *bitmap1,
110 unsigned long *dst, int nbits);
115 extern void bitmap_remap(unsigned long *dst, const unsigned long *src,
129 static inline void bitmap_zero(unsigned long *dst, int nbits) in bitmap_zero() argument
[all …]
/external/clang/test/Analysis/
Dbstring.c51 char dst[4] = {0}; in memcpy0() local
53 memcpy(dst, src, 4); // no-warning in memcpy0()
55 if (memcpy(dst, src, 4) != dst) { in memcpy0()
59 if (dst[0] != 0) in memcpy0()
65 char dst[10]; in memcpy1() local
67 …memcpy(dst, src, 5); // expected-warning{{Memory copy function accesses out-of-bound array element… in memcpy1()
72 char dst[1]; in memcpy2() local
74 memcpy(dst, src, 4); // expected-warning{{Memory copy function overflows destination buffer}} in memcpy2()
79 char dst[3]; in memcpy3() local
81 memcpy(dst+1, src+2, 2); // no-warning in memcpy3()
[all …]
/external/webp/src/dec/
Ddsp.c59 dst[x + y * BPS] = clip_8b(dst[x + y * BPS] + ((v) >> 3))
65 static void TransformOne(const int16_t* in, uint8_t* dst) { in TransformOne() argument
100 dst += BPS; in TransformOne()
105 static void TransformTwo(const int16_t* in, uint8_t* dst, int do_two) { in TransformTwo() argument
106 TransformOne(in, dst); in TransformTwo()
108 TransformOne(in + 16, dst + 4); in TransformTwo()
112 static void TransformUV(const int16_t* in, uint8_t* dst) { in TransformUV() argument
113 VP8Transform(in + 0 * 16, dst, 1); in TransformUV()
114 VP8Transform(in + 2 * 16, dst + 4 * BPS, 1); in TransformUV()
117 static void TransformDC(const int16_t *in, uint8_t* dst) { in TransformDC() argument
[all …]
/external/chromium/base/json/
Dstring_escape.cc19 static bool JsonSingleEscapeChar(const CHAR c, std::string* dst) { in JsonSingleEscapeChar() argument
25 dst->append("\\b"); in JsonSingleEscapeChar()
28 dst->append("\\f"); in JsonSingleEscapeChar()
31 dst->append("\\n"); in JsonSingleEscapeChar()
34 dst->append("\\r"); in JsonSingleEscapeChar()
37 dst->append("\\t"); in JsonSingleEscapeChar()
40 dst->append("\\\\"); in JsonSingleEscapeChar()
43 dst->append("\\\""); in JsonSingleEscapeChar()
54 std::string* dst) { in JsonDoubleQuoteT() argument
56 dst->push_back('"'); in JsonDoubleQuoteT()
[all …]

12345678910>>...57