HomeSort by relevance Sort by last modified time
    Searched defs:numInts (Results 1 - 7 of 7) sorted by null

  /system/core/include/cutils/
native_handle.h 28 int numInts; /* number of ints at &data[numFds] */
29 int data[0]; /* numFds + numInts ints */
50 native_handle_t* native_handle_create(int numFds, int numInts);
  /frameworks/base/core/jni/
android_util_StringBlock.cpp 129 static const int numInts = sizeof(ResStringPool_span)/sizeof(jint);
132 num*numInts, numInts,
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 205 return (8 + (handle ? handle->numInts : 0))*sizeof(int);
233 buf[7] = handle->numInts;
236 memcpy(&buf[8], h->data + h->numFds, h->numInts*sizeof(int));
251 const size_t numInts = buf[7];
253 const size_t sizeNeeded = (8 + numInts) * sizeof(int);
264 if (numFds || numInts) {
270 native_handle* h = native_handle_create(numFds, numInts);
272 memcpy(h->data + numFds, &buf[8], numInts*sizeof(int));
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3bitset.c 648 ANTLR3_UINT32 numInts; // How many integers we will need
655 numInts = bitset->size(bitset) + 1;
658 intList = (pANTLR3_INT32)ANTLR3_MALLOC(numInts * sizeof(ANTLR3_INT32));
665 intList[0] = numInts;
  /frameworks/native/libs/binder/
Parcel.cpp 715 err = writeInt32(handle->numInts);
725 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
1115 int numFds, numInts;
1119 err = readInt32(&numInts);
1122 native_handle* h = native_handle_create(numFds, numInts);
1127 err = read(h->data + numFds, sizeof(int)*numInts);
    [all...]
  /hardware/ril/libril/
ril.cpp     [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java     [all...]

Completed in 278 milliseconds