Searched defs:dst (Results 76 - 100 of 2040) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/src/lazy/
H A DSkCachingPixelRef.cpp13 SkBitmap* dst) {
16 SkASSERT(dst != NULL);
19 || !dst->setConfig(info, 0)) {
24 (info, generator, dst->rowBytes())));
25 dst->setPixelRef(ref);
12 Install(SkImageGenerator* generator, SkBitmap* dst) argument
H A DSkDiscardablePixelRef.cpp72 SkBitmap* dst,
78 || (!dst->setConfig(info, 0))) {
82 SkASSERT(dst->config() != SkBitmap::kNo_Config);
83 if (dst->empty()) { // Use a normal pixelref.
85 return dst->allocPixels(NULL, NULL);
88 (info, generator, dst->rowBytes(), factory)));
89 dst->setPixelRef(ref);
71 SkInstallDiscardablePixelRef(SkImageGenerator* generator, SkBitmap* dst, SkDiscardableMemory::Factory* factory) argument
/external/chromium_org/third_party/skia/src/opts/
H A DSkBlitRect_opts_SSE2.cpp25 SkPMColor* dst = destination; local
29 *dst++ = color;
30 *dst++ = color;
31 *dst++ = color;
32 *dst++ = color;
37 *dst++ = color;
62 SkPMColor* dst = destination; local
65 while (((size_t)dst) & 0x0F) {
66 *dst++ = color;
69 __m128i *d = reinterpret_cast<__m128i*>(dst);
[all...]
H A DSkBlitRow_opts_arm.cpp29 static void S32A_D565_Opaque(uint16_t* SK_RESTRICT dst, argument
47 "strh r3, [%[dst]], #2 \n\t"
53 "ldrh r4, [%[dst]] \n\t"
90 "strh r4, [%[dst]], #2 \n\t"
97 "add %[dst], %[dst], #2 \n\t"
100 : [dst] "+r" (dst), [src] "+r" (src), [count] "+r" (count)
106 static void S32A_Opaque_BlitRow32_arm(SkPMColor* SK_RESTRICT dst, argument
125 "ldm %[dst], {r
200 S32A_Blend_BlitRow32_arm(SkPMColor* SK_RESTRICT dst, const SkPMColor* SK_RESTRICT src, int count, U8CPU alpha) argument
[all...]
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Drealloc_unittest.cc94 unsigned char* dst = (unsigned char*) realloc(src, dst_size); local
95 CHECK(Valid(dst, min(src_size, dst_size)));
96 Fill(dst, dst_size);
97 CHECK(Valid(dst, dst_size));
98 if (dst != NULL) free(dst);
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Drealloc_unittest.cc94 unsigned char* dst = (unsigned char*) realloc(src, dst_size); local
95 CHECK(Valid(dst, min(src_size, dst_size)));
96 Fill(dst, dst_size);
97 CHECK(Valid(dst, dst_size));
98 if (dst != NULL) free(dst);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_clock.cc79 void ThreadClock::release(SyncClock *dst) const {
81 DCHECK(dst->clk_.Size() <= kMaxTid);
83 if (dst->clk_.Size() < nclk_)
84 dst->clk_.Resize(nclk_);
86 if (dst->clk_[i] < clk_[i])
87 dst->clk_[i] = clk_[i];
91 void ThreadClock::ReleaseStore(SyncClock *dst) const {
93 DCHECK(dst->clk_.Size() <= kMaxTid);
95 if (dst->clk_.Size() < nclk_)
96 dst
103 acq_rel(SyncClock *dst) argument
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DMutf8.java86 * dst}, starting at {@code offset}.
88 public static void encode(byte[] dst, int offset, String s) { argument
93 dst[offset++] = (byte) ch;
95 dst[offset++] = (byte) (0xc0 | (0x1f & (ch >> 6)));
96 dst[offset++] = (byte) (0x80 | (0x3f & ch));
98 dst[offset++] = (byte) (0xe0 | (0x0f & (ch >> 12)));
99 dst[offset++] = (byte) (0x80 | (0x3f & (ch >> 6)));
100 dst[offset++] = (byte) (0x80 | (0x3f & ch));
/external/dropbear/libtommath/
H A Dbn_mp_karatsuba_sqr.c56 register mp_digit *dst, *src; local
61 dst = x0.dp;
63 *dst++ = *src++;
66 dst = x1.dp;
68 *dst++ = *src++;
/external/eigen/bench/
H A DBenchUtil.h49 void eiToGmm(const EigenMatrixType& src, GmmMatrixType& dst) argument
51 dst.resize(src.rows(),src.cols());
54 dst(i,j) = src.coeff(i,j);
64 void eiToGsl(const EigenMatrixType& src, gsl_matrix** dst) argument
68 gsl_matrix_set(*dst, i, j, src.coeff(i,j));
76 void eiToUblas(const EigenMatrixType& src, UblasMatrixType& dst) argument
78 dst.resize(src.rows(),src.cols());
81 dst(i,j) = src.coeff(i,j);
84 void eiToUblasVec(const EigenType& src, UblasType& dst) argument
86 dst
[all...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
H A DBlockCipher.java19 public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff); argument
H A DNullCipher.java35 public void transformBlock(byte[] src, int srcoff, byte[] dst, int dstoff) argument
37 System.arraycopy(src, srcoff, dst, dstoff, blockSize);
/external/ipsec-tools/src/racoon/
H A Dstr2val.c85 char *dst; local
103 if ((dst = racoon_malloc(i)) == NULL)
108 for (rp = dst, p = str; *p != '\0'; p++) {
125 return(dst);
/external/kernel-headers/original/linux/netfilter_ipv4/
H A Dipt_iprange.h17 struct ipt_iprange dst; member in struct:ipt_iprange_info
/external/libppp/src/
H A Droute.h51 struct ncprange dst; member in struct:sticky_route
/external/libvpx/libvpx/test/
H A Dvp8_decrypt_test.cc29 void encrypt_buffer(const uint8_t *src, uint8_t *dst, argument
32 dst[i] = src[i] ^ test_key[(offset + i) & 15];
/external/libvpx/libvpx/vp8/common/
H A Didct_blk.c23 unsigned char *dst, int stride, char *eobs)
32 vp8_dequant_idct_add_c (q, dq, dst, stride);
35 vp8_dc_only_idct_add_c (q[0]*dq[0], dst, stride, dst, stride);
40 dst += 4;
43 dst += 4*stride - 16;
21 vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Didct_blk_dspr2.c18 unsigned char *dst, int stride, char *eobs)
27 vp8_dequant_idct_add_dspr2(q, dq, dst, stride);
30 vp8_dc_only_idct_add_dspr2(q[0]*dq[0], dst, stride, dst, stride);
35 dst += 4;
38 dst += 4 * stride - 16;
16 vp8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
H A Dreconinter_dspr2.c30 unsigned char *RESTRICT dst,
47 "sw %[a0], 0(%[dst]) \n\t"
48 "sw %[a1], 4(%[dst]) \n\t"
49 "sw %[a2], 8(%[dst]) \n\t"
50 "sw %[a3], 12(%[dst]) \n\t"
53 : [src] "r" (src), [dst] "r" (dst)
57 dst += dst_stride;
65 unsigned char *RESTRICT dst,
80 "sw %[a0], 0(%[dst]) \
27 vp8_copy_mem16x16_dspr2( unsigned char *RESTRICT src, int src_stride, unsigned char *RESTRICT dst, int dst_stride) argument
62 vp8_copy_mem8x8_dspr2( unsigned char *RESTRICT src, int src_stride, unsigned char *RESTRICT dst, int dst_stride) argument
92 vp8_copy_mem8x4_dspr2( unsigned char *RESTRICT src, int src_stride, unsigned char *RESTRICT dst, int dst_stride) argument
[all...]
/external/libvpx/libvpx/vp8/common/x86/
H A Didct_blk_mmx.c28 unsigned char *dst, int stride, char *eobs)
35 vp8_dequant_idct_add_mmx (q, dq, dst, stride);
38 vp8_dc_only_idct_add_mmx (q[0]*dq[0], dst, stride, dst, stride);
43 vp8_dequant_idct_add_mmx (q+16, dq, dst+4, stride);
46 vp8_dc_only_idct_add_mmx (q[16]*dq[0], dst+4, stride,
47 dst+4, stride);
52 vp8_dequant_idct_add_mmx (q+32, dq, dst+8, stride);
55 vp8_dc_only_idct_add_mmx (q[32]*dq[0], dst+8, stride,
56 dst
26 vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs) argument
[all...]
/external/libvpx/libvpx/vp9/common/arm/neon/
H A Dvp9_convolve_neon.c16 uint8_t *dst, ptrdiff_t dst_stride,
30 dst, dst_stride,
47 dst, dst_stride,
53 uint8_t *dst, ptrdiff_t dst_stride,
62 dst, dst_stride,
75 64, dst, dst_stride,
15 vp9_convolve8_neon(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) argument
52 vp9_convolve8_avg_neon(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) argument
/external/libyuv/files/source/
H A Drotate_neon.cc26 uint8* dst, int dst_stride,
80 "add %2, %2, %3, lsl #3 \n" // dst += 8 * dst_stride
130 "add %2, %2, %3, lsl #2 \n" // dst += 4 * dst_stride
159 "add %2, %2, %3, lsl #1 \n" // dst += 2 * dst_stride
180 "+r"(dst), // %2
25 TransposeWx8_NEON(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width) argument
/external/linux-tools-perf/util/
H A Dquote.c20 static void sq_quote_buf(struct strbuf *dst, const char *src) argument
24 if (dst->buf == src)
25 to_free = strbuf_detach(dst, NULL);
27 strbuf_addch(dst, '\'');
30 strbuf_add(dst, src, len);
33 strbuf_addstr(dst, "'\\");
34 strbuf_addch(dst, *src++);
35 strbuf_addch(dst, '\'');
38 strbuf_addch(dst, '\'');
42 void sq_quote_argv(struct strbuf *dst, cons argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_framebuffer.c49 util_framebuffer_state_equal(const struct pipe_framebuffer_state *dst, argument
54 if (dst->width != src->width ||
55 dst->height != src->height)
59 if (dst->cbufs[i] != src->cbufs[i]) {
64 if (dst->nr_cbufs != src->nr_cbufs) {
68 if (dst->zsbuf != src->zsbuf) {
77 * Copy framebuffer state from src to dst, updating refcounts.
80 util_copy_framebuffer_state(struct pipe_framebuffer_state *dst, argument
85 dst->width = src->width;
86 dst
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu_util.c39 struct brw_reg dst,
43 dst,
54 struct brw_reg dst,
60 dst = vec4(dst);
66 brw_MOV(p, byte_offset(dst, delta), byte_offset(src, delta));
67 brw_MOV(p, byte_offset(dst, delta+16), byte_offset(src, delta+16));
73 struct brw_reg dst,
79 dst = vec8(dst);
38 brw_math_invert( struct brw_compile *p, struct brw_reg dst, struct brw_reg src) argument
53 brw_copy4(struct brw_compile *p, struct brw_reg dst, struct brw_reg src, GLuint count) argument
72 brw_copy8(struct brw_compile *p, struct brw_reg dst, struct brw_reg src, GLuint count) argument
106 brw_copy_from_indirect(struct brw_compile *p, struct brw_reg dst, struct brw_indirect ptr, GLuint count) argument
[all...]

Completed in 426 milliseconds

1234567891011>>