Home
last modified time | relevance | path

Searched refs:cctx (Results 1 – 5 of 5) sorted by relevance

/external/lz4/lib/
Dlz4frame.h196 LZ4FLIB_API LZ4F_errorCode_t LZ4F_freeCompressionContext(LZ4F_cctx* cctx);
210 LZ4FLIB_API size_t LZ4F_compressBegin(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const L…
227 LZ4FLIB_API size_t LZ4F_compressUpdate(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const …
239 LZ4FLIB_API size_t LZ4F_flush(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const LZ4F_comp…
249 LZ4FLIB_API size_t LZ4F_compressEnd(LZ4F_cctx* cctx, void* dstBuffer, size_t dstCapacity, const LZ4…
Dlz4.c460 LZ4_stream_t_internal* const cctx, in LZ4_compress_generic() argument
474 const BYTE* const lowRefLimit = ip - cctx->dictSize; in LZ4_compress_generic()
475 const BYTE* const dictionary = cctx->dictionary; in LZ4_compress_generic()
476 const BYTE* const dictEnd = dictionary + cctx->dictSize; in LZ4_compress_generic()
498 base = (const BYTE*)source - cctx->currentOffset; in LZ4_compress_generic()
499 lowLimit = (const BYTE*)source - cctx->dictSize; in LZ4_compress_generic()
502 base = (const BYTE*)source - cctx->currentOffset; in LZ4_compress_generic()
510 LZ4_putPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic()
531 match = LZ4_getPositionOnHash(h, cctx->hashTable, tableType, base); in LZ4_compress_generic()
541 LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType, base); in LZ4_compress_generic()
[all …]
/external/deqp/modules/glshared/
DglsFboUtil.cpp470 static void checkAttachmentCompleteness (Checker& cctx, const Attachment& attachment, in checkAttachmentCompleteness() argument
493cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attached layer index is larger than prese… in checkAttachmentCompleteness()
498cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Width and height of an image are not non-… in checkAttachmentCompleteness()
508cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not renderable in th… in checkAttachmentCompleteness()
511cctx.addPotentialFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not require… in checkAttachmentCompleteness()
514 cctx.addFBOStatus(GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT, "Attachment format is not legal"); in checkAttachmentCompleteness()
576 const UniquePtr<Checker> cctx(m_factory.createChecker(m_renderCtx)); in validStatusCodes() local
603 cctx->addGLError(GL_INVALID_ENUM, errorDescription.c_str()); in validStatusCodes()
604 cctx->addGLError(GL_INVALID_OPERATION, errorDescription.c_str()); in validStatusCodes()
605 cctx->addGLError(GL_INVALID_VALUE, errorDescription.c_str()); in validStatusCodes()
[all …]
/external/lz4/tests/
Dframetest.c177 LZ4F_compressionContext_t cctx = NULL; in basicTests() local
416 errorCode = LZ4F_createCompressionContext(&cctx, LZ4F_VERSION); in basicTests()
421 errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs); in basicTests()
424 …errorCode = LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize… in basicTests()
427 errorCode = LZ4F_compressEnd(cctx, compressedBuffer, testSize, NULL); in basicTests()
434 errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs); in basicTests()
437 …errorCode = LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize… in basicTests()
440 errorCode = LZ4F_compressEnd(cctx, compressedBuffer, testSize, NULL); in basicTests()
447 errorCode = LZ4F_compressBegin(cctx, compressedBuffer, testSize, &prefs); in basicTests()
450 …errorCode = LZ4F_compressUpdate(cctx, op, LZ4F_compressBound(testSize, &prefs), CNBuffer, testSize… in basicTests()
[all …]
/external/mesa3d/src/egl/drivers/dri2/
Degl_dri2.c1296 __DRIcontext *cctx; in dri2_make_current() local
1314 cctx = (dri2_ctx) ? dri2_ctx->dri_context : NULL; in dri2_make_current()
1321 unbind = (cctx == NULL && ddraw == NULL && rdraw == NULL); in dri2_make_current()
1323 if (unbind || dri2_dpy->core->bindContext(cctx, ddraw, rdraw)) { in dri2_make_current()