Searched refs:totalSize (Results 1 - 6 of 6) sorted by relevance

/hardware/qcom/gps/msm8909/utils/
H A DLocHeap.cpp199 int totalSize = mSize; local
206 totalSize -= mLeft->mSize;
215 totalSize -= mRight->mSize;
218 // for the tree nodes to consistent, totalSize must be 1 now
219 return totalSize == 1;
/hardware/qcom/gps/msm8996/utils/
H A DLocHeap.cpp199 int totalSize = mSize; local
206 totalSize -= mLeft->mSize;
215 totalSize -= mRight->mSize;
218 // for the tree nodes to consistent, totalSize must be 1 now
219 return totalSize == 1;
/hardware/qcom/gps/msm8998/utils/
H A DLocHeap.cpp199 int totalSize = mSize; local
206 totalSize -= mLeft->mSize;
215 totalSize -= mRight->mSize;
218 // for the tree nodes to consistent, totalSize must be 1 now
219 return totalSize == 1;
/hardware/interfaces/drm/1.0/vts/functional/
H A Ddrm_hal_clearkey_test.cpp960 size_t totalSize = 0; local
962 totalSize += subSamples[i].numBytesOfClearData;
963 totalSize += subSamples[i].numBytesOfEncryptedData;
966 // The first totalSize bytes of shared memory is the encrypted
967 // input, the second totalSize bytes is the decrypted output.
969 getDecryptMemory(totalSize * 2, kSegmentIndex);
972 .bufferId = kSegmentIndex, .offset = 0, .size = totalSize};
977 .offset = totalSize,
978 .size = totalSize},
992 if (bytesWritten != totalSize) {
[all...]
H A Ddrm_hal_vendor_test.cpp1303 size_t totalSize = 0; local
1305 totalSize += subSamples[i].numBytesOfClearData;
1306 totalSize += subSamples[i].numBytesOfEncryptedData;
1309 // The first totalSize bytes of shared memory is the encrypted
1310 // input, the second totalSize bytes is the decrypted output.
1312 getDecryptMemory(totalSize * 2, kSegmentIndex);
1315 .bufferId = kSegmentIndex, .offset = 0, .size = totalSize};
1320 .offset = totalSize,
1321 .size = totalSize},
1334 if (bytesWritten != totalSize) {
[all...]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/venc/src/
H A Dvideo_encoder_device_v4l2.cpp7320 ssize_t totalSize = (mSize * mCount + 4095) & (~4095); local
7324 if (mUaddr || !totalSize) {
7328 totalSize,
7332 DEBUG_PRINT_ERROR("Failed to alloc extradata memory: %zd", totalSize);
7336 mUaddr = (char *)mmap(NULL, totalSize,
7507 ssize_t totalSize = (mCount * mSize + 4095) & (~4095); local
7509 munmap((void *)mUaddr, totalSize);

Completed in 764 milliseconds