HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 151 - 175 of 6525) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/gm/
draw_bitmap_rect_skbug4374.cpp 15 SkRect dst; local
16 SkMatrix::MakeScale(8.0f).mapRect(&dst, rect);
17 canvas->drawBitmapRect(source, rect, dst, nullptr);
  /external/skqp/gm/
draw_bitmap_rect_skbug4374.cpp 15 SkRect dst; local
16 SkMatrix::MakeScale(8.0f).mapRect(&dst, rect);
17 canvas->drawBitmapRect(source, rect, dst, nullptr);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
From2iToMono_16.c 29 LVM_INT16 *dst,
42 *dst = (LVM_INT16)(Temp >>1);
43 dst++;
MixSoft_2St_D32C31_SAT.c 33 LVM_FLOAT *dst,
44 MixSoft_1St_D32C31_WRA((Mix_1St_Cll_FLOAT_t*)pInstance, src1, dst, n);
47 src2, dst, n);
59 src2, dst, n);
61 MixSoft_1St_D32C31_WRA((Mix_1St_Cll_FLOAT_t*) pInstance, src1, dst, n);
63 Core_MixHard_2St_D32C31_SAT(pInstance, src1, src2, dst, n);
70 LVM_INT32 *dst,
81 MixSoft_1St_D32C31_WRA( (Mix_1St_Cll_t*) pInstance, src1, dst, n);
83 src2, dst, n);
94 src2, dst, n)
    [all...]
mult3s_16x16.c 30 LVM_INT16 *dst,
41 *dst = (LVM_INT16)(temp >> 15);
42 dst++;
  /hardware/interfaces/camera/device/3.3/default/
