Searched refs:block_size (Results 1 – 8 of 8) sorted by relevance
/frameworks/base/tools/aapt2/util/ |
D | BigBuffer.h | 69 explicit BigBuffer(size_t block_size); 115 size_t block_size() const; 136 inline BigBuffer::BigBuffer(size_t block_size) in BigBuffer() argument 137 : block_size_(block_size), size_(0) {} in BigBuffer() 146 inline size_t BigBuffer::block_size() const { return block_size_; } in block_size() function
|
/frameworks/av/media/libstagefright/httplive/ |
D | HTTPDownloader.cpp | 83 uint32_t block_size, /* download block size */ in fetchBlock() argument 143 …if (block_size > 0 && (range_length == -1 || (int64_t)(buffer->size() + block_size) < range_length… in fetchBlock() 144 range_length = buffer->size() + block_size; in fetchBlock()
|
D | HTTPDownloader.h | 58 uint32_t block_size, /* download block size (0: entire range) */
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | NuPlayerCCDecoder.cpp | 478 size_t block_size = br.getBits(5); in parseDTVCCPacket() local 489 if (br.numBitsLeft() < block_size * 8) { in parseDTVCCPacket() 493 if (block_size > 0) { in parseDTVCCPacket() 496 sp<ABuffer> ccPacket = new ABuffer(block_size); in parseDTVCCPacket() 498 ALOGW("b/129068792, no memory available, %zu", block_size); in parseDTVCCPacket() 502 memcpy(ccPacket->data(), br.data(), block_size); in parseDTVCCPacket() 506 br.skipBits(block_size * 8); in parseDTVCCPacket()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_security_VerityUtils.cpp | 52 arg.block_size = 4096; in enableFsverity()
|
/frameworks/av/media/codec2/sfplugin/ |
D | CCodecBuffers.cpp | 882 const uint32_t block_size = linear_blocks.front().size(); in realloc() local 883 if (block_size < kMaxLinearBufferSize / 2) { in realloc() 884 size = block_size * 2; in realloc()
|
/frameworks/ml/nn/runtime/test/ |
D | TestValidateOperations.cpp | 1926 ANeuralNetworksOperandType block_size = {.type = ANEURALNETWORKS_INT32, in spaceDepthOpTest() local 1933 OperationTestBase spaceDepthTest(operationCode, {input, block_size}, {output}); in spaceDepthOpTest() 1941 OperationTestBase spaceDepthNchwTest(operationCode, {input, block_size, layout}, {output}); in spaceDepthOpTest()
|
/frameworks/ml/nn/tools/api/ |
D | types.spec | 2204 * dimension. The value block_size indicates the input block size and how 2207 * Chunks of data of size block_size * block_size from depth are rearranged 2208 * into non-overlapping blocks of size block_size x block_size. 2210 * The depth of the output tensor is input_depth * block_size * block_size.
|