Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryablePair.java123 int secondSize = mNestedTypeMarshalerSecond.getNativeSize(); in getNativeSize() local
125 if (firstSize != NATIVE_SIZE_DYNAMIC && secondSize != NATIVE_SIZE_DYNAMIC) { in getNativeSize()
126 return firstSize + secondSize; in getNativeSize()
140 int secondSize = mNestedTypeMarshalerSecond.calculateMarshalSize(value.second); in calculateMarshalSize() local
142 return firstSize + secondSize; in calculateMarshalSize()
/aosp12/system/chre/platform/shared/
H A Dlog_buffer.cc161 size_t secondSize = size - firstSize; in copyToBuffer() local
163 memcpy(mBufferData, &sourceBytes[firstSize], secondSize); in copyToBuffer()
176 size_t secondSize = size - firstSize; in copyFromBuffer() local
178 memcpy(&destinationBytes[firstSize], mBufferData, secondSize); in copyFromBuffer()
/aosp12/system/extras/verity/
H A DBootSignature.java214 int secondSize = image.getInt(); in getSignableImageSize() local
221 + ((secondSize + pageSize - 1) / pageSize) * pageSize; in getSignableImageSize()