Searched defs:dst (Results 226 - 250 of 2513) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXStringForChars.java198 * @param dst the destination array.
208 * <code>dst.length</code></ul>
209 * @exception NullPointerException if <code>dst</code> is <code>null</code>
211 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
213 System.arraycopy((char[])m_obj, m_start+srcBegin, dst, dstBegin, srcEnd);
/external/blktrace/
H A Dblkiomon.h85 static inline void blkiomon_stat_merge(struct blkiomon_stat *dst, argument
88 histlog2_merge(&size_hist, dst->size_hist, src->size_hist);
89 histlog2_merge(&d2c_hist, dst->d2c_hist, src->d2c_hist);
90 minmax_merge(&dst->size_r, &src->size_r);
91 minmax_merge(&dst->size_w, &src->size_w);
92 minmax_merge(&dst->d2c_r, &src->d2c_r);
93 minmax_merge(&dst->d2c_w, &src->d2c_w);
94 minmax_merge(&dst->thrput_r, &src->thrput_r);
95 minmax_merge(&dst->thrput_w, &src->thrput_w);
96 dst
[all...]
/external/bluetooth/bluedroid/bta/pan/
H A Dbta_pan_ci.c130 void bta_pan_ci_rx_write(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, argument
143 bdcpy(((tBTA_PAN_DATA_PARAMS *)p_buf)->dst, dst);
173 void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, argument
179 bdcpy(((tBTA_PAN_DATA_PARAMS *)p_buf)->dst, dst);
201 BT_HDR * bta_pan_ci_readbuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16* p_protocol, argument
214 bdcpy(dst,((tBTA_PAN_DATA_PARAMS *)p_buf)->dst);
277 void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT1 argument
287 bta_pan_ci_readbuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16 *p_protocol, BOOLEAN* p_ext, BOOLEAN* p_forward) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring.cc32 AccessibilityFocusRing dst; local
34 dst.points[i] = gfx::Point(
38 return dst;
/external/chromium_org/chrome/browser/ui/views/
H A Dcolor_chooser_dialog.cc83 void ColorChooserDialog::CopyCustomColors(COLORREF* src, COLORREF* dst) { argument
84 memcpy(dst, src, sizeof(COLORREF) * arraysize(g_custom_colors));
/external/chromium_org/chromecast/media/cma/ipc/
H A Dmedia_message.cc154 bool MediaMessage::ReadBuffer(void* dst, size_t size) { argument
169 memcpy(dst, rd_ptr, size);
/external/chromium_org/media/formats/webm/
H A Dwebm_audio_client.cc115 double* dst = NULL; local
119 dst = &samples_per_second_;
122 dst = &output_samples_per_second_;
131 if (*dst != -1) {
133 << " specified (" << *dst << " and " << val << ")";
137 *dst = val;
H A Dwebm_video_client.cc104 int64* dst = NULL; local
108 dst = &pixel_width_;
111 dst = &pixel_height_;
114 dst = &crop_top_;
117 dst = &crop_bottom_;
120 dst = &crop_left_;
123 dst = &crop_right_;
126 dst = &display_width_;
129 dst = &display_height_;
132 dst
[all...]
/external/chromium_org/native_client_sdk/src/examples/demo/flock/
H A Dsprite.cc84 uint32_t dst = *dest_scanline; local
85 *dest_scanline++ = Blend(dst, src);
/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dstringpool.c54 char* dst; local
65 dst = &pool->current->strings[pool->index];
66 strcpy(dst, src);
68 return dst;
/external/chromium_org/third_party/boringssl/src/crypto/buf/
H A Dbuf.c194 size_t BUF_strlcpy(char *dst, const char *src, size_t dst_size) { argument
198 *dst++ = *src++;
203 *dst = 0;
209 size_t BUF_strlcat(char *dst, const char *src, size_t dst_size) { argument
211 for (; dst_size > 0 && *dst; dst_size--, dst++) {
214 return l + BUF_strlcpy(dst, src, dst_size);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dbit_reader.h34 #define UNALIGNED_COPY64(dst, src) memcpy(dst, src, 8)
103 uint8_t* dst = br->buf_ptr_; local
104 int bytes_read = BrotliRead(br->input_, dst, BROTLI_READ_SIZE);
112 *(uint64_t*)(dst + bytes_read) = 0;
113 *(uint64_t*)(dst + bytes_read + 8) = 0;
114 *(uint64_t*)(dst + bytes_read + 16) = 0;
115 *(uint64_t*)(dst + bytes_read + 24) = 0;
117 memset(dst + bytes_read, 0, 32);
120 if (dst
[all...]
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dsubsetsequence.cc195 // Extract representative pattern of exactly N values into dst[0..n-1]
198 void SubsetSequence::Extract(int to_n, uint8* dst) { argument
209 dst[i] = seq_[j];
237 dst[i] = seq_[i];
249 dst[j] = Median3(i);
251 dst[j] = seq_[i];
/external/chromium_org/third_party/hwcplus/src/
H A Dhwcplus_util.c24 size_t strlcpy(char* dst, const char* src, size_t siz) { argument
25 char* d = dst;
37 /* Not enough room in dst, add NUL and traverse rest of src */
40 *d = '\0'; /* NUL-terminate dst */
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dustr.c80 ustr_cpy(struct UString *dst, argument
84 if(U_FAILURE(*status) || dst == src)
87 if(dst->fCapacity < src->fLength) {
88 ustr_resize(dst, ALLOCATION(src->fLength), status);
92 if(src->fChars == NULL || dst->fChars == NULL){
95 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
96 dst->fLength = src->fLength;
97 dst->fChars[dst->fLength] = 0x0000;
119 ustr_cat(struct UString *dst, argument
127 ustr_ncat(struct UString *dst, const struct UString *src, int32_t n, UErrorCode *status) argument
148 ustr_ucat(struct UString *dst, UChar c, UErrorCode *status) argument
167 ustr_u32cat(struct UString *dst, UChar32 c, UErrorCode *status) argument
180 ustr_uscat(struct UString *dst, const UChar* src,int len, UErrorCode *status) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Ddbgutil.cpp138 udbg_escape(const UnicodeString &src, UnicodeString *dst) argument
140 dst->remove();
144 *dst += UnicodeString("[");
145 ICU_Utility::escapeUnprintable(*dst, c);
146 *dst += UnicodeString("]");
149 *dst += c;
153 return dst;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Didct8x8_test.cc115 uint8_t dst[64], src[64]; local
119 dst[j] = rnd.Rand8();
123 input[j] = src[j] - dst[j];
128 vp9_idct8x8_64_add_c(coeff, dst, 8);
130 const int diff = dst[j] - src[j];
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Drotate_argb.cc46 uint8* dst, int dst_stride,
54 IS_ALIGNED(dst, 16) && IS_ALIGNED(dst_stride, 16)) {
65 ScaleARGBRowDownEven(src, 0, src_pixel_step, dst, height);
66 dst += dst_stride;
72 uint8* dst, int dst_stride,
79 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
83 uint8* dst, int dst_stride,
88 dst += dst_stride * (width - 1);
90 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
94 uint8* dst, in
45 ARGBTranspose(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
71 ARGBRotate90(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
82 ARGBRotate270(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
93 ARGBRotate180(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
[all...]
H A Dscale_mips.cc25 uint8* dst, int dst_width) {
51 "sw $t8, 0(%[dst]) \n"
52 "sw $t0, 4(%[dst]) \n"
53 "sw $t1, 8(%[dst]) \n"
54 "sw $t2, 12(%[dst]) \n"
56 " addiu %[dst], %[dst], 16 \n"
67 "sb $t0, 0(%[dst]) \n"
69 " addiu %[dst], %[dst],
24 ScaleRowDown2_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
81 ScaleRowDown2Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
181 ScaleRowDown4_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
237 ScaleRowDown4Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
317 ScaleRowDown34_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
474 ScaleRowDown38_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
[all...]
/external/chromium_org/third_party/libwebp/dsp/
H A Dyuv.c75 uint8_t* dst, int len) { \
76 const uint8_t* const end = dst + (len & ~1) * XSTEP; \
77 while (dst != end) { \
78 FUNC(y[0], u[0], v[0], dst); \
79 FUNC(y[1], u[0], v[0], dst + XSTEP); \
83 dst += 2 * XSTEP; \
86 FUNC(y[0], u[0], v[0], dst); \
104 uint8_t* dst, int dst_stride,
108 func(y, u, v, dst, width);
114 dst
102 WebPSamplerProcessPlane(const uint8_t* y, int y_stride, const uint8_t* u, const uint8_t* v, int uv_stride, uint8_t* dst, int dst_stride, int width, int height, WebPSamplerRowFunc func) argument
[all...]
/external/chromium_org/third_party/libwebp/utils/
H A Drescaler.h31 int y_add, y_sub; // vertical increments (add ~= src, sub ~= dst)
32 int x_add, x_sub; // horizontal increments (add ~= src, sub ~= dst)
35 uint8_t* dst; member in struct:__anon13303
40 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst.
43 uint8_t* const dst,
/external/chromium_org/third_party/libwebp/webp/
H A Dmux_types.h79 // Allocates necessary storage for 'dst' and copies the contents of 'src'.
81 static WEBP_INLINE int WebPDataCopy(const WebPData* src, WebPData* dst) { argument
82 if (src == NULL || dst == NULL) return 0;
83 WebPDataInit(dst);
85 dst->bytes = (uint8_t*)malloc(src->size);
86 if (dst->bytes == NULL) return 0;
87 memcpy((void*)dst->bytes, src->bytes, src->size);
88 dst->size = src->size;
/external/chromium_org/third_party/libyuv/source/
H A Drotate_argb.cc46 uint8* dst, int dst_stride,
54 IS_ALIGNED(dst, 16) && IS_ALIGNED(dst_stride, 16)) {
65 ScaleARGBRowDownEven(src, 0, src_pixel_step, dst, height);
66 dst += dst_stride;
72 uint8* dst, int dst_stride,
79 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
83 uint8* dst, int dst_stride,
88 dst += dst_stride * (width - 1);
90 ARGBTranspose(src, src_stride, dst, dst_stride, width, height);
94 uint8* dst, in
45 ARGBTranspose(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
71 ARGBRotate90(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
82 ARGBRotate270(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
93 ARGBRotate180(const uint8* src, int src_stride, uint8* dst, int dst_stride, int width, int height) argument
[all...]
H A Dscale_mips.cc25 uint8* dst, int dst_width) {
51 "sw $t8, 0(%[dst]) \n"
52 "sw $t0, 4(%[dst]) \n"
53 "sw $t1, 8(%[dst]) \n"
54 "sw $t2, 12(%[dst]) \n"
56 " addiu %[dst], %[dst], 16 \n"
67 "sb $t0, 0(%[dst]) \n"
69 " addiu %[dst], %[dst],
24 ScaleRowDown2_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
81 ScaleRowDown2Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
181 ScaleRowDown4_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
237 ScaleRowDown4Box_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
317 ScaleRowDown34_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
474 ScaleRowDown38_MIPS_DSPR2(const uint8* src_ptr, ptrdiff_t src_stride, uint8* dst, int dst_width) argument
[all...]
/external/chromium_org/third_party/libyuv/unit_test/
H A Dunit_test.h58 static inline void MemRandomize(uint8* dst, int len) { argument
61 *reinterpret_cast<uint16*>(dst) = random();
62 dst += 2;
65 *dst++ = random();

Completed in 6219 milliseconds

1234567891011>>