Searched defs:newEntryCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/av/camera/
H A DCameraMetadata.cpp426 size_t newEntryCount = currentEntryCount + local
428 newEntryCount = (newEntryCount > currentEntryCap) ?
429 newEntryCount * 2 : currentEntryCap;
438 if (newEntryCount > currentEntryCap ||
441 mBuffer = allocate_camera_metadata(newEntryCount,
/frameworks/opt/chips/src/com/android/ex/chips/
H A DBaseRecipientAdapter.java907 * @param newEntryCount number of newly loaded entries
910 protected void cacheCurrentEntriesIfNeeded(int newEntryCount, int paramListCount) { argument
911 if (newEntryCount == 0 && paramListCount > 1) {
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp6411 const size_t newEntryCount = dtohl(typeSpec->entryCount); local
6422 || dtohs(typeSpec->header.headerSize)+(sizeof(uint32_t)*newEntryCount)
6425 (void*)(dtohs(typeSpec->header.headerSize) + (sizeof(uint32_t)*newEntryCount)),
6435 if (newEntryCount > 0) {
6453 if (existingType->entryCount != newEntryCount && idmapIndex < 0) {
6456 (int) newEntryCount, (int) existingType->entryCount);
6462 Type* t = new Type(header, package, newEntryCount);
6485 const size_t newEntryCount = dtohl(type->entryCount); local
6494 if (dtohs(type->header.headerSize)+(sizeof(uint32_t)*newEntryCount) > typeSize) {
6496 (void*)(dtohs(type->header.headerSize) + (sizeof(uint32_t)*newEntryCount)),
[all...]

Completed in 674 milliseconds