HomeSort by relevance Sort by last modified time
    Searched refs:filterMask (Results 1 - 25 of 37) sorted by null

1 2

  /packages/apps/SecureElement/src/com/android/se/security/gpac/
APDU_AR_DO.java 64 public APDU_AR_DO(ArrayList<byte[]> apduHeader, ArrayList<byte[]> filterMask) {
67 mFilterMask = filterMask;
95 * if((APDUHeader & FilterMask) == FilterAPDUHeader) then allow APDU
112 // it contains APDU filter (APDUHeader | FilterMask) which should have length n*8.
126 byte[] filterMask = new byte[4];
132 filterMask[0] = data[i + 4];
133 filterMask[1] = data[i + 5];
134 filterMask[2] = data[i + 6];
135 filterMask[3] = data[i + 7];
138 mFilterMask.add(filterMask);
    [all...]
  /external/skia/src/effects/
SkEmbossMaskFilter.h 32 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
SkShaderMaskFilter.cpp 21 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
73 bool SkShaderMF::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& ctm,
SkTableMaskFilter.cpp 19 bool filterMask(SkMask*, const SkMask&, const SkMatrix&, SkIPoint*) const override;
49 bool SkTableMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
SkEmbossMaskFilter.cpp 73 bool SkEmbossMaskFilter::filterMask(SkMask* dst, const SkMask& src,
SkBlurMaskFilter.cpp 51 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
320 bool SkBlurMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
517 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
582 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) {
635 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
684 // so we ask to have our normal filterMask() be called.
709 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) {
    [all...]
SkRRectsGaussianEdgeMaskFilter.cpp 33 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
138 bool SkRRectsGaussianEdgeMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
  /external/skqp/src/effects/
SkEmbossMaskFilter.h 32 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
SkShaderMaskFilter.cpp 21 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
73 bool SkShaderMF::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& ctm,
SkTableMaskFilter.cpp 19 bool filterMask(SkMask*, const SkMask&, const SkMatrix&, SkIPoint*) const override;
49 bool SkTableMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
SkEmbossMaskFilter.cpp 60 bool SkEmbossMaskFilter::filterMask(SkMask* dst, const SkMask& src,
SkBlurMaskFilter.cpp 50 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
319 bool SkBlurMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
516 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
581 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) {
634 filterResult = this->filterMask(&dstM, srcM, matrix, &margin);
683 // so we ask to have our normal filterMask() be called.
708 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) {
    [all...]
SkRRectsGaussianEdgeMaskFilter.cpp 33 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
138 bool SkRRectsGaussianEdgeMaskFilterImpl::filterMask(SkMask* dst, const SkMask& src,
  /frameworks/wilhelm/src/itf/
IMetadataExtraction.cpp 148 const SLchar *pValueLangCountry, SLuint32 valueEncoding, SLuint8 filterMask)
152 if (NULL == pKey || NULL == pValueLangCountry || (filterMask & ~(SL_METADATA_FILTER_KEY |
163 thiz->mFilterMask = filterMask;
  /external/skia/src/core/
SkMaskFilter.cpp 36 bool SkMaskFilterBase::filterMask(SkMask*, const SkMask&, const SkMatrix&,
274 if (!this->filterMask(&dstM, srcM, matrix, nullptr)) {
373 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
402 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&, SkIPoint*) const override;
443 bool SkComposeMF::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& ctm,
448 if (!as_MFB(fInner)->filterMask(&innerMask, src, ctm, &innerMargin)) {
451 if (!as_MFB(fOuter)->filterMask(dst, innerMask, ctm, margin)) {
495 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&, SkIPoint*) const override;
583 bool SkCombineMF::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& ctm,
588 if (!as_MFB(fSrc)->filterMask(&srcM, src, ctm, &srcP))
    [all...]
SkMaskFilterBase.h 39 when its filterMask() method is called.
56 virtual bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
150 * The default impl calls filterMask with the src mask having no image,
196 * kFalse_FilterReturn. If the normal filterMask() entry-point should be
222 and then call filterMask(). If this returns true, the specified blitter will be called
223 to render that mask. Returns false if filterMask() returned false.
230 mask and then call filterMask(). If this returns true, the specified blitter will be called
231 to render that mask. Returns false if filterMask() returned false.
SkBitmap.cpp 548 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {
572 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {
SkScalerContext.cpp 176 if (as_MFB(fMaskFilter)->filterMask(&dst, src, matrix, nullptr)) {
505 if (as_MFB(fMaskFilter)->filterMask(&dstM, srcM, matrix, nullptr)) {
    [all...]
SkDraw.cpp 850 as_MFB(paint.getMaskFilter())->filterMask(&dstM, srcM, *fMatrix, nullptr)) {
    [all...]
  /external/skqp/src/core/
SkMaskFilter.cpp 35 bool SkMaskFilterBase::filterMask(SkMask*, const SkMask&, const SkMatrix&,
273 if (!this->filterMask(&dstM, srcM, matrix, nullptr)) {
373 if (this->filterMask(&dstM, srcM, SkMatrix::I(), &margin)) {
402 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&, SkIPoint*) const override;
425 bool SkComposeMF::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& ctm,
430 if (!as_MFB(fInner)->filterMask(&innerMask, src, ctm, &innerMargin)) {
433 if (!as_MFB(fOuter)->filterMask(dst, innerMask, ctm, margin)) {
477 bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&, SkIPoint*) const override;
548 bool SkCombineMF::filterMask(SkMask* dst, const SkMask& src, const SkMatrix& ctm,
553 if (!as_MFB(fSrc)->filterMask(&srcM, src, ctm, &srcP))
    [all...]
SkMaskFilterBase.h 39 when its filterMask() method is called.
56 virtual bool filterMask(SkMask* dst, const SkMask& src, const SkMatrix&,
150 * The default impl calls filterMask with the src mask having no image,
196 * kFalse_FilterReturn. If the normal filterMask() entry-point should be
222 and then call filterMask(). If this returns true, the specified blitter will be called
223 to render that mask. Returns false if filterMask() returned false.
230 mask and then call filterMask(). If this returns true, the specified blitter will be called
231 to render that mask. Returns false if filterMask() returned false.
SkBitmap.cpp 547 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {
571 if (!as_MFB(filter)->filterMask(&dstM, srcM, identity, nullptr)) {
SkScalerContext.cpp 182 if (as_MFB(fMaskFilter)->filterMask(&dst, src, matrix, nullptr)) {
511 if (as_MFB(fMaskFilter)->filterMask(&dstM, srcM, matrix, nullptr)) {
    [all...]
  /external/skia/src/gpu/
GrBlurUtils.cpp 68 if (!as_MFB(filter)->filterMask(&dstM, srcM, viewMatrix, nullptr)) {
71 // this will free-up dstM when we're done (allocated in filterMask())
  /external/skqp/src/gpu/
GrBlurUtils.cpp 68 if (!as_MFB(filter)->filterMask(&dstM, srcM, viewMatrix, nullptr)) {
71 // this will free-up dstM when we're done (allocated in filterMask())

Completed in 759 milliseconds

1 2