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

/frameworks/native/libs/ui/
H A DGraphicBuffer.cpp184 return (8 + (handle ? handle->numInts : 0))*sizeof(int);
212 buf[7] = handle->numInts;
215 memcpy(&buf[8], h->data + h->numFds, h->numInts*sizeof(int));
230 const size_t numInts = buf[7]; local
232 const size_t sizeNeeded = (8 + numInts) * sizeof(int);
243 if (numFds || numInts) {
249 native_handle* h = native_handle_create(numFds, numInts);
251 memcpy(h->data + numFds, &buf[8], numInts*sizeof(int));
/frameworks/base/core/jni/
H A Dandroid_util_StringBlock.cpp128 static const int numInts = sizeof(ResStringPool_span)/sizeof(jint); local
131 num*numInts, numInts,
/frameworks/native/libs/binder/
H A DParcel.cpp699 err = writeInt32(handle->numInts);
709 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
1071 int numFds, numInts; local
1075 err = readInt32(&numInts);
1078 native_handle* h = native_handle_create(numFds, numInts);
1083 err = read(h->data + numFds, sizeof(int)*numInts);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRIL.java2850 int numInts;
2853 numInts = p.readInt();
2855 response = new int[numInts];
2857 for (int i = 0 ; i < numInts ; i++) {
3320 int numInts;
3321 numInts = CDMA_BROADCAST_SMS_NO_OF_SERVICE_CATEGORIES * CDMA_BSI_NO_OF_INTS_STRUCT + 1;
3322 response = new int[numInts];
3329 for (int i = 1; i < numInts; i += CDMA_BSI_NO_OF_INTS_STRUCT ) {
3335 int numInts;
3336 numInts
[all...]

Completed in 268 milliseconds