convert.cpp 33 void convertToHidl(const Camera3Stream* src, HalStream* dst) {
34 dst->overrideDataSpace = src->data_space;
35 dst->v3_2.id = src->mId;
36 dst->v3_2.overrideFormat = (PixelFormat) src->format;
37 dst->v3_2.maxBuffers = src->max_buffers;
39 dst->v3_2.consumerUsage = (BufferUsageFlags)0;
40 dst->v3_2.producerUsage = (BufferUsageFlags)src->usage;
42 dst->v3_2.producerUsage = (BufferUsageFlags)0;
43 dst->v3_2.consumerUsage = (BufferUsageFlags)src->usage;
52 void convertToHidl(const camera3_stream_configuration_t& src, HalStreamConfiguration* dst) {
    [all...]
  /system/core/libcutils/include/cutils/
memory.h 28 void android_memset16(uint16_t* dst, uint16_t value, size_t size);
31 void android_memset32(uint32_t* dst, uint32_t value, size_t size);
35 size_t strlcpy(char *dst, const char *src, size_t size);
  /external/skia/src/shaders/gradients/
Sk4fGradientPriv.h 54 template <typename dst, ApplyPremul premul>
68 static void store(const Sk4f& c, SkPMColor* dst, const Sk4f& bias) {
71 SkNx_cast<uint8_t>(c).store(dst);
73 *dst = Sk4f_toL32(PM::apply(c) + bias);
77 static void store(const Sk4f& c, SkPMColor* dst, int n) {
80 sk_memset32(dst, pmc, n);
85 SkPMColor* dst,
90 Sk4f_ToBytes((uint8_t*)dst, c0, c1, c2, c3);
92 store(c0, dst + 0, bias0);
93 store(c1, dst + 1, bias1)
    [all...]
  /external/skqp/src/shaders/gradients/
Sk4fGradientPriv.h 54 template <typename dst, ApplyPremul premul>
68 static void store(const Sk4f& c, SkPMColor* dst, const Sk4f& bias) {
71 SkNx_cast<uint8_t>(c).store(dst);
73 *dst = Sk4f_toL32(PM::apply(c) + bias);
77 static void store(const Sk4f& c, SkPMColor* dst, int n) {
80 sk_memset32(dst, pmc, n);
85 SkPMColor* dst,
90 Sk4f_ToBytes((uint8_t*)dst, c0, c1, c2, c3);
92 store(c0, dst + 0, bias0);
93 store(c1, dst + 1, bias1)
    [all...]
  /bionic/libc/kernel/tools/
utils.py 90 dst = "%s/%s" % (root,f)
91 self.old_files.add(dst)
93 def editFile(self,dst,data):
97 #dst = os.path.realpath(dst)
99 if os.path.exists(dst):
100 f = open(dst, "r")
104 self.old_files.remove(dst)
109 self.new_data[dst] = data
110 self.new_files.add(dst)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodeintra.c 49 int dst_stride = x->e_mbd.dst.y_stride;
50 unsigned char *dst = x->e_mbd.dst.y_buffer + b->offset; local
51 unsigned char *Above = dst - dst_stride;
52 unsigned char *yleft = dst - 1;
65 vp8_short_idct4x4llm(b->dqcoeff, b->predictor, 16, dst, dst_stride);
67 vp8_dc_only_idct_add(b->dqcoeff[0], b->predictor, 16, dst, dst_stride);
75 intra_prediction_down_copy(xd, xd->dst.y_buffer - xd->dst.y_stride + 16);
85 vp8_build_intra_predictors_mby_s(xd, xd->dst.y_buffer - xd->dst.y_stride
    [all...]
  /external/icu/icu4c/source/tools/genrb/
ustr.c 82 ustr_cpy(struct UString *dst,
86 if(U_FAILURE(*status) || dst == src)
89 if(dst->fCapacity < src->fLength) {
90 ustr_resize(dst, ALLOCATION(src->fLength), status);
94 if(src->fChars == NULL || dst->fChars == NULL){
97 u_memcpy(dst->fChars, src->fChars, src->fLength);
98 dst->fLength = src->fLength;
99 dst->fChars[dst->fLength] = 0x0000;
121 ustr_cat(struct UString *dst,
    [all...]
  /external/python/cpython2/Lib/distutils/
file_util.py 18 def _copy_file_contents(src, dst, buffer_size=16*1024):
19 """Copy the file 'src' to 'dst'.
22 'src', or writing to 'dst', raises DistutilsFileError. Data is
36 if os.path.exists(dst):
38 os.unlink(dst)
41 "could not delete '%s': %s" % (dst, errstr))
44 fdst = open(dst, 'wb')
47 "could not create '%s': %s" % (dst, errstr))
63 "could not write to '%s': %s" % (dst, errstr))
71 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0
    [all...]
  /external/python/cpython3/Lib/distutils/
file_util.py 16 def _copy_file_contents(src, dst, buffer_size=16*1024):
17 """Copy the file 'src' to 'dst'; both must be filenames. Any error
18 opening either file, reading from 'src', or writing to 'dst', raises
33 if os.path.exists(dst):
35 os.unlink(dst)
38 "could not delete '%s': %s" % (dst, e.strerror))
41 fdst = open(dst, 'wb')
44 "could not create '%s': %s" % (dst, e.strerror))
60 "could not write to '%s': %s" % (dst, e.strerror))
67 def copy_file(src, dst, preserve_mode=1, preserve_times=1, update=0
    [all...]
  /external/v8/src/x64/
assembler-x64.h 673 void popq(Register dst);
674 void popq(const Operand& dst);
680 void movb(Register dst, const Operand& src);
681 void movb(Register dst, Immediate imm);
682 void movb(const Operand& dst, Register src);
683 void movb(const Operand& dst, Immediate imm);
687 void movw(Register dst, const Operand& src);
688 void movw(const Operand& dst, Register src);
689 void movw(const Operand& dst, Immediate imm);
693 void movl(const Operand& dst, Label* src)
    [all...]
  /external/compiler-rt/lib/builtins/ppc/
gcc_qadd.c 16 DD dst = { .ld = x }, src = { .ld = y }; local
18 register double A = dst.s.hi, a = dst.s.lo,
23 dst.s.hi = A + B;
24 dst.s.lo = 0.0;
25 return dst.ld;
33 dst.s.hi = A + B;
34 dst.s.lo = 0.0;
35 return dst.ld;
43 dst.s.hi = testForOverflow
    [all...]
gcc_qsub.c 16 DD dst = { .ld = x }, src = { .ld = y }; local
18 register double A = dst.s.hi, a = dst.s.lo,
23 dst.s.hi = A + B;
24 dst.s.lo = 0.0;
25 return dst.ld;
33 dst.s.hi = A + B;
34 dst.s.lo = 0.0;
35 return dst.ld;
43 dst.s.hi = testForOverflow
    [all...]
  /external/swiftshader/src/Shader/
ShaderCore.cpp 564 void ShaderCore::mov(Vector4f &dst, const Vector4f &src, bool integerDestination)
568 dst.x = As<Float4>(RoundInt(src.x));
569 dst.y = As<Float4>(RoundInt(src.y));
570 dst.z = As<Float4>(RoundInt(src.z));
571 dst.w = As<Float4>(RoundInt(src.w));
575 dst = src;
579 void ShaderCore::neg(Vector4f &dst, const Vector4f &src)
581 dst.x = -src.x;
582 dst.y = -src.y;
583 dst.z = -src.z
    [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.h 374 void movq(CpuRegister dst, const Immediate& src);
375 void movl(CpuRegister dst, const Immediate& src);
376 void movq(CpuRegister dst, CpuRegister src);
377 void movl(CpuRegister dst, CpuRegister src);
379 void movntl(const Address& dst, CpuRegister src);
380 void movntq(const Address& dst, CpuRegister src);
382 void movq(CpuRegister dst, const Address& src);
383 void movl(CpuRegister dst, const Address& src);
384 void movq(const Address& dst, CpuRegister src);
385 void movq(const Address& dst, const Immediate& imm)
    [all...]
assembler_x86_64.cc 134 void X86_64Assembler::movq(CpuRegister dst, const Immediate& imm) {
138 EmitRex64(dst);
140 EmitRegisterOperand(0, dst.LowBits());
143 EmitRex64(dst);
144 EmitUint8(0xB8 + dst.LowBits());
150 void X86_64Assembler::movl(CpuRegister dst, const Immediate& imm) {
153 EmitOptionalRex32(dst);
154 EmitUint8(0xB8 + dst.LowBits());
159 void X86_64Assembler::movq(const Address& dst, const Immediate& imm) {
162 EmitRex64(dst);
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
memmove.S 47 #define dst x6 define
71 * Need to move from the tail backwards. SRC and DST point one
73 add dst, dstin, count
85 sub dst, dst, tmp1
91 stp A_l, A_h, [dst, #32]
94 stp A_l, A_h, [dst, #16]
97 stp A_l, A_h, [dst]
103 str tmp1, [dst, #-8]!
107 str tmp1w, [dst, #-4]
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 26 private final Node dst; field in class:UserDataNotification
36 Node dst) {
41 this.dst = dst;
81 * Gets value of dst parameter
83 * @return value of dst parameter
86 return dst;
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_x86sse.h 203 void x86_mov_reg_imm( struct x86_function *p, struct x86_reg dst, int imm );
204 void x86_add_imm( struct x86_function *p, struct x86_reg dst, int imm );
205 void x86_or_imm( struct x86_function *p, struct x86_reg dst, int imm );
206 void x86_and_imm( struct x86_function *p, struct x86_reg dst, int imm );
207 void x86_sub_imm( struct x86_function *p, struct x86_reg dst, int imm );
208 void x86_xor_imm( struct x86_function *p, struct x86_reg dst, int imm );
209 void x86_cmp_imm( struct x86_function *p, struct x86_reg dst, int imm );
219 void mmx_movd( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
220 void mmx_movq( struct x86_function *p, struct x86_reg dst, struct x86_reg src );
221 void mmx_packssdw( struct x86_function *p, struct x86_reg dst, struct x86_reg src )
    [all...]
  /external/skia/src/images/
SkImageEncoderFns.h 28 * Transform 'width' pixels from 'src' buffer into 'dst' buffer,
32 typedef void (*transform_scanline_proc)(char* SK_RESTRICT dst, const char* SK_RESTRICT src,
36 * Identity transformation: just copy bytes from src to dst.
38 static inline void transform_scanline_memcpy(char* SK_RESTRICT dst, const char* SK_RESTRICT src,
40 memcpy(dst, src, width * bpp);
43 static inline void transform_scanline_index8_opaque(char* SK_RESTRICT dst,
48 dst[0] = SkGetPackedR32(c);
49 dst[1] = SkGetPackedG32(c);
50 dst[2] = SkGetPackedB32(c);
51 dst += 3
    [all...]
  /external/skqp/src/images/
SkImageEncoderFns.h 28 * Transform 'width' pixels from 'src' buffer into 'dst' buffer,
32 typedef void (*transform_scanline_proc)(char* SK_RESTRICT dst, const char* SK_RESTRICT src,
36 * Identity transformation: just copy bytes from src to dst.
38 static inline void transform_scanline_memcpy(char* SK_RESTRICT dst, const char* SK_RESTRICT src,
40 memcpy(dst, src, width * bpp);
43 static inline void transform_scanline_index8_opaque(char* SK_RESTRICT dst,
48 dst[0] = SkGetPackedR32(c);
49 dst[1] = SkGetPackedG32(c);
50 dst[2] = SkGetPackedB32(c);
51 dst += 3
    [all...]

Completed in 1519 milliseconds

1 2 3 4 5 67 8 91011>>