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

  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
mmapped_buffer.h 57 void *const mmappedBuffer, const int alignedSize, const int mmapFd,
60 mAlignedSize(alignedSize), mMmapFd(mmapFd), mIsUpdatable(isUpdatable) {}
mmapped_buffer.cpp 41 int alignedSize = bufferSize + offset;
43 void *const mmappedBuffer = mmap(0, alignedSize, protMode, MAP_PRIVATE, mmapFd,
56 return MmappedBufferPtr(new MmappedBuffer(buffer, bufferSize, mmappedBuffer, alignedSize,
  /external/skia/src/core/
SkWriter32.cpp 21 size_t alignedSize = SkAlign4(len + 1);
22 this->skip(alignedSize);
SkValidatingReadBuffer.cpp 105 const size_t alignedSize = SkAlign4(len + 1);
106 this->skip(alignedSize);
  /external/skia/src/gpu/vk/
GrVkMemory.cpp 317 VkDeviceSize alignedSize = align_size(requestedSize, fAlignment);
329 if (block->fSize >= alignedSize && block->fSize < bestFitSize) {
345 *allocSize = alignedSize;
348 if (bestFit->fSize > alignedSize) {
349 bestFit->fOffset += alignedSize;
350 bestFit->fSize -= alignedSize;
373 SkASSERT(bestFit->fSize == alignedSize);
392 fFreeSize -= alignedSize;
398 SkDebugf("Can't allocate %d bytes, %d bytes available, largest free block %d\n", alignedSize, fFreeSize, fLargestBlockSize);
515 VkDeviceSize alignedSize = align_size(size, alignment)
    [all...]
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector.h 129 Index alignedSize = ResPacketSize>1 ? alignedStart + ((size-alignedStart) & ~ResPacketAlignedMask) : 0;
130 const Index peeledSize = alignedSize - RhsPacketSize*peels - RhsPacketSize + 1;
145 alignedSize = 0;
182 alignedSize = size;
213 if (alignedSize>alignedStart)
218 for (Index j = alignedStart; j<alignedSize; j+=ResPacketSize)
222 for (Index j = alignedStart; j<alignedSize; j+=ResPacketSize)
261 for (; j<alignedSize; j+=ResPacketSize)
266 for (Index j = alignedStart; j<alignedSize; j+=ResPacketSize)
274 for (Index j=alignedSize; j<size; ++j
    [all...]
  /external/skia/include/core/
SkWriter32.h 175 size_t alignedSize = SkAlign4(size);
176 uint32_t* p = this->reserve(alignedSize);
177 if (alignedSize != size) {
178 SkASSERT(alignedSize >= 4);
179 p[alignedSize / 4 - 1] = 0;
  /external/eigen/Eigen/src/Core/
Redux.h 227 const Index alignedSize = ((size-alignedStart)/(packetSize))*(packetSize);
229 const Index alignedEnd = alignedStart + alignedSize;
231 if(alignedSize)
234 if(alignedSize>packetSize) // we have at least two packets to partly unroll the loop
AssignEvaluator.h 432 alignedSize = (size/packetSize)*packetSize };
434 copy_using_evaluator_innervec_CompleteUnrolling<Kernel, 0, alignedSize>::run(kernel);
435 copy_using_evaluator_DefaultTraversal_CompleteUnrolling<Kernel, alignedSize, size>::run(kernel);
    [all...]
  /external/skia/tests/
Writer32Test.cpp 138 size_t alignedSize = SkAlign4(len + 1);
139 for (size_t j = len; j < alignedSize; j++) {
  /system/libhwbinder/
Parcel.cpp     [all...]
  /frameworks/av/media/libstagefright/
ACodec.cpp 891 size_t alignedSize = align(bufSize, alignment);
893 if (def.nBufferCountActual > SIZE_MAX / (alignedSize + alignedConvSize)) {
908 (alignedSize + alignedConvSize);
    [all...]

Completed in 473 milliseconds