HomeSort by relevance Sort by last modified time
    Searched refs:dst (Results 451 - 475 of 1855) sorted by null

<<11121314151617181920>>

  /external/blktrace/
stats.h 56 static inline void minmax_merge(struct minmax *dst, struct minmax *src)
58 dst->sum += src->sum;
59 dst->sos += src->sos;
60 if (src->min < dst->min)
61 dst->min = src->min;
62 if (src->max > dst->max)
63 dst->max = src->max;
64 dst->num += src->num;
123 static inline void histlog2_merge(struct histlog2 *h, __u32 *dst, __u32 *src)
128 dst[i] += src[i]
    [all...]
  /external/icu4c/i18n/
wintzimpl.cpp 41 AnnualTimeZoneRule *std = NULL, *dst = NULL; local
43 btz->getSimpleRulesNear(uprv_getUTCtime(), initial, std, dst, status); local
45 if (std == NULL || dst == NULL) {
49 // Do not use DST. Set 0 to all stadardDate/daylightDate fields
56 U_ASSERT(dst->getRule()->getDateRuleType() == DateTimeRule::DOW);
60 daylightBias = -1 * (dst->getDSTSavings()/60000);
85 daylightDate.wMonth = dst->getRule()->getRuleMonth() + 1;
86 daylightDate.wDay = dst->getRule()->getRuleWeekInMonth();
90 daylightDate.wDayOfWeek = dst->getRule()->getRuleDayOfWeek() - 1;
92 mil = dst->getRule()->getRuleMillisInDay()
    [all...]
  /external/qemu/audio/
mixeng_template.h 112 (struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol)
114 struct st_sample *out = dst;
118 mixeng_clear (dst, samples);
132 (struct st_sample *dst, const void *src, int samples, struct mixeng_volume *vol)
134 struct st_sample *out = dst;
138 mixeng_clear (dst, samples);
153 (void *dst, const struct st_sample *src, int samples)
156 IN_T *out = (IN_T *) dst;
165 (void *dst, const struct st_sample *src, int samples)
168 IN_T *out = (IN_T *) dst;
    [all...]
  /external/skia/gpu/src/
GrAtlas.cpp 106 uint8_t* dst = (uint8_t*)storage.realloc(dstH * dstRB); local
107 Gr_bzero(dst, dstRB); // zero top row
108 dst += dstRB;
110 dst = zerofill(dst, bpp); // zero left edge
111 memcpy(dst, image, width * bpp);
112 dst += width * bpp;
113 dst = zerofill(dst, bpp); // zero right edge
116 Gr_bzero(dst, dstRB); // zero bottom ro
    [all...]
GrMatrix.cpp 238 void GrMatrix::mapRect(GrRect* dst, const GrRect& src) const {
245 dst->setBounds(dstPts, 4);
366 void GrMatrix::mapIdentity(GrPoint* dst, const GrPoint* src, uint32_t count) const {
367 if (src != dst) {
369 dst[i] = src[i];
374 void GrMatrix::mapScale(GrPoint* dst, const GrPoint* src, uint32_t count) const {
376 dst[i].fX = GrMul(src[i].fX, fM[kScaleX]);
377 dst[i].fY = GrMul(src[i].fY, fM[kScaleY]);
382 void GrMatrix::mapTranslate(GrPoint* dst, const GrPoint* src, uint32_t count) const {
384 dst[i].fX = src[i].fX + fM[kTransX]
    [all...]
  /external/skia/include/core/
SkScan.h 111 static inline void XRect_round(const SkXRect& xr, SkIRect* dst) {
112 dst->fLeft = SkFixedRound(xr.fLeft);
113 dst->fTop = SkFixedRound(xr.fTop);
114 dst->fRight = SkFixedRound(xr.fRight);
115 dst->fBottom = SkFixedRound(xr.fBottom);
121 static inline void XRect_roundOut(const SkXRect& xr, SkIRect* dst) {
122 dst->fLeft = SkFixedFloor(xr.fLeft);
123 dst->fTop = SkFixedFloor(xr.fTop);
124 dst->fRight = SkFixedCeil(xr.fRight);
125 dst->fBottom = SkFixedCeil(xr.fBottom)
    [all...]
  /external/skia/samplecode/
SampleStrokeText.cpp 20 static void lettersToBitmap(SkBitmap* dst, const char chars[],
53 dst->setConfig(config, w, h);
54 dst->allocPixels();
55 dst->eraseColor(SK_ColorWHITE);
57 SkCanvas canvas(*dst);
66 static void lettersToBitmap2(SkBitmap* dst, const char chars[],
93 dst->setConfig(config, w, h);
94 dst->allocPixels();
95 dst->eraseColor(SK_ColorWHITE);
97 SkCanvas canvas(*dst);
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-boost.c 37 char *dst; local
39 for (dst = src; *src != '\0'; dst++, src++)
47 *dst = '\t';
51 *dst = '\n';
55 *dst = '\r';
65 *dst = *src;
71 if (src != dst)
72 *dst = *src;
74 *dst = '\0'
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 58 dst: An optional parameter specifying the most efficient destination at
59 which to store the production's value. The callee must honor dst.
61 The dst argument provides for a crude form of copy propagation. For example,
74 because the assignment node, "x =", passes r[x] as dst to the number node, "1".
88 RegisterID* NullNode::emitBytecode(BytecodeGenerator& generator, RegisterID* dst)
90 if (dst == generator.ignoredResult())
92 return generator.emitLoad(dst, jsNull());
97 RegisterID* BooleanNode::emitBytecode(BytecodeGenerator& generator, RegisterID* dst)
99 if (dst == generator.ignoredResult())
101 return generator.emitLoad(dst, m_value)
    [all...]
  /external/libvpx/vp8/common/
reconinter.c 34 unsigned char *dst,
43 dst[0] = src[0];
44 dst[1] = src[1];
45 dst[2] = src[2];
46 dst[3] = src[3];
47 dst[4] = src[4];
48 dst[5] = src[5];
49 dst[6] = src[6];
50 dst[7] = src[7];
51 dst[8] = src[8]
    [all...]
recon.c 113 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
117 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
121 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
125 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
133 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
143 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
145 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
147 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
149 RECON_INVOKE(rtcd, recon4)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride);
154 RECON_INVOKE(rtcd, recon2)(b->predictor, b->diff, *(b->base_dst) + b->dst, b->dst_stride)
    [all...]
  /external/bison/lib/
bitset.c 385 /* DST = SRC. Return true if DST != SRC.
386 This is a fallback for the case where SRC and DST are different
389 bitset_copy_ (bitset dst, bitset src)
394 /* Convert bitset types. We assume that the DST bitset
396 bitset_zero (dst);
399 bitset_set (dst, i);
409 bitset_op4_cmp (bitset dst, bitset src1, bitset src2, bitset src3,
419 tmp = bitset_alloc (0, bitset_type_get (dst));
429 changed = bitset_and_cmp (dst, src3, tmp)
    [all...]
  /external/elfutils/libelf/
gelf_getsymshndx.c 31 gelf_getsymshndx (symdata, shndxdata, ndx, dst, dstshndx)
35 GElf_Sym *dst;
91 dst->name = src->name
115 *dst = ((GElf_Sym *) symdata->d_buf)[ndx];
122 result = dst;
  /external/openssl/crypto/asn1/
ameth_lib.c 350 void EVP_PKEY_asn1_copy(EVP_PKEY_ASN1_METHOD *dst,
354 dst->pub_decode = src->pub_decode;
355 dst->pub_encode = src->pub_encode;
356 dst->pub_cmp = src->pub_cmp;
357 dst->pub_print = src->pub_print;
359 dst->priv_decode = src->priv_decode;
360 dst->priv_encode = src->priv_encode;
361 dst->priv_print = src->priv_print;
363 dst->old_priv_encode = src->old_priv_encode;
364 dst->old_priv_decode = src->old_priv_decode
    [all...]
  /external/skia/src/effects/
SkDiscretePathEffect.cpp 36 bool SkDiscretePathEffect::filterPath(SkPath* dst, const SkPath& src,
51 meas.getSegment(0, length, dst, true); // to short for us to mangle
63 dst->moveTo(p);
68 dst->lineTo(p);
71 dst->close();
  /external/valgrind/main/VEX/priv/
host_amd64_isel.c 288 static AMD64Instr* mk_iMOVsd_RR ( HReg src, HReg dst )
291 vassert(hregClass(dst) == HRcInt64);
292 return AMD64Instr_Alu64R(Aalu_MOV, AMD64RMI_Reg(src), dst);
297 static AMD64Instr* mk_vMOVsd_RR ( HReg src, HReg dst )
300 vassert(hregClass(dst) == HRcVec128);
301 return AMD64Instr_SseReRg(Asse_MOV, src, dst);
379 instruction which computes 'e' into 'dst'. If not possible, return
383 HReg dst,
394 dst
397 return AMD64Instr_Imm64(e->Iex.Const.con->Ico.U64, dst);
765 HReg dst = newVRegV(env); local
774 HReg dst = newVRegV(env); local
785 HReg dst = generate_ones_V128(env); local
877 HReg dst = newVRegI(env); local
913 HReg dst = newVRegI(env); local
940 HReg dst = newVRegI(env); local
960 HReg dst = newVRegI(env); local
1158 HReg dst = newVRegI(env); local
1179 HReg dst = newVRegI(env); local
1197 HReg dst = newVRegI(env); local
1294 HReg dst = newVRegI(env); local
1306 HReg dst = newVRegI(env); local
1387 HReg dst = newVRegI(env); local
1402 HReg dst = newVRegI(env); local
1415 HReg dst = newVRegI(env); local
1425 HReg dst = newVRegI(env); local
1446 HReg dst = newVRegI(env); local
1461 HReg dst = newVRegI(env); local
1475 HReg dst = newVRegI(env); local
1494 HReg dst = newVRegI(env); local
1510 HReg dst = newVRegI(env); local
1520 HReg dst = newVRegI(env); local
1529 HReg dst = newVRegI(env); local
1539 HReg dst = newVRegI(env); local
1550 HReg dst = newVRegI(env); local
1562 HReg dst = newVRegI(env); local
1578 HReg dst = newVRegI(env); local
1587 HReg dst = newVRegI(env); local
1599 HReg dst = newVRegI(env); local
1616 HReg dst = newVRegI(env); local
1631 HReg dst = newVRegI(env); local
1670 HReg dst = newVRegI(env); local
1684 HReg dst = newVRegI(env); local
1694 HReg dst = newVRegI(env); local
1710 HReg dst = newVRegI(env); local
1724 HReg dst = newVRegI(env); local
1766 HReg dst = newVRegI(env); local
1785 HReg dst = newVRegI(env); local
2117 HReg dst = newVRegI(env); local
2780 HReg dst = newVRegV(env); local
2800 HReg dst = newVRegV(env); local
2811 HReg dst = newVRegV(env); local
2951 HReg dst = newVRegV(env); local
2965 HReg dst = newVRegV(env); local
2997 HReg dst = newVRegV(env); local
3046 HReg dst = newVRegV(env); local
3055 HReg dst = newVRegV(env); local
3069 HReg dst = newVRegV(env); local
3101 HReg dst = newVRegV(env); local
3136 HReg dst = newVRegV(env); local
3160 HReg r8, rX, r0, dst; local
3209 HReg dst = newVRegV(env); local
3221 HReg dst = newVRegV(env); local
3228 HReg dst = newVRegV(env); local
3280 HReg dst = newVRegV(env); local
3296 HReg dst; local
3309 HReg dst = newVRegV(env); local
3320 HReg dst = newVRegV(env); local
3337 HReg dst = newVRegV(env); local
3355 HReg dst = newVRegV(env); local
3362 HReg dst = newVRegV(env); local
3371 HReg dst = newVRegV(env); local
3389 HReg dst = newVRegV(env); local
3400 HReg dst = newVRegV(env); local
3412 HReg dst = newVRegV(env); local
3435 HReg dst = newVRegV(env); local
3455 HReg dst = newVRegV(env); local
3474 HReg dst = newVRegV(env); local
3493 HReg dst = newVRegV(env); local
3561 HReg dst = newVRegV(env); local
3585 HReg dst = newVRegV(env); local
3619 HReg dst = newVRegV(env); local
3670 HReg dst = newVRegV(env); local
3719 HReg dst = newVRegV(env); local
3882 HReg dst = lookupIRTemp(env, tmp); local
3898 HReg dst = lookupIRTemp(env, tmp); local
3912 HReg dst = lookupIRTemp(env, tmp); local
3917 HReg dst = lookupIRTemp(env, tmp); local
3923 HReg dst = lookupIRTemp(env, tmp); local
3929 HReg dst = lookupIRTemp(env, tmp); local
3961 HReg dst = lookupIRTemp(env, d->tmp); local
4071 AMD64RI* dst; local
    [all...]
host_x86_defs.c 565 X86Instr* X86Instr_Alu32R ( X86AluOp op, X86RMI* src, HReg dst ) {
570 i->Xin.Alu32R.dst = dst;
573 X86Instr* X86Instr_Alu32M ( X86AluOp op, X86RI* src, X86AMode* dst ) {
578 i->Xin.Alu32M.dst = dst;
582 X86Instr* X86Instr_Sh32 ( X86ShiftOp op, UInt src, HReg dst ) {
587 i->Xin.Sh32.dst = dst;
590 X86Instr* X86Instr_Test32 ( UInt imm32, X86RM* dst ) {
    [all...]
  /frameworks/base/include/utils/
Unicode.h 59 * Stores a UTF-8 string converted from "src" in "dst", if "dst_length" is not
61 * into "dst" as much as possible. See the examples for more detail.
63 * dst" is not null-terminated when dst_len is fully used (like strncpy).
71 * "dst" becomes \xE3\x81\x82\xE3\x81\x84\0
72 * (note that "dst" is null-terminated)
80 * "dst" becomes \xE3\x81\x82\0
81 * (note that "dst" is null-terminated, but \u3044 is not stored in "dst"
82 * since "dst" does not have enough size to store the character)
90 * "dst" becomes \xE3\x81\x82\xE3\x81\x8
    [all...]
  /frameworks/base/media/libeffects/lvm/lib/Common/src/
Core_MixInSoft_D32C31_SAT.c 31 LVM_INT32 *dst,
57 Temp2=*dst;
67 *dst++ = Temp1;
78 Temp2=*dst;
88 *dst++ = Temp1;
LVC_MixInSoft_D16C31_SAT.c 39 LVM_INT16 *dst,
66 LVC_Core_MixInSoft_D16C31_SAT( &(ptrInstance->MixerStream[0]), src, dst, n);
69 LVC_Core_MixInSoft_D16C31_SAT( &(ptrInstance->MixerStream[0]), src, dst, n);
82 Add2_Sat_16x16( src, dst, n );
87 Mac3s_Sat_16x16(src,(LVM_INT16)(pInstance->Target>>16),dst,n);
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_cursor.c 383 Uint8 *dst; local
391 dst = (Uint8 *)screen->pixels +
402 *dst = pixels8[datab>>7];
406 dst++;
409 dst += dstskip;
415 Uint16 *dst; local
418 dst = (Uint16 *)screen->pixels +
429 *dst = (Uint16)pixels[datab>>7];
433 dst++;
436 dst += dstskip
442 Uint8 *dst; local
469 Uint32 *dst; local
504 Uint8 *dst; local
607 Uint8 *src, *dst; local
685 Uint8 *src, *dst; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 291 float src[], dst[]; local
293 dst = new float[nElems];
296 dst[offset + i] = -1.0f;
305 A.copyTo(dst);
308 assertEquals(dst[offset + i], src[i]);
315 byte src[], dst[];
317 dst = new byte[nElems];
320 dst[offset + i] = -1;
329 A.copyTo(dst);
332 assertEquals(dst[offset + i], src[i])
339 short src[], dst[]; local
363 int src[], dst[]; local
428 float src[], dst[]; local
477 float src[], dst[]; local
531 short src[], dst[]; local
558 int src[], dst[]; local
586 float src[], dst[]; local
    [all...]
  /libcore/luni/src/main/java/java/nio/
ByteBuffer.java 375 * {@code get(dst, 0, dst.length)}.
377 * @param dst
381 * if {@code dst.length} is greater than {@code remaining()}.
383 public ByteBuffer get(byte[] dst) {
384 return get(dst, 0, dst.length);
392 * @param dst
396 * not greater than {@code dst.length}.
399 * greater than {@code dst.length - dstOffset
778 ByteBuffer dst = this; local
    [all...]
  /external/opencv/cv/src/
cvderiv.cpp 47 void icvSepConvSmall3_32f( float* src, int src_step, float* dst, int dst_step,
53 assert( src && dst && src_size.width > 2 && src_size.height > 2 &&
58 dst_step /= sizeof(dst[0]);
69 buffer = dst;
87 dst += dst_step,
99 dst[x] = (float)(kx[0]*buffer[x] + kx[1]*buffer[x+1] + kx[2]*buffer[x+2]);
157 ( const void* src, int srcstep, void* dst, int dststep,
161 ( const void* src, int srcstep, void* dst, int dststep,
165 ( const void* src, int srcstep, void* dst, int dststep,
170 ( const void* src, int srcstep, void* dst, int dststep
190 CvMat dststub, *dst = (CvMat*)dstarr; local
809 CvMat dststub, *dst = (CvMat*)dstarr; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/avc/enc/src/
findhalfpel.cpp 150 uint8 *dst; local
161 dst = subpel_pred;
163 dst -= 4; /* offset */
176 *((uint32*)(dst += 4)) = tmp32;
220 dst = subpel_pred + V0Q_H2Q * SUBPEL_PRED_BLK_SIZE; /* go to the 14th array 17x18*/
236 *dst++ = tmp32;
243 *dst++ = tmp32;
250 *dst++ = tmp32;
257 *dst++ = tmp32;
267 *dst = tmp32
    [all...]

Completed in 870 milliseconds

<<11121314151617181920>>