Searched defs:dest (Results 251 - 275 of 1267) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ppapi/cpp/trusted/
H A Dbrowser_font_trusted.cc187 bool BrowserFont_Trusted::DrawTextAt(ImageData* dest, argument
196 dest->pp_resource(),
205 dest->pp_resource(),
265 ImageData* dest,
270 return DrawTextAt(dest, BrowserFontTextRun(text), position, color,
271 Rect(dest->size()), image_data_is_opaque);
264 DrawSimpleText( ImageData* dest, const std::string& text, const Point& position, uint32_t color, bool image_data_is_opaque) const argument
/external/chromium_org/ppapi/proxy/
H A Dflash_file_resource.cc121 PP_DirEntry_Dev* dest = &(*contents)->entries[i]; local
125 dest->name = name_copy;
126 dest->is_dir = PP_FromBool(source.is_dir);
H A Dplugin_resource.h60 void SendCreate(Destination dest, const IPC::Message& msg);
67 void AttachToPendingHost(Destination dest, int pending_host_id);
71 void Post(Destination dest, const IPC::Message& msg);
100 int32_t Call(Destination dest,
116 int32_t Call(Destination dest,
134 int32_t SyncCall(Destination dest, const IPC::Message& msg);
136 int32_t SyncCall(Destination dest, const IPC::Message& msg, A* a);
138 int32_t SyncCall(Destination dest, const IPC::Message& msg, A* a, B* b);
140 int32_t SyncCall(Destination dest, const IPC::Message& msg, A* a, B* b, C* c);
143 Destination dest, cons
156 GetSender(Destination dest) argument
187 Call(Destination dest, const IPC::Message& msg, const CallbackType& callback) argument
194 Call( Destination dest, const IPC::Message& msg, const CallbackType& callback, scoped_refptr<TrackedCallback> reply_thread_hint) argument
219 SyncCall(Destination dest, const IPC::Message& msg) argument
226 SyncCall( Destination dest, const IPC::Message& msg, A* a) argument
238 SyncCall( Destination dest, const IPC::Message& msg, A* a, B* b) argument
250 SyncCall( Destination dest, const IPC::Message& msg, A* a, B* b, C* c) argument
262 SyncCall( Destination dest, const IPC::Message& msg, A* a, B* b, C* c, D* d) argument
274 SyncCall( Destination dest, const IPC::Message& msg, A* a, B* b, C* c, D* d, E* e) argument
[all...]
/external/chromium_org/remoting/host/
H A Dpairing_registry_delegate_win.cc20 bool DuplicateKeyHandle(HKEY source, base::win::RegKey* dest) { argument
33 dest->Set(reinterpret_cast<HKEY>(handle));
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_dir_url_request_job.cc48 bool FileSystemDirURLRequestJob::ReadRawData(net::IOBuffer* dest, int dest_size, argument
52 memcpy(dest->data(), data_.data(), count);
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.cpp132 size_t dest = 0; local
135 m_effects[dest++].swap(m_effects[i]);
141 m_effects.shrink(dest);
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFEImage.cpp75 AffineTransform makeMapBetweenRects(const FloatRect& source, const FloatRect& dest) argument
78 transform.translate(dest.x() - source.x(), dest.y() - source.y());
79 transform.scale(dest.width() / source.width(), dest.height() / source.height());
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DVectorMath.cpp89 DSPSplitComplex dest; local
94 dest.realp = realDestP;
95 dest.imagp = imagDestP;
97 ::zvmul(&sc1, 1, &sc2, 1, &dest, 1, framesToProcess, 1);
99 vDSP_zvmul(&sc1, 1, &sc2, 1, &dest, 1, framesToProcess, 1);
145 __m128 dest;
156 dest = _mm_##loadInstr##_ps(destP); \
157 dest = _mm_add_ps(dest, temp); \
158 _mm_##storeInstr##_ps(destP, dest); \
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/asn1/
H A Da_mbstr.c96 ASN1_STRING *dest; local
181 dest = *out;
182 if(dest->data) {
183 dest->length = 0;
184 OPENSSL_free(dest->data);
185 dest->data = NULL;
187 dest->type = str_type;
190 dest = ASN1_STRING_type_new(str_type);
191 if(!dest) {
195 *out = dest;
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/hmac/
H A Dhmac.c184 int HMAC_CTX_copy(HMAC_CTX *dest, const HMAC_CTX *src) { argument
185 if (!EVP_MD_CTX_copy(&dest->i_ctx, &src->i_ctx) ||
186 !EVP_MD_CTX_copy(&dest->o_ctx, &src->o_ctx) ||
187 !EVP_MD_CTX_copy(&dest->md_ctx, &src->md_ctx)) {
191 memcpy(dest->key, src->key, HMAC_MAX_MD_CBLOCK);
192 dest->key_length = src->key_length;
193 dest->md = src->md;
/external/chromium_org/third_party/icu/source/common/
H A Dfilterednormalizer2.cpp33 UnicodeString &dest,
37 dest.setToBogus();
38 return dest;
40 if(&dest==&src) {
42 return dest;
44 dest.remove();
45 return normalize(src, dest, USET_SPAN_SIMPLE, errorCode);
48 // Internal: No argument checking, and appends to dest.
57 UnicodeString &dest,
66 dest
32 normalize(const UnicodeString &src, UnicodeString &dest, UErrorCode &errorCode) const argument
56 normalize(const UnicodeString &src, UnicodeString &dest, USetSpanCondition spanCondition, UErrorCode &errorCode) const argument
[all...]
H A Duarrsort.c121 char *dest=array+insertionPoint*itemSize; local
123 uprv_memmove(dest+itemSize, dest, (j-insertionPoint)*itemSize);
124 uprv_memcpy(dest, pv, itemSize); /* array[insertionPoint]=v */
H A Dubidiwrt.c63 UChar *dest, int32_t destSize,
76 *dest++=*src++;
92 U16_APPEND_UNSAFE(dest, j, c);
115 *dest++=c;
146 U16_APPEND_UNSAFE(dest, j, c);
156 UChar *dest, int32_t destSize,
206 *dest++=src[j++];
236 *dest++=src[j++];
297 U16_APPEND_UNSAFE(dest, k, c);
298 dest
62 doWriteForward(const UChar *src, int32_t srcLength, UChar *dest, int32_t destSize, uint16_t options, UErrorCode *pErrorCode) argument
155 doWriteReverse(const UChar *src, int32_t srcLength, UChar *dest, int32_t destSize, uint16_t options, UErrorCode *pErrorCode) argument
312 ubidi_writeReverse(const UChar *src, int32_t srcLength, UChar *dest, int32_t destSize, uint16_t options, UErrorCode *pErrorCode) argument
353 ubidi_writeReordered(UBiDi *pBiDi, UChar *dest, int32_t destSize, uint16_t options, UErrorCode *pErrorCode) argument
[all...]
H A Dunistr_cnv.cpp215 UnicodeString::extract(char *dest, int32_t destCapacity, argument
223 if(isBogus() || destCapacity<0 || (destCapacity>0 && dest==0)) {
230 return u_terminateChars(dest, destCapacity, 0, &errorCode);
247 int32_t len=doExtract(0, length(), dest, destCapacity, cnv, errorCode);
259 char *dest, int32_t destCapacity,
265 *dest=0;
271 char *originalDest=dest;
275 destLimit=dest=0;
278 destLimit=(char*)U_MAX_PTR(dest);
282 destLimit=dest
258 doExtract(int32_t start, int32_t length, char *dest, int32_t destCapacity, UConverter *cnv, UErrorCode &errorCode) const argument
[all...]
H A Dunorm.cpp99 UChar *dest, int32_t destCapacity,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
118 UChar *dest, int32_t destCapacity,
125 if(destCapacity<0 || (dest==NULL && destCapacity>0) || src==NULL) {
134 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
163 UnicodeString destString(dest, 0, destCapacity);
165 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
172 return buffer.extract(dest, destCapacity, *pErrorCode);
178 UChar *dest, int32_
97 unorm_normalize(const UChar *src, int32_t srcLength, UNormalizationMode mode, int32_t options, UChar *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
117 _iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
177 unorm_iterate(UCharIterator *src, UBool forward, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
197 unorm_previous(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
210 unorm_next(UCharIterator *src, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UBool doNormalize, UBool *pNeededToNormalize, UErrorCode *pErrorCode) argument
225 _concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, const Normalizer2 *n2, UErrorCode *pErrorCode) argument
261 unorm_concatenate(const UChar *left, int32_t leftLength, const UChar *right, int32_t rightLength, UChar *dest, int32_t destCapacity, UNormalizationMode mode, int32_t options, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dutrans.cpp58 virtual void copy(int32_t start, int32_t limit, int32_t dest);
122 void ReplaceableGlue::copy(int32_t start, int32_t limit, int32_t dest) { argument
123 (*func->copy)(rep, start, limit, dest);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnptrans.cpp140 UChar* dest, int32_t destCapacity,
149 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
175 uprv_memcpy(dest,buffer,bufLen*U_SIZEOF_UCHAR);
178 return u_terminateUChars(dest, destCapacity, bufLen, &status);
185 UChar* dest, int32_t destCapacity,
195 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
267 uprv_memmove(dest,b1, b1Len*U_SIZEOF_UCHAR);
271 return u_terminateUChars(dest, destCapacity, b1Len, &status);
139 map(const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, UBool allowUnassigned, UParseError* , UErrorCode& status ) argument
184 process( const UChar* src, int32_t srcLength, UChar* dest, int32_t destCapacity, UBool allowUnassigned, UParseError* parseError, UErrorCode& status ) argument
/external/chromium_org/third_party/icu/source/tools/genrb/
H A Dprscmnts.cpp49 UnicodeString dest; local
52 dest = myMatcher.replaceAll(replaceText,*status);
55 return dest.extract(source, srcLen, *status);
76 UChar** dest, int32_t destCapacity,
102 return out.extract(*dest, destCapacity,*status);
113 UChar** dest, int32_t destCapacity,
129 int32_t destLen = stringArray[0].extract(*dest, destCapacity, *status);
130 return trim(*dest, destLen, status);
173 UChar** dest, int32_t destCapacity,
202 return out.extract(*dest, destCapacit
75 getText(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UnicodeString patternString, UErrorCode* status) argument
112 getDescription( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
172 getAt(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, int32_t index, UParseCommentsOption option, UErrorCode* status) argument
213 getTranslate( const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
223 getNote(const UChar* source, int32_t srcLen, UChar** dest, int32_t destCapacity, UErrorCode* status) argument
[all...]
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Duparse.c183 * store them as a UTF-32 string in dest[destCapacity]
188 uint32_t *dest, int32_t destCapacity,
197 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) {
218 dest[count++]=value;
230 * store them as a string in dest[destCapacity]
236 UChar *dest, int32_t destCapacity,
246 if(s==NULL || destCapacity<0 || (destCapacity>0 && dest==NULL)) {
260 dest[destLength]=0;
284 U16_APPEND_UNSAFE(dest, destLength, value);
364 u_parseUTF8(const char *source, int32_t sLen, char *dest, int32_ argument
187 u_parseCodePoints(const char *s, uint32_t *dest, int32_t destCapacity, UErrorCode *pErrorCode) argument
235 u_parseString(const char *s, UChar *dest, int32_t destCapacity, uint32_t *pFirst, UErrorCode *pErrorCode) argument
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Dwrppm.c94 ppm_dest_ptr dest = (ppm_dest_ptr) dinfo; local
96 (void) JFWRITE(dest->pub.output_file, dest->iobuffer, dest->buffer_width);
109 ppm_dest_ptr dest = (ppm_dest_ptr) dinfo; local
114 ptr = dest->pub.buffer[0];
115 bufferptr = dest->iobuffer;
116 for (col = dest->samples_per_row; col > 0; col--) {
119 (void) JFWRITE(dest->pub.output_file, dest
132 ppm_dest_ptr dest = (ppm_dest_ptr) dinfo; local
157 ppm_dest_ptr dest = (ppm_dest_ptr) dinfo; local
179 ppm_dest_ptr dest = (ppm_dest_ptr) dinfo; local
222 ppm_dest_ptr dest; local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dconvert_jpeg.cc38 I420Buffers* dest = (I420Buffers*)(opaque); local
42 dest->y, dest->y_stride,
43 dest->u, dest->u_stride,
44 dest->v, dest->v_stride,
45 dest->w, rows);
46 dest->y += rows * dest
56 I420Buffers* dest = (I420Buffers*)(opaque); local
74 I420Buffers* dest = (I420Buffers*)(opaque); local
92 I420Buffers* dest = (I420Buffers*)(opaque); local
110 I420Buffers* dest = (I420Buffers*)(opaque); local
236 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
250 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
264 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
278 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
292 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/
H A Dvp9_idct_intrin_sse2.h111 #define RECON_AND_STORE(dest, in_x) \
113 __m128i d0 = _mm_loadl_epi64((__m128i *)(dest)); \
117 _mm_storel_epi64((__m128i *)(dest), d0); \
118 dest += stride; \
121 static INLINE void write_buffer_8x16(uint8_t *dest, __m128i *in, int stride) { argument
159 RECON_AND_STORE(dest, in[0]);
160 RECON_AND_STORE(dest, in[1]);
161 RECON_AND_STORE(dest, in[2]);
162 RECON_AND_STORE(dest, in[3]);
163 RECON_AND_STORE(dest, i
[all...]
/external/chromium_org/third_party/libyuv/source/
H A Dconvert_jpeg.cc38 I420Buffers* dest = (I420Buffers*)(opaque); local
42 dest->y, dest->y_stride,
43 dest->u, dest->u_stride,
44 dest->v, dest->v_stride,
45 dest->w, rows);
46 dest->y += rows * dest
56 I420Buffers* dest = (I420Buffers*)(opaque); local
74 I420Buffers* dest = (I420Buffers*)(opaque); local
92 I420Buffers* dest = (I420Buffers*)(opaque); local
110 I420Buffers* dest = (I420Buffers*)(opaque); local
236 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
250 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
264 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
278 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
292 ARGBBuffers* dest = (ARGBBuffers*)(opaque); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_string.h156 util_memmove(void *dest, const void *src, size_t n) argument
158 char *p = (char *)dest;
160 if (dest < src) {
171 return dest;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpbo.c239 GLvoid *dest)
252 buf = ADD_POINTERS(buf, dest);
256 buf = dest;
237 _mesa_map_pbo_dest(struct gl_context *ctx, const struct gl_pixelstore_attrib *pack, GLvoid *dest) argument

Completed in 1053 milliseconds

<<11121314151617181920>>