Searched refs:numInts (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/libs/ui/
H A DGraphicBuffer.cpp283 return static_cast<size_t>(11 + (handle ? handle->numInts : 0)) * sizeof(int);
312 buf[10] = handle->numInts;
316 static_cast<size_t>(handle->numInts) * sizeof(int));
337 const size_t numInts = static_cast<size_t>(buf[10]); local
344 if (numFds >= maxNumber || numInts >= (maxNumber - 11)) {
347 ALOGE("unflatten: numFds or numInts is too large: %zd, %zd",
348 numFds, numInts);
352 const size_t sizeNeeded = (11 + numInts) * sizeof(int);
363 if (numFds || numInts) {
370 static_cast<int>(numFds), static_cast<int>(numInts));
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_StringBlock.cpp129 static const int numInts = sizeof(ResStringPool_span)/sizeof(jint); local
132 num*numInts, numInts,
/frameworks/native/libs/binder/
H A DParcel.cpp1152 err = writeInt32(handle->numInts);
1162 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
1953 int numFds, numInts; local
1957 err = readInt32(&numInts);
1960 native_handle* h = native_handle_create(numFds, numInts);
1975 err = read(h->data + numFds, sizeof(int)*numInts);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java3526 int numInts;
3529 numInts = p.readInt();
3531 response = new int[numInts];
3533 for (int i = 0 ; i < numInts ; i++) {
4018 int numInts;
4019 numInts = CDMA_BROADCAST_SMS_NO_OF_SERVICE_CATEGORIES * CDMA_BSI_NO_OF_INTS_STRUCT + 1;
4020 response = new int[numInts];
4027 for (int i = 1; i < numInts; i += CDMA_BSI_NO_OF_INTS_STRUCT ) {
4033 int numInts;
4034 numInts
[all...]

Completed in 126 milliseconds