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);
1072 int numFds, numInts; local
1076 err = readInt32(&numInts);
1079 native_handle* h = native_handle_create(numFds, numInts);
1084 err = read(h->data + numFds, sizeof(int)*numInts);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java2887 int numInts;
2890 numInts = p.readInt();
2892 response = new int[numInts];
2894 for (int i = 0 ; i < numInts ; i++) {
3356 int numInts;
3357 numInts = CDMA_BROADCAST_SMS_NO_OF_SERVICE_CATEGORIES * CDMA_BSI_NO_OF_INTS_STRUCT + 1;
3358 response = new int[numInts];
3365 for (int i = 1; i < numInts; i += CDMA_BSI_NO_OF_INTS_STRUCT ) {
3371 int numInts;
3372 numInts
[all...]

Completed in 69 milliseconds