HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 276 - 300 of 5015) sorted by null

<<11121314151617181920>>

  /external/skia/src/gpu/text/
GrSDFMaskFilter.cpp 24 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
46 bool GrSDFMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
54 *dst = SkMask::PrepareDestination(SK_DistanceFieldPad, SK_DistanceFieldPad, src);
55 dst->fFormat = SkMask::kSDF_Format;
64 if (dst->fImage == nullptr) {
65 dst->fBounds.setEmpty();
70 return SkGenerateDistanceFieldFromA8Image(dst->fImage, src.fImage,
74 return SkGenerateDistanceFieldFromLCD16Mask(dst->fImage, src.fImage,
78 return SkGenerateDistanceFieldFromBWImage(dst->fImage, src.fImage,
85 SkRect* dst) const
    [all...]
  /external/skia/src/shaders/gradients/
Sk4fGradientPriv.h 66 static void store(const Sk4f& c, SkPMColor* dst, const Sk4f& bias) {
69 SkNx_cast<uint8_t>(c).store(dst);
71 *dst = Sk4f_toL32(PM::apply(c) + bias);
75 static void store(const Sk4f& c, SkPMColor* dst, int n) {
78 sk_memset32(dst, pmc, n);
83 SkPMColor* dst,
88 Sk4f_ToBytes((uint8_t*)dst, c0, c1, c2, c3);
90 store(c0, dst + 0, bias0);
91 store(c1, dst + 1, bias1);
92 store(c2, dst + 2, bias0)
    [all...]
  /external/skqp/src/gpu/text/
GrSDFMaskFilter.cpp 24 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
46 bool GrSDFMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
54 *dst = SkMask::PrepareDestination(SK_DistanceFieldPad, SK_DistanceFieldPad, src);
55 dst->fFormat = SkMask::kSDF_Format;
64 if (dst->fImage == nullptr) {
65 dst->fBounds.setEmpty();
70 return SkGenerateDistanceFieldFromA8Image(dst->fImage, src.fImage,
74 return SkGenerateDistanceFieldFromLCD16Mask(dst->fImage, src.fImage,
78 return SkGenerateDistanceFieldFromBWImage(dst->fImage, src.fImage,
85 SkRect* dst) const
    [all...]
  /external/skqp/src/shaders/gradients/
Sk4fGradientPriv.h 66 static void store(const Sk4f& c, SkPMColor* dst, const Sk4f& bias) {
69 SkNx_cast<uint8_t>(c).store(dst);
71 *dst = Sk4f_toL32(PM::apply(c) + bias);
75 static void store(const Sk4f& c, SkPMColor* dst, int n) {
78 sk_memset32(dst, pmc, n);
83 SkPMColor* dst,
88 Sk4f_ToBytes((uint8_t*)dst, c0, c1, c2, c3);
90 store(c0, dst + 0, bias0);
91 store(c1, dst + 1, bias1);
92 store(c2, dst + 2, bias0)
    [all...]
  /external/speex/libspeexdsp/
os_support.h 93 /** Copy n elements from src to dst. The 0* term provides compile-time type checking */
95 #define SPEEX_COPY(dst, src, n) (memcpy((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
98 /** Copy n elements from src to dst, allowing overlapping regions. The 0* term
101 #define SPEEX_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) )
    [all...]
  /external/v8/src/wasm/baseline/ia32/
liftoff-assembler-ia32.h 51 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Register base,
56 assm->mov(dst.gp(), src);
59 assm->mov(dst.low_gp(), src);
60 assm->mov(dst.high_gp(), Operand(base, offset + 4));
63 assm->movss(dst.fp(), src);
66 assm->movsd(dst.fp(), src);
75 Operand dst(base, offset);
78 assm->mov(dst, src.gp());
81 assm->mov(dst, src.low_gp());
85 assm->movss(dst, src.fp())
404 Operand dst = liftoff::GetStackSlot(index); local
426 Operand dst = liftoff::GetStackSlot(index); local
    [all...]
  /external/vixl/src/aarch64/
logic-aarch64.cc 170 void Simulator::ld1(VectorFormat vform, LogicVRegister dst, uint64_t addr) {
171 dst.ClearForWrite(vform);
173 dst.ReadUintFromMem(vform, i, addr);
180 LogicVRegister dst,
183 dst.ReadUintFromMem(vform, index, addr);
187 void Simulator::ld1r(VectorFormat vform, LogicVRegister dst, uint64_t addr) {
188 dst.ClearForWrite(vform);
190 dst.ReadUintFromMem(vform, i, addr);
383 LogicVRegister dst,
389 dst.WriteUintToMem(vform, i, addr)
    [all...]
  /external/libaom/libaom/aom_dsp/arm/
intrapred_neon.c 23 static INLINE void dc_4x4(uint8_t *dst, ptrdiff_t stride, const uint8_t *above,
58 vst1_lane_u32((uint32_t *)(dst + i * stride), vreinterpret_u32_u8(dc), 0);
63 void aom_dc_predictor_4x4_neon(uint8_t *dst, ptrdiff_t stride,
65 dc_4x4(dst, stride, above, left, 1, 1);
68 void aom_dc_left_predictor_4x4_neon(uint8_t *dst, ptrdiff_t stride,
71 dc_4x4(dst, stride, NULL, left, 0, 1);
74 void aom_dc_top_predictor_4x4_neon(uint8_t *dst, ptrdiff_t stride,
77 dc_4x4(dst, stride, above, NULL, 1, 0);
80 void aom_dc_128_predictor_4x4_neon(uint8_t *dst, ptrdiff_t stride,
84 dc_4x4(dst, stride, NULL, NULL, 0, 0)
    [all...]
  /external/libaom/libaom/aom_dsp/
intrapred.c 23 static INLINE void v_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
29 memcpy(dst, above, bw);
30 dst += stride;
34 static INLINE void h_predictor(uint8_t *dst, ptrdiff_t stride, int bw, int bh,
40 memset(dst, left[r], bw);
41 dst += stride;
60 static INLINE void paeth_predictor(uint8_t *dst, ptrdiff_t stride, int bw,
68 dst[c] = (uint8_t)paeth_predictor_single(left[r], above[c], ytop_left);
69 dst += stride;
84 static INLINE void smooth_predictor(uint8_t *dst, ptrdiff_t stride, int bw
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_yuv.c 49 float *dst = dst_row; local
62 dst[0] = r; /* r */
63 dst[1] = g0; /* g */
64 dst[2] = b; /* b */
65 dst[3] = 1.0f; /* a */
66 dst += 4;
68 dst[0] = r; /* r */
69 dst[1] = g1; /* g */
70 dst[2] = b; /* b */
71 dst[3] = 1.0f; /* a *
103 uint8_t *dst = dst_row; local
158 uint32_t *dst = (uint32_t *)dst_row; local
207 uint32_t *dst = (uint32_t *)dst_row; local
269 float *dst = dst_row; local
323 uint8_t *dst = dst_row; local
378 uint32_t *dst = (uint32_t *)dst_row; local
427 uint32_t *dst = (uint32_t *)dst_row; local
489 float *dst = dst_row; local
537 uint8_t *dst = dst_row; local
586 uint32_t *dst = (uint32_t *)dst_row; local
639 uint32_t *dst = (uint32_t *)dst_row; local
710 float *dst = dst_row; local
758 uint8_t *dst = dst_row; local
807 uint32_t *dst = (uint32_t *)dst_row; local
860 uint32_t *dst = (uint32_t *)dst_row; local
    [all...]
u_format_rgtc.c 32 util_format_rgtc1_unorm_fetch_rgba_8unorm(uint8_t *dst, const uint8_t *src, unsigned i, unsigned j)
34 util_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
35 dst[1] = 0;
36 dst[2] = 0;
37 dst[3] = 255;
52 uint8_t *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*comps; local
53 util_format_unsigned_fetch_texel_rgtc(0, src, i, j, dst, 1);
54 dst[1] = 0;
55 dst[2] = 0;
56 dst[3] = 255
73 uint8_t *dst = dst_row; local
98 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
120 uint8_t *dst = dst_row; local
176 int8_t *dst = (int8_t *)dst_row; local
201 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
249 uint8_t *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*comps; local
269 uint8_t *dst = dst_row; local
294 uint8_t *dst = dst_row; local
328 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
390 float *dst = dst_row + (y + j)*dst_stride\/sizeof(*dst_row) + (x + i)*4; local
413 int8_t *dst = (int8_t *)dst_row; local
    [all...]
  /external/skia/src/utils/
SkFrontBufferedStream.cpp 47 // dst, if non-nullptr. Updates fOffset. Assumes that fOffset is less
49 size_t readFromBuffer(char* dst, size_t size);
51 // Buffer up to size bytes from the stream, and copy to dst if non-
54 size_t bufferAndWriteTo(char* dst, size_t size);
56 // Read up to size bytes directly from the stream and into dst if non-
59 size_t readDirectlyFromStream(char* dst, size_t size);
101 size_t FrontBufferedStream::readFromBuffer(char* dst, size_t size) {
107 if (dst != nullptr) {
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
119 size_t FrontBufferedStream::bufferAndWriteTo(char* dst, size_t size)
176 char* dst = reinterpret_cast<char*>(voidDst); local
    [all...]
  /external/skqp/src/utils/
SkFrontBufferedStream.cpp 47 // dst, if non-nullptr. Updates fOffset. Assumes that fOffset is less
49 size_t readFromBuffer(char* dst, size_t size);
51 // Buffer up to size bytes from the stream, and copy to dst if non-
54 size_t bufferAndWriteTo(char* dst, size_t size);
56 // Read up to size bytes directly from the stream and into dst if non-
59 size_t readDirectlyFromStream(char* dst, size_t size);
101 size_t FrontBufferedStream::readFromBuffer(char* dst, size_t size) {
107 if (dst != nullptr) {
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
119 size_t FrontBufferedStream::bufferAndWriteTo(char* dst, size_t size)
176 char* dst = reinterpret_cast<char*>(voidDst); local
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVC_MixSoft_2St_D16C31_SAT.c 32 LVM_FLOAT *dst,
47 src2, dst, n);
51 src1, dst, n);
57 src1, dst, n);
59 src2, dst, n);
67 src1, src2, dst, n);
82 * dst Destination
93 LVM_FLOAT *dst,
109 src2, dst, NrFrames, NrChannels);
113 src1, dst, NrFrames, NrChannels)
    [all...]
  /external/libaom/config/x86/config/
aom_dsp_rtcd.h 25 void aom_blend_a64_hmask_c(uint8_t *dst, uint32_t dst_stride, const uint8_t *src0, uint32_t src0_stride, const uint8_t *src1, uint32_t src1_stride, const uint8_t *mask, int w, int h);
28 void aom_blend_a64_mask_c(uint8_t *dst, uint32_t dst_stride, const uint8_t *src0, uint32_t src0_stride, const uint8_t *src1, uint32_t src1_stride, const uint8_t *mask, uint32_t mask_stride, int w, int h, int subx, int suby);
31 void aom_blend_a64_vmask_c(uint8_t *dst, uint32_t dst_stride, const uint8_t *src0, uint32_t src0_stride, const uint8_t *src1, uint32_t src1_stride, const uint8_t *mask, int w, int h);
34 void aom_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
35 void aom_convolve8_horiz_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
36 void aom_convolve8_horiz_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
39 void aom_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
40 void aom_convolve8_vert_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
41 void aom_convolve8_vert_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
44 void aom_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step (…)
    [all...]
  /external/libaom/config/x86_64/config/
aom_dsp_rtcd.h 25 void aom_blend_a64_hmask_c(uint8_t *dst, uint32_t dst_stride, const uint8_t *src0, uint32_t src0_stride, const uint8_t *src1, uint32_t src1_stride, const uint8_t *mask, int w, int h);
28 void aom_blend_a64_mask_c(uint8_t *dst, uint32_t dst_stride, const uint8_t *src0, uint32_t src0_stride, const uint8_t *src1, uint32_t src1_stride, const uint8_t *mask, uint32_t mask_stride, int w, int h, int subx, int suby);
31 void aom_blend_a64_vmask_c(uint8_t *dst, uint32_t dst_stride, const uint8_t *src0, uint32_t src0_stride, const uint8_t *src1, uint32_t src1_stride, const uint8_t *mask, int w, int h);
34 void aom_convolve8_horiz_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
35 void aom_convolve8_horiz_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
36 void aom_convolve8_horiz_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
39 void aom_convolve8_vert_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
40 void aom_convolve8_vert_sse2(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
41 void aom_convolve8_vert_ssse3(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step_q4, int w, int h);
44 void aom_convolve_copy_c(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter_x, int x_step_q4, const int16_t *filter_y, int y_step (…)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_tgsi_to_rc.c 157 struct rc_dst_register * dst,
160 dst->File = translate_register_file(src->Register.File);
161 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
162 dst->WriteMask = src->Register.WriteMask;
173 struct rc_src_register * dst,
178 dst->File = translate_register_file(src->Register.File);
179 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
180 dst->RelAddr = src->Register.Indirect;
181 dst->Swizzle = tgsi_util_get_full_src_register_swizzle(src, 0);
182 dst->Swizzle |= tgsi_util_get_full_src_register_swizzle(src, 1) << 3
244 struct rc_instruction * dst; local
    [all...]
  /external/v8/src/wasm/baseline/mips/
liftoff-assembler-mips.h 36 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, Register base,
41 assm->lw(dst.gp(), src);
44 assm->lw(dst.low_gp(), src);
45 assm->lw(dst.high_gp(), MemOperand(base, offset + 4));
48 assm->lwc1(dst.fp(), src);
51 assm->Ldc1(dst.fp(), src);
60 MemOperand dst(base, offset);
63 assm->Usw(src.gp(), dst);
66 assm->Usw(src.low_gp(), dst);
70 assm->Uswc1(src.fp(), dst, t8)
389 Register dst = no_reg; local
477 MemOperand dst = liftoff::GetStackSlot(index); local
499 MemOperand dst = liftoff::GetStackSlot(index); local
    [all...]
  /art/libartbase/base/unix_file/
random_access_file_utils.cc 25 bool CopyFile(const RandomAccessFile& src, RandomAccessFile* dst) {
32 if (dst->Write(&buf[0], n, offset) != n) {
  /art/libelffile/elf/
xz_utils.h 26 void XzCompress(ArrayRef<const uint8_t> src, std::vector<uint8_t>* dst, int level = 1 /* speed */);
27 void XzDecompress(ArrayRef<const uint8_t> src, std::vector<uint8_t>* dst);
  /bionic/libc/bionic/
string_l.cpp 40 size_t strxfrm_l(char* dst, const char* src, size_t n, locale_t) {
41 return strxfrm(dst, src, n);
  /device/google/contexthub/firmware/lib/libc/
memset.c 67 u_char *dst; local
69 dst = dst0;
78 * dst dst+length-1
85 *dst++ = VAL;
103 if ((t = (long)dst & wmask) != 0) {
107 *dst++ = VAL;
114 *(u_int *)dst = WIDEVAL;
115 dst += wsize;
122 *dst++ = VAL
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
wcsftime.c 61 char *dst, *dstp, *sformat; local
65 sformat = dst = NULL;
89 dst = malloc(maxsize * MB_CUR_MAX);
90 if (dst == NULL)
92 if (strftime(dst, maxsize, sformat, timeptr) == 0)
94 dstp = dst;
100 free(dst);
106 free(dst);
  /external/deqp/execserver/
xsPosixFileReader.hpp 45 int read (deUint8* dst, int numBytes) { return m_buf.tryRead(numBytes, dst); }
  /external/deqp/framework/egl/wrapper/
eglwFunctions.hpp 55 void initCore (Functions* dst, const FunctionLoader* loader);
56 void initExtensions (Functions* dst, const FunctionLoader* loader);

Completed in 933 milliseconds

<<11121314151617181920>>