Searched defs:transform (Results 1 - 25 of 452) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/webp/src/dec/
H A Dvp8l.c648 VP8LTransform* const transform = &dec->transforms_[n]; local
649 VP8LInverseTransform(transform, start_row, end_row, rows_in, rows_out);
661 VP8LTransform* const transform = &dec->transforms_[0]; local
663 assert(transform->type_ == COLOR_INDEXING_TRANSFORM);
664 VP8LColorIndexInverseTransformAlpha(transform, start_row, end_row, rows_in,
711 // transform (color indexing), and trivial non-green literals.
942 static void ClearTransform(VP8LTransform* const transform) { argument
943 WebPSafeFree(transform->data_);
944 transform->data_ = NULL;
949 static int ExpandColorMap(int num_colors, VP8LTransform* const transform) { argument
977 VP8LTransform* transform = &dec->transforms_[dec->next_transform_]; local
[all...]
/external/webp/src/dsp/
H A Dlossless.c729 static void PredictorInverseTransform(const VP8LTransform* const transform, argument
731 const int width = transform->xsize_;
746 const int tile_width = 1 << transform->bits_;
749 const int tiles_per_row = VP8LSubSampleSize(width, transform->bits_);
751 transform->data_ + (y >> transform->bits_) * tiles_per_row;
797 // Add green to blue and red channels (i.e. perform the inverse transform of
940 // Do a binary search to find the optimal green_to_red color transform.
1143 // Color space inverse transform.
1144 static void ColorSpaceInverseTransform(const VP8LTransform* const transform, argument
[all...]
/external/stlport/stlport/stl/
H A D_algo.h167 // transform
170 transform(_InputIter __first, _InputIter __last, _OutputIter __result, _UnaryOperation __opr) { function
178 transform(_InputIter1 __first1, _InputIter1 __last1, function
H A D_collate.h55 string_type transform(const char* __low, const char* __high) const { function in class:collate
91 string_type transform(const wchar_t* __low, const wchar_t* __high) const { function in class:collate
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c1921 EAS_U16 transform; local
1952 if ((result = EAS_HWGetWord(pDLSData->hwInstData, pDLSData->fileHandle, &transform, EAS_FALSE)) != EAS_SUCCESS)
/external/skia/src/core/
H A DSkPath.cpp1621 this->transform(matrix, dst);
1652 void SkPath::transform(const SkMatrix& matrix, SkPath* dst) const { function in class:SkPath
H A DSkRRect.cpp316 bool SkRRect::transform(const SkMatrix& matrix, SkRRect* dst) const { function in class:SkRRect
331 // If transform supported 90 degree rotations (which it could), we could
/external/skia/src/device/xps/
H A DSkXPSDevice.cpp292 "Could not create geometry to physical transform.");
294 "Could not set transform on scale canvas.");
487 const SkMatrix& transform) {
489 transform.mapXY(start.fX, start.fY, &startTransformed);
491 transform.mapXY(end.fX, end.fY, &endTransformed);
509 transform.mapXY(stop.fX, stop.fY, &stopTransformed);
535 "Could not create transform.");
815 "Could not set transform for image brush.");
872 "Could not set transform on linear gradient brush.");
949 "Could not set transform o
485 transform_offsets(SkScalar* stopOffsets, const int numOffsets, const SkPoint& start, const SkPoint& end, const SkMatrix& transform) argument
1978 SkMatrix transform = matrix; local
2097 AddGlyphs(const SkDraw& d, IXpsOMObjectFactory* xpsFactory, IXpsOMCanvas* canvas, TypefaceUse* font, LPCWSTR text, XPS_GLYPH_INDEX* xpsGlyphs, UINT32 xpsGlyphsLen, XPS_POINT *origin, FLOAT fontSize, XPS_STYLE_SIMULATION sims, const SkMatrix& transform, const SkPaint& paint) argument
[all...]
/external/skia/src/effects/
H A DSkLightingImageFilter.cpp528 virtual SkLight* transform(const SkMatrix& matrix) const = 0;
595 virtual SkLight* transform(const SkMatrix& matrix) const { function in class:SkDistantLight
641 virtual SkLight* transform(const SkMatrix& matrix) const { function in class:SkPointLight
685 virtual SkLight* transform(const SkMatrix& matrix) const { function in class:SkSpotLight
967 SkAutoTUnref<SkLight> transformedLight(light()->transform(ctx.ctm()));
1062 SkAutoTUnref<SkLight> transformedLight(light()->transform(ctx.ctm()));
1371 SkAutoTUnref<SkLight> transformedLight(lighting.light()->transform(lighting.filterMatrix()));
H A DSkMatrixImageFilter.cpp18 SkMatrixImageFilter::SkMatrixImageFilter(const SkMatrix& transform, argument
22 fTransform(transform),
26 SkMatrixImageFilter* SkMatrixImageFilter::Create(const SkMatrix& transform, argument
29 return SkNEW_ARGS(SkMatrixImageFilter, (transform, filterLevel, input));
/external/skia/src/gpu/
H A DGrEffect.cpp86 void GrEffect::addCoordTransform(const GrCoordTransform* transform) { argument
87 fCoordTransforms.push_back(transform);
88 SkDEBUGCODE(transform->setInEffect();)
/external/skia/src/gpu/gl/
H A DGrGLProgramEffects.cpp32 * The key for an individual coord transform is made up of a matrix type and a bit that
72 * Retrieves the matrix type from transformKey for the transform at transformIdx.
80 * Retrieves the source coords from transformKey for the transform at transformIdx. It may not be
91 * Retrieves the final translation that a transform needs to apply to its source coords (and
115 * Retrieves the final matrix that a transform needs to apply to its source coords.
190 SkASSERT(0 == (totalKey & key)); // keys for each transform ought not to overlap
561 const SkMatrix& transform = get_transform_matrix(drawEffect, t); local
564 transform);
568 const SkMatrix& transform = get_transform_matrix(drawEffect, t); local
571 transform);
[all...]
/external/skia/src/pdf/
H A DSkPDFDevice.cpp391 static bool get_clip_stack_path(const SkMatrix& transform, argument
410 entryPath.transform(transform);
457 SkMatrix transform; local
458 transform.setTranslate(translation.fX, translation.fY);
462 if (get_clip_stack_path(transform, clipStack, clipRegion, &clipPath)) {
502 transform.mapRect(&translatedClip, clipEntry->getRect());
509 translatedPath.transform(transform, &translatedPath);
715 // This shouldn't happen, initial transform shoul
1095 SkMatrix transform = matrix; local
1632 SkMatrix transform = matrix; local
1698 SkMatrix transform = matrix; local
2048 SkMatrix transform = matrix; local
[all...]
/external/skia/src/ports/
H A DSkFontHost_mac.cpp700 * CT vertical metrics are pre-rotated (in em space, before transform) 90deg clock-wise.
736 CGAffineTransform transform = MatrixToCGAffineTransform(fFUnitMatrix); local
753 fCTFont = CTFontCreateCopyWithAttributes(ctFont, 1, &transform, ctFontDesc);
757 transform = CGAffineTransformConcat(rotateLeft, transform);
758 fCTVerticalFont = CTFontCreateCopyWithAttributes(ctFont, 1, &transform, NULL);
1357 path->transform(m);
/external/skia/src/sfnt/
H A DSkOTTable_glyf.h201 } transform; member in struct:SkOTTableGlyphData::Composite::Component
/external/skia/src/utils/
H A DSkCamera.cpp76 void SkPatch3D::transform(const SkMatrix3D& m, SkPatch3D* dst) const { function in class:SkPatch3D
354 patch.transform(fRec->fMatrix);
361 patch.transform(fRec->fMatrix);
H A DSkMD5.cpp16 static void transform(uint32_t state[4], const uint8_t block[64]);
43 transform(this->state, this->buffer);
50 transform(this->state, &input[inputIndex]);
120 static void transform(uint32_t state[4], const uint8_t block[64]) { function
H A DSkSHA1.cpp16 static void transform(uint32_t state[5], const uint8_t block[64]);
41 transform(this->state, this->buffer);
48 transform(this->state, &input[inputIndex]);
123 static void transform(uint32_t state[5], const uint8_t block[64]) { function
/external/skia/experimental/AndroidPathRenderer/
H A DAndroidPathRenderer.cpp49 inline void computeInverseScales(const SkMatrix* transform, float &inverseScaleX, float& inverseScaleY) { argument
50 if (transform && transform->getType() & (SkMatrix::kScale_Mask|SkMatrix::kAffine_Mask|SkMatrix::kPerspective_Mask)) {
51 float m00 = transform->getScaleX();
52 float m01 = transform->getSkewY();
53 float m10 = transform->getSkewX();
54 float m11 = transform->getScaleY();
524 const SkMatrix* transform, VertexBuffer* vertexBuffer) {
529 computeInverseScales(transform, inverseScaleX, inverseScaleY);
523 ConvexPathVertices(const SkPath &path, const SkStrokeRec& stroke, bool isAA, const SkMatrix* transform, VertexBuffer* vertexBuffer) argument
/external/skia/experimental/Intersection/
H A DConvexHull_Test.cpp106 static void transform(const Cubic& cubic, const Matrix3x2& matrix, Cubic& rotPath) { function
144 transform(cubic, matrix, rotPath);
/external/skia/include/core/
H A DSkPath.h769 void transform(const SkMatrix& matrix, SkPath* dst) const;
775 void transform(const SkMatrix& matrix) { function in class:SkPath
776 this->transform(matrix, this);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jar ... mockito/cglib/proxy/ org/mockito/cglib/reflect/ org/mockito/cglib/transform/ org/mockito/cglib/transform/impl/ org/mockito/cglib/util/ org ...

Completed in 2237 milliseconds

1234567891011>>