Home
last modified time | relevance | path

Searched refs:curBlock (Results 1 – 2 of 2) sorted by relevance

/third_party/vk-gl-cts/framework/delibs/decpp/
DdeAppendList.hpp176 Block* curBlock = m_first; in ~AppendList() local
178 while (curBlock) in ~AppendList()
180 Block* const delBlock = curBlock; in ~AppendList()
182 curBlock = delBlock->next; in ~AppendList()
200 Block* curBlock = m_first; in clear() local
202 while (curBlock) in clear()
204 Block* const delBlock = curBlock; in clear()
206 curBlock = delBlock->next; in clear()
228 Block* curBlock = m_last; in append() local
237 while (curBlock->blockNdx != blockNdx) in append()
[all …]
/third_party/skia/src/core/
DSkCompressedDataUtils.cpp191 const BC1Block* curBlock = &srcBlocks[y * numXBlocks + x]; in decompress_bc1() local
193 colors[0] = from565(curBlock->fColor0); in decompress_bc1()
194 colors[1] = from565(curBlock->fColor1); in decompress_bc1()
195 if (curBlock->fColor0 <= curBlock->fColor1) { // signal for a transparent block in decompress_bc1()
218 int index = (curBlock->fIndices >> shift) & 0x3; in decompress_bc1()