HomeSort by relevance Sort by last modified time
    Searched refs:BLOCK_SIZE_BYTES (Results 1 - 10 of 10) sorted by null

  /external/conscrypt/common/src/main/java/org/conscrypt/
OpenSSLCipherChaCha20.java 36 private static final int BLOCK_SIZE_BYTES = 64;
80 int len = Math.min(BLOCK_SIZE_BYTES - currentBlockConsumedBytes, inputLenRemaining);
81 byte[] singleBlock = new byte[BLOCK_SIZE_BYTES];
82 byte[] singleBlockOut = new byte[BLOCK_SIZE_BYTES];
85 BLOCK_SIZE_BYTES, encodedKey, iv, blockCounter);
88 if (currentBlockConsumedBytes < BLOCK_SIZE_BYTES) {
92 assert currentBlockConsumedBytes == BLOCK_SIZE_BYTES;
101 currentBlockConsumedBytes = inputLenRemaining % BLOCK_SIZE_BYTES;
102 blockCounter += inputLenRemaining / BLOCK_SIZE_BYTES;
  /external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
OpenSSLCipherChaCha20.java 39 private static final int BLOCK_SIZE_BYTES = 64;
84 int len = Math.min(BLOCK_SIZE_BYTES - currentBlockConsumedBytes, inputLenRemaining);
85 byte[] singleBlock = new byte[BLOCK_SIZE_BYTES];
86 byte[] singleBlockOut = new byte[BLOCK_SIZE_BYTES];
89 BLOCK_SIZE_BYTES, encodedKey, iv, blockCounter);
92 if (currentBlockConsumedBytes < BLOCK_SIZE_BYTES) {
96 assert currentBlockConsumedBytes == BLOCK_SIZE_BYTES;
105 currentBlockConsumedBytes = inputLenRemaining % BLOCK_SIZE_BYTES;
106 blockCounter += inputLenRemaining / BLOCK_SIZE_BYTES;
  /external/deqp/modules/internal/
ditAstcTests.cpp 90 if (!astc::isValidBlock(data + blockNdx*astc::BLOCK_SIZE_BYTES, format, mode))
97 TCU_CHECK(numBytes % astc::BLOCK_SIZE_BYTES == 0);
98 return (numBytes / astc::BLOCK_SIZE_BYTES);
135 generatedData.resize(numBlocks*astc::BLOCK_SIZE_BYTES);
151 generatedData.resize(numBlocks*astc::BLOCK_SIZE_BYTES);
171 generatedData.resize(numBlocks*astc::BLOCK_SIZE_BYTES);
  /external/deqp/modules/gles3/functional/
es3fASTCDecompressionCases.cpp 99 for (int i = tcu::astc::BLOCK_SIZE_BYTES-1; i >= 0; i--)
114 for (int i = tcu::astc::BLOCK_SIZE_BYTES-1; i >= 0; i--)
395 DE_ASSERT(m_blockData.size() % tcu::astc::BLOCK_SIZE_BYTES == 0);
397 m_testCtx.getLog() << TestLog::Message << "Total " << m_blockData.size() / tcu::astc::BLOCK_SIZE_BYTES << " blocks to test" << TestLog::EndMessage
419 const int totalNumBlocks = (int)m_blockData.size() / tcu::astc::BLOCK_SIZE_BYTES;
441 DE_ASSERT(compressed.getDataSize() == numBlocksPerImage*tcu::astc::BLOCK_SIZE_BYTES);
442 deMemcpy(compressed.getData(), &m_blockData[m_numBlocksTested*tcu::astc::BLOCK_SIZE_BYTES], curNumNonDummyBlocks*tcu::astc::BLOCK_SIZE_BYTES);
444 tcu::astc::generateDummyVoidExtentBlocks((deUint8*)compressed.getData() + curNumNonDummyBlocks*tcu::astc::BLOCK_SIZE_BYTES, curNumDummyBlocks);
491 << TestLog::Message << "Data of first failed block:\n" << astcBlockDataStr(&m_blockData[blockNdx*tcu::astc::BLOCK_SIZE_BYTES]) << TestLog::EndMessage
    [all...]
  /external/deqp/framework/common/
tcuAstcUtil.hpp 56 BLOCK_SIZE_BYTES = 128/8,
tcuAstcUtil.cpp     [all...]
tcuCompressedTexture.cpp 40 return astc::BLOCK_SIZE_BYTES;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xvmc/
block.c 51 blocks->blocks = MALLOC(BLOCK_SIZE_BYTES * num_blocks);
xvmc_private.h 43 #define BLOCK_SIZE_BYTES (BLOCK_SIZE_SAMPLES * 2)
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.cpp 817 tcu::astc::generateRandomValidBlocks(compressedData, compressedLevel->getDataSize()/tcu::astc::BLOCK_SIZE_BYTES,
    [all...]

Completed in 209 milliseconds