Home
last modified time | relevance | path

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

/external/connectedappssdk/sdk/src/main/java/com/google/android/enterprise/connectedapps/internal/
DParcelCallSender.java134 int numberOfBlocks = (int) Math.ceil(bytes.length * 1.0 / MAX_BYTES_PER_BLOCK); in makeParcelCall() local
137 if (numberOfBlocks > 1) { in makeParcelCall()
141 while (blockIdentifier < numberOfBlocks - 1) { in makeParcelCall()
211 int numberOfBlocks = (int) Math.ceil(totalBytes * 1.0 / MAX_BYTES_PER_BLOCK); in fetchReturnBytes() local
213 for (int block = 1; block < numberOfBlocks; block++) { // Skip 0 as we already have it in fetchReturnBytes()
DParcelCallReceiver.java145 int numberOfBlocks = in getPreparedResponse() local
147 if (blockId == numberOfBlocks - 1) { in getPreparedResponse()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBufferMemoryAliasing.cpp421 …const deUint32 numberOfBlocks = m_bufferSizeInBytes / fullBlockSizeInBytes + (lastBlockSizeInBytes… in iterate() local
423 for (deUint32 blockNdx = 0; blockNdx < numberOfBlocks; ++blockNdx) in iterate()