HomeSort by relevance Sort by last modified time
    Searched defs:dst (Results 101 - 125 of 928) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/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/chromium_org/third_party/leveldatabase/src/db/
dbformat.cc 106 std::string* dst) const {
114 user_policy_->CreateFilter(keys, n, dst);
124 char* dst; local
126 dst = space_;
128 dst = new char[needed];
130 start_ = dst;
131 dst = EncodeVarint32(dst, usize + 8);
132 kstart_ = dst;
133 memcpy(dst, user_key.data(), usize)
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
idct8x8_test.cc 115 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/libwebp/utils/
rescaler.h 31 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:__anon17928
40 // Initialize a rescaler given scratch area 'work' and dimensions of src & dst.
43 uint8_t* const dst,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_blend_soa.c 90 LLVMValueRef dst[4]; member in struct:lp_build_blend_soa_context
102 * Indexes are: factor[src,dst][color,term][r,g,b,a]
108 * Indexes are: term[src,dst][r,g,b,a]
133 return bld->dst[i];
135 return bld->dst[3];
141 bld->inv_dst[3] = lp_build_comp(&bld->base, bld->dst[3]);
170 bld->inv_dst[i] = lp_build_comp(&bld->base, bld->dst[i]);
174 bld->inv_dst[3] = lp_build_comp(&bld->base, bld->dst[3]);
203 * \param dst dst/framebuffer colo
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_draw_arrays.c 51 struct pipe_resource *dst = NULL; local
54 dst = pipe_buffer_create( pipe->screen,
58 if (dst == NULL)
61 dst_map = pipe_buffer_map( pipe, dst, PIPE_TRANSFER_WRITE,
71 *out_buf = dst;
78 if (dst)
79 pipe->screen->resource_destroy( pipe->screen, dst );
svga_draw_elements.c 54 struct pipe_resource *dst = NULL; local
57 dst = pipe_buffer_create( pipe->screen,
61 if (dst == NULL)
68 dst_map = pipe_buffer_map( pipe, dst, PIPE_TRANSFER_WRITE, &dst_transfer );
79 *out_buf = dst;
89 if (dst)
90 pipe->screen->resource_destroy( pipe->screen, dst );
svga_state_fs.c 83 struct ureg_dst dst; local
90 dst = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
92 ureg_MOV(ureg, dst, src);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_path.c 126 struct path *src, *dst; local
133 dst = handle_to_path(dstPath);
136 !(path_capabilities(dst) & VG_PATH_CAPABILITY_APPEND_TO)) {
140 path_append_path(dst, src);
224 struct path *src = 0, *dst = 0; local
231 dst = handle_to_path(dstPath);
234 !(path_capabilities(dst) & VG_PATH_CAPABILITY_TRANSFORM_TO)) {
238 path_transform(dst, src);
247 struct path *start = 0, *dst = 0, *end = 0; local
255 dst = handle_to_path(dstPath)
457 struct path *dst = path_create(VG_PATH_DATATYPE_F, 1.0, 0, local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
t_dd_vb.c 54 GLuint *dst = (GLuint *)(verts + (edst * size)); local
56 dst[4] = src[4];
57 dst[5] = src[5];
65 GLuint *dst = (GLuint *)(verts + (edst * size)); local
67 dst[4] = src[4];
75 GLuint *dst = (GLuint *)(verts + (edst * size)); local
77 dst[3] = src[3];
83 SWvertex *dst)
92 dst->attrib[FRAG_ATTRIB_WPOS][0] = s[0] * src->v.x + s[12];
93 dst->attrib[FRAG_ATTRIB_WPOS][1] = s[5] * src->v.y + s[13]
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_exec_draw.c 80 GLfloat *dst = exec->vtx.copied.buffer; local
92 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
97 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
102 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
109 memcpy( dst, src+(nr-1)*sz, sz * sizeof(GLfloat) );
119 memcpy( dst, src+0, sz * sizeof(GLfloat) );
123 memcpy( dst, src+0, sz * sizeof(GLfloat) );
124 memcpy( dst+sz, src+(nr-1)*sz, sz * sizeof(GLfloat) );
146 memcpy( dst+i*sz, src+(nr-ovf+i)*sz, sz * sizeof(GLfloat) );
  /external/chromium_org/third_party/skia/experimental/PdfViewer/
chop_transparency_main.cpp 67 SkBitmap dst; local
68 setup_bitmap(&dst, size.width(), size.height());
70 for (int y = 0 ; y < dst.height(); y++) {
71 for (int x = 0 ; x < dst.width(); x++) {
88 *dst.getAddr32(x, y) = color;
92 return SkImageEncoder::EncodeFile(outName, dst, SkImageEncoder::kPNG_Type, 100);
  /external/chromium_org/third_party/skia/samplecode/
SampleCamera.cpp 37 SkRect dst = { -150, -150, 150, 150 }; local
39 matrix.setRectToRect(src, dst, SkMatrix::kFill_ScaleToFit);
SamplePolyToPoly.cpp 16 extern bool SkSetPoly3To3(SkMatrix* matrix, const SkPoint src[3], const SkPoint dst[3]);
26 SkPoint dst[] = { { 0, 0 }, local
31 (void) m1.setPolyToPoly(src, dst, 3);
34 m2.set(SkMatrix::kMScaleX, dst[1].fX - dst[0].fX);
35 m2.set(SkMatrix::kMSkewX, dst[2].fX - dst[0].fX);
36 m2.set(SkMatrix::kMTransX, dst[0].fX);
37 m2.set(SkMatrix::kMSkewY, dst[1].fY - dst[0].fY)
59 const SkPoint dst[] = { local
88 SkPoint src[4], dst[4]; local
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkOperandIterpolator.cpp 53 SkOperand* dst = &fValues[fElemCount * index]; local
54 memcpy(dst, values, fElemCount * sizeof(SkOperand));
  /external/chromium_org/third_party/skia/src/core/
SkBlitBWMaskTemplate.h 21 SK_BLITBWMASK_BLIT8 name of function(U8CPU byteMask, SK_BLITBWMASK_DEVTYPE* dst, int x, int y)
47 SK_BLITBWMASK_DEVTYPE* dst = device; local
51 SK_BLITBWMASK_BLIT8(mask, dst);
52 dst += 8;
98 SK_BLITBWMASK_DEVTYPE* dst = device; local
103 SK_BLITBWMASK_BLIT8(mask, dst);
104 dst += 8;
109 SK_BLITBWMASK_BLIT8(mask, dst);
110 dst += 8;
114 SK_BLITBWMASK_BLIT8(mask, dst);
    [all...]
SkDataTable.cpp 162 void* dst = fHeap->alloc(size, SkChunkAlloc::kThrow_AllocFailType); local
163 memcpy(dst, src, size);
166 dir->fPtr = dst;
SkMaskGamma.cpp 80 //Guess at the dst. The perceptual inverse provides smaller visual
84 const float dst = 1.0f - src; local
85 const float linDst = dstConvert.toLuma(dstGamma, dst);
90 //Remove discontinuity and instability when src is close to dst.
92 if (fabs(src - dst) < (1.0f / 256.0f)) {
118 float result = (out - dst) / (src - dst);
SkSpriteBlitterTemplate.h 22 SkSPRITE_DST_TYPE* SK_RESTRICT dst =fDevice->SkSPRITE_DST_GETADDR(x, y); local
34 SkSPRITE_DST_TYPE* d = dst;
50 dst = (SkSPRITE_DST_TYPE* SK_RESTRICT)((char*)dst + dstRB);
  /external/chromium_org/third_party/skia/src/effects/
Sk2DPathEffect.cpp 20 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src,
32 this->begin(ir, dst);
40 this->nextSpan(rect.fLeft, y, rect.width(), dst);
44 this->end(dst);
55 SkPoint src, dst; local
59 mat.mapPoints(&dst, &src, 1);
60 this->next(dst, x++, y, path);
65 void Sk2DPathEffect::begin(const SkIRect& uvBounds, SkPath* dst) const {}
66 void Sk2DPathEffect::next(const SkPoint& loc, int u, int v, SkPath* dst) const {}
67 void Sk2DPathEffect::end(SkPath* dst) const {
    [all...]
SkTileImageFilter.cpp 29 SkBitmap* dst, SkIPoint* offset) const {
80 *dst = device->accessBitmap(false);
87 SkIRect* dst) const {
93 *dst = srcIRect;
108 SkRect src, dst; local
110 buffer.readRect(&dst);
111 return Create(src, dst, common.getInput(0), common.uniqueID());
  /external/chromium_org/third_party/skia/src/gpu/
GrOptDrawState.cpp 73 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially covered.
78 // SA dst coeff becomes 1-(1-SA)*coverage when dst is partially covered.
145 GrVertexAttrib* dst = fOptVA.get(); local
159 memcpy(dst, src, sizeof(GrVertexAttrib));
161 ++dst;
SkGrPixelRef.cpp 84 GrTexture* dst = context->createUncachedTexture(desc, NULL, 0); local
85 if (NULL == dst) {
89 context->copyTexture(texture, dst->asRenderTarget(), topLeft);
97 SkGrPixelRef* pixelRef = SkNEW_ARGS(SkGrPixelRef, (info, dst));
98 SkSafeUnref(dst);
163 bool SkGrPixelRef::onReadPixels(SkBitmap* dst, const SkIRect* subset) {
176 if(!SkBitmapCache::Find(this->getGenerationID(), bounds, dst)) {
203 dst->swap(cachedBitmap);
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_wbmp.cpp 75 static void expand_bits_to_bytes(uint8_t dst[], const uint8_t src[], int bits)
81 dst[0] = (mask >> 7) & 1;
82 dst[1] = (mask >> 6) & 1;
83 dst[2] = (mask >> 5) & 1;
84 dst[3] = (mask >> 4) & 1;
85 dst[4] = (mask >> 3) & 1;
86 dst[5] = (mask >> 2) & 1;
87 dst[6] = (mask >> 1) & 1;
88 dst[7] = (mask >> 0) & 1;
89 dst += 8
131 uint8_t* dst = decodedBitmap->getAddr8(0, 0); local
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkFrontBufferedStream.cpp 49 // dst, if non-NULL. Updates fOffset. Assumes that fOffset is less
51 size_t readFromBuffer(char* dst, size_t size);
53 // Buffer up to size bytes from the stream, and copy to dst if non-
56 size_t bufferAndWriteTo(char* dst, size_t size);
58 // Read up to size bytes directly from the stream and into dst if non-
61 size_t readDirectlyFromStream(char* dst, size_t size);
101 size_t FrontBufferedStream::readFromBuffer(char* dst, size_t size) {
107 if (dst != NULL) {
108 memcpy(dst, fBuffer + fOffset, bytesToCopy);
119 size_t FrontBufferedStream::bufferAndWriteTo(char* dst, size_t size)
159 char* dst = reinterpret_cast<char*>(voidDst); local
    [all...]

Completed in 609 milliseconds

1 2 3 45 6 7 8 91011>>