Home
last modified time | relevance | path

Searched refs:grContext (Results 1 – 18 of 18) sorted by relevance

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_GrrdProc.h20 JBig2ArithCtx* grContext);
23 JBig2ArithCtx* grContext);
26 JBig2ArithCtx* grContext);
29 JBig2ArithCtx* grContext);
32 JBig2ArithCtx* grContext);
DJBig2_GrrdProc.cpp16 JBig2ArithCtx* grContext) { in decode() argument
24 return decode_Template0_opt(pArithDecoder, grContext); in decode()
26 return decode_Template0_unopt(pArithDecoder, grContext); in decode()
30 return decode_Template1_opt(pArithDecoder, grContext); in decode()
31 return decode_Template1_unopt(pArithDecoder, grContext); in decode()
36 JBig2ArithCtx* grContext) { in decode_Template0_unopt() argument
45 SLTP = pArithDecoder->DECODE(&grContext[0x0010]); in decode_Template0_unopt()
74 bVal = pArithDecoder->DECODE(&grContext[CONTEXT]); in decode_Template0_unopt()
126 bVal = pArithDecoder->DECODE(&grContext[CONTEXT]); in decode_Template0_unopt()
151 JBig2ArithCtx* grContext) { in decode_Template0_opt() argument
[all …]
DJBig2_SymbolDict.h38 void SetGrContext(const std::vector<JBig2ArithCtx>& grContext) { in SetGrContext() argument
39 m_grContext = grContext; in SetGrContext()
DJBig2_SddProc.h25 std::vector<JBig2ArithCtx>* grContext);
29 std::vector<JBig2ArithCtx>* grContext,
DJBig2_TrdProc.h44 JBig2ArithCtx* grContext);
47 JBig2ArithCtx* grContext,
DJBig2_Context.cpp583 std::vector<JBig2ArithCtx> grContext; in parseSymbolDict() local
591 grContext = pLRSeg->m_Result.sd->GrContext(); in parseSymbolDict()
592 if (grContext.size() != grContextSize) in parseSymbolDict()
599 grContext.resize(grContextSize); in parseSymbolDict()
624 pArithDecoder.get(), &gbContext, &grContext); in parseSymbolDict()
632 m_pStream.get(), &gbContext, &grContext, pPause); in parseSymbolDict()
651 pSegment->m_Result.sd->SetGrContext(grContext); in parseSymbolDict()
932 std::unique_ptr<JBig2ArithCtx, FxFreeDeleter> grContext; in parseTextRegion() local
935 grContext.reset(FX_Alloc(JBig2ArithCtx, size)); in parseTextRegion()
936 JBIG2_memset(grContext.get(), 0, sizeof(JBig2ArithCtx) * size); in parseTextRegion()
[all …]
DJBig2_TrdProc.cpp17 JBig2ArithCtx* grContext) { in decode_Huffman() argument
143 IBI = pGRRD->decode(pArithDecoder.get(), grContext); in decode_Huffman()
216 JBig2ArithCtx* grContext, in decode_Arith() argument
328 IBI = pGRRD->decode(pArithDecoder, grContext); in decode_Arith()
DJBig2_SddProc.cpp25 std::vector<JBig2ArithCtx>* grContext) { in decode_Arith() argument
195 BS = pDecoder->decode_Arith(pArithDecoder, grContext->data(), &ids); in decode_Arith()
230 BS = pGRRD->decode(pArithDecoder, grContext->data()); in decode_Arith()
291 std::vector<JBig2ArithCtx>* grContext, in decode_Huffman() argument
441 BS = pDecoder->decode_Huffman(pStream, grContext->data()); in decode_Huffman()
513 BS = pGRRD->decode(pArithDecoder.get(), grContext->data()); in decode_Huffman()
/external/skia/samplecode/
DSampleAnimatedText.cpp107 GrContext* grContext = canvas->getGrContext(); in onDrawContent() local
108 if (grContext) { in onDrawContent()
109 GrTexture* tex = grContext->getFontAtlasTexture(GrMaskFormat::kA8_GrMaskFormat); in onDrawContent()
DSampleApp.cpp1767 GrContext* grContext = this->getGrContext(); in onHandleChar() local
1768 if (grContext) { in onHandleChar()
1770 grContext->getResourceCacheUsage(nullptr, &cacheBytes); in onHandleChar()
1771 grContext->freeGpuResources(); in onHandleChar()
/external/skia/platform_tools/android/apps/canvasproof/src/main/jni/
Dorg_skia_canvasproof_GaneshPictureRenderer.cpp21 static void render_picture(GrContext* grContext, in render_picture() argument
26 SkASSERT(grContext); in render_picture()
42 grContext, desc, &surfaceProps)); in render_picture()
/external/skia/experimental/fiddle/
Dfiddle_main.cpp108 SkAutoTUnref<GrContext> grContext(create_mesa_grcontext()); in main() local
109 if (!grContext) { in main()
114 grContext, in main()
/external/skia/src/gpu/
DGrContextFactory.h116 ContextInfo(GrContext* grContext, SkGLContext* glContext) in ContextInfo()
117 : fGrContext(grContext), fGLContext(glContext) { } in ContextInfo()
/external/skia/cmake/
Dexample.cpp55 std::shared_ptr<GrContext> grContext = adopt(GrContext::Create(kOpenGL_GrBackend, 0)); in create_opengl_surface() local
56 return adopt(SkSurface::NewRenderTarget(grContext.get(), in create_opengl_surface()
/external/skia/example/
DSkiaSDLExample.cpp193 SkAutoTUnref<GrContext> grContext(GrContext::Create(kOpenGL_GrBackend, local
195 SkASSERT(grContext);
210 renderTarget(grContext->textureProvider()->wrapBackendRenderTarget(desc));
/external/skia/src/views/
DSkWindow.cpp325 const GrGLInterface* interface, GrContext* grContext) { in renderTarget() argument
336 return grContext->textureProvider()->wrapBackendRenderTarget(desc); in renderTarget()
/external/skia/include/views/
DSkWindow.h96 const GrGLInterface* , GrContext* grContext);
/external/skia/tests/
DBlurTest.cpp289 SkAutoTUnref<GrTexture> texture(grContext->createTexture(desc, false, nullptr, 0));
290 SkAutoTUnref<SkGpuDevice> device(new SkGpuDevice (grContext, texture.get()));