Home
last modified time | relevance | path

Searched refs:srcBase (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/src/gpu/
DSurfaceContext.cpp439 GrCPixmap srcBase = origSrcBase; in internalWritePixels() local
441 srcBase = GrCPixmap(origSrcBase.info().makeColorType(GrColorType::kRGBA_8888), in internalWritePixels()
445 if (!tempCtx.writePixels(dContext, srcBase, {0, 0})) { in internalWritePixels()
465 SkIRect::MakeSize(srcBase.dimensions()), in internalWritePixels()
466 SkIRect::MakePtSize(pt, srcBase.dimensions()), in internalWritePixels()
469 SkIRect srcRect = SkIRect::MakeSize(srcBase.dimensions()); in internalWritePixels()
/third_party/lz4/lib/
Dlz4.c808 const BYTE* srcBase) in LZ4_putPositionOnHash() argument
814 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash()
815 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash()
819 …NE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType, const BYTE* srcBase) in LZ4_putPosition() argument
822 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition()
847 …TE* LZ4_getPositionOnHash(U32 h, const void* tableBase, tableType_t tableType, const BYTE* srcBase) in LZ4_getPositionOnHash() argument
850 …e == byU32) { const U32* const hashTable = (const U32*) tableBase; return hashTable[h] + srcBase; } in LZ4_getPositionOnHash()
851 …{ const U16* const hashTable = (const U16*) tableBase; return hashTable[h] + srcBase; } /* defau… in LZ4_getPositionOnHash()
857 const BYTE* srcBase) in LZ4_getPosition() argument
860 return LZ4_getPositionOnHash(h, tableBase, tableType, srcBase); in LZ4_getPosition()
/third_party/vulkan-headers/include/vulkan/
Dvulkan.hpp1132 …void link( void * dstBase, void const * srcBase, VkBaseOutStructure * dst, VkBaseInStructure const… in link() argument
1136 … offset = reinterpret_cast<char const *>( src->pNext ) - reinterpret_cast<char const *>( srcBase ); in link()