Searched defs:dst (Results 201 - 225 of 2040) sorted by relevance

1234567891011>>

/external/chromium_org/media/webm/
H A Dwebm_video_client.cc106 int64* dst = NULL; local
110 dst = &pixel_width_;
113 dst = &pixel_height_;
116 dst = &crop_top_;
119 dst = &crop_bottom_;
122 dst = &crop_left_;
125 dst = &crop_right_;
128 dst = &display_width_;
131 dst = &display_height_;
134 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/skia/ext/
H A Dplatform_canvas.cc42 static SkPMColor MakeOpaqueXfermodeProc(SkPMColor src, SkPMColor dst) { argument
43 return dst | (0xFF << SK_A32_SHIFT);
/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/icu/source/tools/genrb/
H A Dustr.c79 ustr_cpy(struct UString *dst, argument
83 if(U_FAILURE(*status) || dst == src)
86 if(dst->fCapacity < src->fLength) {
87 ustr_resize(dst, ALLOCATION(src->fLength), status);
91 if(src->fChars == NULL || dst->fChars == NULL){
94 uprv_memcpy(dst->fChars, src->fChars, sizeof(UChar) * src->fLength);
95 dst->fLength = src->fLength;
96 dst->fChars[dst->fLength] = 0x0000;
118 ustr_cat(struct UString *dst, argument
126 ustr_ncat(struct UString *dst, const struct UString *src, int32_t n, UErrorCode *status) argument
147 ustr_ucat(struct UString *dst, UChar c, UErrorCode *status) argument
166 ustr_u32cat(struct UString *dst, UChar32 c, UErrorCode *status) argument
179 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/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
H A DVideoRenderer.java90 // Copy the bytes out of |src| and into |dst|, ignoring and overwriting
92 private void copyPlane(ByteBuffer src, ByteBuffer dst) { argument
94 dst.put(src);
95 dst.position(0).limit(dst.capacity());
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dnethelpers.cc102 const char* inet_ntop(int af, const void *src, char* dst, socklen_t size) { argument
104 return win32_inet_ntop(af, src, dst, size);
106 return ::inet_ntop(af, src, dst, size);
110 int inet_pton(int af, const char* src, void *dst) { argument
112 return win32_inet_pton(af, src, dst);
114 return ::inet_pton(af, src, dst);
/external/chromium_org/third_party/libwebp/dsp/
H A Ddec_neon.c163 static void TransformOneNEON(const int16_t *in, uint8_t *dst) { argument
275 "vld1.32 d6[0], [%[dst]], %[kBPS] \n"
276 "vld1.32 d6[1], [%[dst]], %[kBPS] \n"
277 "vld1.32 d7[0], [%[dst]], %[kBPS] \n"
278 "vld1.32 d7[1], [%[dst]], %[kBPS] \n"
280 "sub %[dst], %[dst], %[kBPS], lsl #2 \n"
301 "vst1.32 d0[0], [%[dst]], %[kBPS] \n"
302 "vst1.32 d0[1], [%[dst]], %[kBPS] \n"
303 "vst1.32 d1[0], [%[dst]],
312 TransformTwoNEON(const int16_t* in, uint8_t* dst, int do_two) 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:__anon12454
40 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst.
42 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/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.c73 copy_token(void *dst, const void *src) argument
75 memcpy(dst, src, 4);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_format_etc.c39 float *dst = dst_row + (y + j) * dst_stride / sizeof(*dst_row) + x * comps; local
44 dst[0] = ubyte_to_float(tmp[0]);
45 dst[1] = ubyte_to_float(tmp[1]);
46 dst[2] = ubyte_to_float(tmp[2]);
47 dst[3] = 1.0f;
48 dst += comps;
66 util_format_etc1_rgb8_fetch_rgba_float(float *dst, const uint8_t *src, unsigned i, unsigned j) argument
77 dst[0] = ubyte_to_float(tmp[0]);
78 dst[1] = ubyte_to_float(tmp[1]);
79 dst[
[all...]
H A Du_rect.c44 util_copy_rect(ubyte * dst, argument
73 dst += dst_x * blocksize;
75 dst += dst_y * dst_stride;
80 memcpy(dst, src, height * width);
83 memcpy(dst, src, width);
84 dst += dst_stride;
91 util_fill_rect(ubyte * dst, argument
116 dst += dst_x * blocksize;
117 dst += dst_y * dst_stride;
123 memset(dst, u
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
H A Dlp_bld_blend.c117 * @param dst dest rgba
119 * @param dst_factor dst factor computed value
120 * @param not_alpha_dependent same factors accross all channels of src/dst
136 LLVMValueRef dst,
144 /* If we are not alpha dependent we can mess with the src/dst factors */
149 return lp_build_lerp(bld, src_factor, dst, src);
151 return lp_build_lerp(bld, dst_factor, src, dst);
154 result = lp_build_add(bld, src, dst);
158 return lp_build_sub(bld, result, dst);
164 result = lp_build_add(bld, src, dst);
131 lp_build_blend(struct lp_build_context *bld, unsigned func, unsigned factor_src, unsigned factor_dst, LLVMValueRef src, LLVMValueRef dst, LLVMValueRef src_factor, LLVMValueRef dst_factor, boolean not_alpha_dependent, boolean optimise_only) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c45 void rc_constants_copy(struct rc_constant_list * dst, struct rc_constant_list * src) argument
47 dst->Constants = malloc(sizeof(struct rc_constant) * src->Count);
48 memcpy(dst->Constants, src->Constants, sizeof(struct rc_constant) * src->Count);
49 dst->Count = src->Count;
50 dst->_Reserved = src->Count;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
H A Dr300_tgsi_to_rc.c186 struct rc_dst_register * dst,
189 dst->File = translate_register_file(src->Register.File);
190 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
191 dst->WriteMask = src->Register.WriteMask;
202 struct rc_src_register * dst,
207 dst->File = translate_register_file(src->Register.File);
208 dst->Index = translate_register_index(ttr, src->Register.File, src->Register.Index);
209 dst->RelAddr = src->Register.Indirect;
210 dst->Swizzle = tgsi_util_get_full_src_register_swizzle(src, 0);
211 dst
184 transform_dstreg( struct tgsi_to_rc * ttr, struct rc_dst_register * dst, struct tgsi_full_dst_register * src) argument
200 transform_srcreg( struct tgsi_to_rc * ttr, struct rc_src_register * dst, struct tgsi_full_src_register * src) argument
233 transform_texture(struct rc_instruction * dst, struct tgsi_instruction_texture src, uint32_t *shadowSamplers) argument
273 struct rc_instruction * dst; local
[all...]
H A Dr300_vs.c184 struct ureg_dst dst; local
190 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
193 ureg_MOV(ureg, dst, imm);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_fs.c83 struct ureg_dst dst; local
90 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
92 ureg_MOV(ureg, dst, src);
H A Dsvga_state_vs.c81 struct ureg_dst dst; local
88 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_POSITION, 0);
90 ureg_MOV(ureg, dst, src);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dvg_translate.c41 VGint *dst = (VGint *)dstAddr; local
48 dst[i] = r << 24 | g << 16 | b << 8 | a;
54 VGint *dst = (VGint *)dstAddr; local
61 dst[i] = r << 24 | g << 16 | b << 8 | a;
67 VGint *dst = (VGint *)dstAddr; local
74 dst[i] = r << 24 | g << 16 | b << 8 | a;
80 VGshort *dst = (VGshort *)dstAddr; local
90 dst[i] = b | g << 5 | r << 11;
96 VGshort *dst = (VGshort *)dstAddr; local
108 dst[
114 VGshort *dst = (VGshort *)dstAddr; local
132 VGubyte *dst = (VGubyte *)dstAddr; local
143 VGint *dst = (VGint *)dstAddr; local
156 VGint *dst = (VGint *)dstAddr; local
168 VGint *dst = (VGint *)dstAddr; local
181 VGubyte *dst = (VGubyte *)dstAddr; local
191 VGubyte *dst = (VGubyte *)dstAddr; local
202 VGshort *dst = (VGshort *)dstAddr; local
219 VGshort *dst = (VGshort *)dstAddr; local
230 VGshort *dst = (VGshort *)dstAddr; local
246 VGint *dst = (VGint *)dstAddr; local
259 VGint *dst = (VGint *)dstAddr; local
278 VGint *dst = (VGint *)dstAddr; local
291 VGint *dst = (VGint *)dstAddr; local
304 VGint *dst = (VGint *)dstAddr; local
317 VGint *dst = (VGint *)dstAddr; local
330 VGint *dst = (VGint *)dstAddr; local
349 VGint *dst = (VGint *)dstAddr; local
362 VGint *dst = (VGint *)dstAddr; local
375 VGint *dst = (VGint *)dstAddr; local
390 VGint *dst = (VGint *)dstAddr; local
403 VGint *dst = (VGint *)dstAddr; local
422 VGint *dst = (VGint *)dstAddr; local
435 VGint *dst = (VGint *)dstAddr; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Dintel_pixel_read.c78 struct intel_buffer_object *dst = intel_buffer_object(pack->BufferObj); local
139 all = (width * height * src->cpp == dst->Base.Size &&
145 dst_buffer = intel_bufferobj_buffer(intel, dst,
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_wm_pass2.c230 struct brw_wm_value *dst[],
238 if (!dst[i]) {
242 dst[i] = &c->vreg[c->nr_vreg++];
245 assert(!dst[i]->resident);
248 c->pass2_grf[reg+i].value = dst[i];
251 dst[i]->resident = &c->pass2_grf[reg+i];
254 dst[i]->hw_reg = brw_vec8_grf((reg+i)*2, 0);
330 alloc_contiguous_dest(c, inst->dst, 4, insn);
336 assert(inst->dst[i]);
337 alloc_contiguous_dest(c, &inst->dst[
229 alloc_contiguous_dest(struct brw_wm_compile *c, struct brw_wm_value *dst[], GLuint nr, GLuint thisinsn) argument
[all...]
H A Dintel_pixel_read.c78 struct intel_buffer_object *dst = intel_buffer_object(pack->BufferObj); local
139 all = (width * height * src->cpp == dst->Base.Size &&
145 dst_buffer = intel_bufferobj_buffer(intel, dst,

Completed in 438 milliseconds

1234567891011>>