Searched defs:ctm (Results 1 - 25 of 55) sorted by path

123

/external/boringssl/src/crypto/x509/
H A Dx509_vfy.c1839 int X509_cmp_current_time(const ASN1_TIME *ctm) argument
1841 return X509_cmp_time(ctm, NULL);
1844 int X509_cmp_time(const ASN1_TIME *ctm, time_t *cmp_time) argument
1853 remaining = ctm->length;
1854 str = (char *)ctm->data;
1860 if (ctm->type == V_ASN1_UTCTIME) {
1936 atm.type = ctm->type;
1944 if (ctm->type == V_ASN1_UTCTIME) {
/external/harfbuzz_ng/util/
H A Dhelper-cairo.cc122 cairo_matrix_t ctm, font_matrix; local
125 cairo_matrix_init_identity (&ctm);
135 &ctm,
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.jdt.core_3.11.0.v20150602-1242.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...
/external/pdfium/core/fpdfapi/render/
H A Dcpdf_devicebuffer.cpp46 CFX_Matrix ctm = m_pDevice->GetCTM(); local
47 m_Matrix.Concat(CFX_Matrix(FXSYS_fabs(ctm.a), 0, 0, FXSYS_fabs(ctm.d), 0, 0));
/external/pdfium/core/fxge/ge/
H A Dcfx_renderdevice.cpp610 CFX_Matrix ctm = GetCTM(); local
611 FX_FLOAT fScaleX = FXSYS_fabs(ctm.a);
612 FX_FLOAT fScaleY = FXSYS_fabs(ctm.d);
716 CFX_Matrix ctm = GetCTM(); local
717 FX_FLOAT fScaleX = FXSYS_fabs(ctm.a);
718 FX_FLOAT fScaleY = FXSYS_fabs(ctm.d);
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
/external/skia/gm/
H A Dlightingshader.cpp99 const SkMatrix& ctm = canvas->getTotalMatrix(); local
107 ctm);
H A Dlightingshader2.cpp112 const SkMatrix& ctm = canvas->getTotalMatrix(); local
119 normalSource = SkNormalSource::MakeFromNormalMap(fNormalMapShader, ctm);
H A Dpictureshader.cpp66 SkMatrix ctm, localMatrix; variable
67 ctm.setTranslate(fSceneSize * 2.1f, fSceneSize * 13.8f);
68 ctm.preScale(-1, -1);
70 this->drawScene(canvas, ctm, localMatrix, 0);
72 ctm.setTranslate(fSceneSize * 2.4f, fSceneSize * 12.8f);
74 this->drawScene(canvas, ctm, localMatrix, 0);
76 ctm.setTranslate(fSceneSize * 4.8f, fSceneSize * 12.3f);
77 ctm.preScale(2, 2);
78 this->drawScene(canvas, ctm, localMatrix, 0);
80 ctm
91 SkMatrix ctm, localMatrix; local
[all...]
/external/skia/include/core/
H A DSkImageFilter.h55 Context(const SkMatrix& ctm, const SkIRect& clipBounds, SkImageFilterCache* cache, argument
57 : fCTM(ctm)
63 const SkMatrix& ctm() const { return fCTM; } function in class:SkImageFilter::Context
149 SkIRect filterBounds(const SkIRect& src, const SkMatrix& ctm,
/external/skia/samplecode/
H A DSampleBigGradient.cpp107 static CGAffineTransform matrix_to_transform(CGContextRef cg, const SkMatrix& ctm) { argument
111 matrix.preConcat(ctm);
140 void updateHandle(Handle hndl, const SkMatrix& ctm, const SkIRect& clip) override {
146 CGContextConcatCTM(cg, matrix_to_transform(cg, ctm));
235 void updateHandle(Handle handle, const SkMatrix& ctm, const SkIRect& clip_bounds) override {
239 xf.eM11 = ctm[SkMatrix::kMScaleX];
240 xf.eM21 = ctm[SkMatrix::kMSkewX];
241 xf.eDx = ctm[SkMatrix::kMTransX];
242 xf.eM12 = ctm[SkMatrix::kMSkewY];
243 xf.eM22 = ctm[SkMatri
[all...]
/external/skia/src/core/
H A DSkBlurImageFilter.cpp69 static SkVector map_sigma(const SkSize& localSigma, const SkMatrix& ctm) { argument
71 ctm.mapVectors(&sigma, 1);
134 const SkVector sigma = map_sigma(fSigma, ctx.ctm());
283 SkIRect SkBlurImageFilterImpl::onFilterNodeBounds(const SkIRect& src, const SkMatrix& ctm, argument
285 SkVector sigma = map_sigma(fSigma, ctm);
H A DSkCanvas.cpp1006 const SkMatrix& ctm = fMCRec->fMatrix; // this->getTotalMatrix() local
1009 clipBounds = imageFilter->filterBounds(clipBounds, ctm);
1018 ctm.mapRect(&r, *bounds);
1068 const SkMatrix& ctm) {
1080 p.setImageFilter(filter->makeWithLocalMatrix(ctm));
2242 const SkMatrix& ctm = this->getTotalMatrix(); local
2243 if (!SkTreatAsSprite(ctm, SkISize::Make(w, h), paint)) {
2253 ctm.mapXY(x, y, &pt);
2293 iter.fDevice->ctm().mapXY(x, y, &pt);
2374 iter.fDevice->ctm()
1066 DrawDeviceWithFilter(SkBaseDevice* src, const SkImageFilter* filter, SkBaseDevice* dst, const SkIPoint& dstOrigin, const SkMatrix& ctm) argument
3266 SkMatrix ctm = this->getTotalMatrix(); local
[all...]
H A DSkDevice.cpp44 void SkBaseDevice::setGlobalCTM(const SkMatrix& ctm) { argument
45 fCTM = ctm;
86 const SkMatrix& ctm = this->ctm(); local
87 bool isNonTranslate = ctm.getType() & ~(SkMatrix::kTranslate_Mask);
90 bool antiAlias = paint.isAntiAlias() && (!is_int(ctm.getTranslateX()) ||
91 !is_int(ctm.getTranslateY()));
131 SkISize lod = SkPatchUtils::GetLevelOfDetail(cubics, &this->ctm());
471 currM.setConcat(this->ctm(), localM);
H A DSkDevice.h100 void restore(const SkMatrix& ctm) { argument
102 this->setGlobalCTM(ctm);
121 const SkMatrix& ctm() const { return fCTM; } function in class:SkBaseDevice
122 void setCTM(const SkMatrix& ctm) { argument
123 fCTM = ctm;
125 void setGlobalCTM(const SkMatrix& ctm);
365 void setOrigin(const SkMatrix& ctm, int x, int y);
389 SkAutoDeviceCTMRestore(SkBaseDevice* device, const SkMatrix& ctm) argument
391 , fPrevCTM(device->ctm())
393 fDevice->setCTM(ctm);
[all...]
H A DSkDraw.cpp1392 bool SkDraw::ShouldDrawTextAsPaths(const SkPaint& paint, const SkMatrix& ctm) { argument
1399 if (ctm.hasPerspective()) {
1404 return SkPaint::TooBigToUseCache(ctm, *paint.setTextMatrix(&textM));
1769 // TODO replace INV(m) * INV(ctm) with INV(ctm * m)
1851 // rec' = {rec.ctm x localMatrix, rec.localMatrix}
1853 // (as opposed to rec' = {rec.ctm, rec.localMatrix x localMatrix})
1879 const SkMatrix& ctm, const SkPaint& paint,
1885 SkMatrix adjustedCTM = SkMatrix::Concat(ctm, this->getLocalMatrix());
H A DSkImageFilter.cpp62 const SkMatrix& ctm,
68 ctm.mapRect(&devCropR, fRect);
208 SkImageFilterCacheKey key(fUniqueID, context.ctm(), context.clipBounds(), srcGenID, srcSubset);
236 SkIRect SkImageFilter::filterBounds(const SkIRect& src, const SkMatrix& ctm, argument
239 SkIRect bounds = this->onFilterNodeBounds(src, ctm, direction);
240 return this->onFilterBounds(bounds, ctm, direction);
242 SkIRect bounds = this->onFilterBounds(src, ctm, direction);
243 bounds = this->onFilterNodeBounds(bounds, ctm, direction);
245 this->getCropRect().applyTo(bounds, ctm, this->affectsTransparentBlack(), &dst);
339 SkIRect temp = this->onFilterNodeBounds(srcBounds, ctx.ctm(), kForward_MapDirectio
61 applyTo(const SkIRect& imageBounds, const SkMatrix& ctm, bool embiggen, SkIRect* cropped) const argument
441 onFilterBounds(const SkIRect& src, const SkMatrix& ctm, MapDirection direction) const argument
[all...]
H A DSkLocalMatrixShader.cpp68 const SkMatrix& ctm,
76 return fProxyShader->onAppendStages(p, dst, scratch, ctm, paint,
65 onAppendStages(SkRasterPipeline* p, SkColorSpace* dst, SkArenaAlloc* scratch, const SkMatrix& ctm, const SkPaint& paint, const SkMatrix* localM) const argument
H A DSkMaskFilter.cpp312 const SkMatrix& ctm,
340 const SkMatrix& ctm,
310 canFilterMaskGPU(const SkRRect& devRRect, const SkIRect& clipBounds, const SkMatrix& ctm, SkRect* maskRect) const argument
338 filterMaskGPU(GrContext*, sk_sp<GrTextureProxy> srcProxy, const SkMatrix& ctm, const SkIRect& maskRect) const argument

Completed in 631 milliseconds

123