HomeSort by relevance Sort by last modified time
    Searched refs:numInts (Results 1 - 12 of 12) 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);
  /system/core/libcutils/
native_handle.c 28 native_handle_t* native_handle_create(int numFds, int numInts)
31 sizeof(native_handle_t) + sizeof(int)*(numFds+numInts));
35 h->numInts = numInts;
  /sdk/emulator/opengl/system/OpenglSystemCommon/
gralloc_cb.h 54 numInts = CB_HANDLE_NUM_INTS(numFds);
69 numInts = CB_HANDLE_NUM_INTS(numFds);
76 hnd->numInts == CB_HANDLE_NUM_INTS(hnd->numFds));
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 184 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];
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));
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 91 numInts = sNumInts;
101 h->numInts != sNumInts || h->numFds != sNumFds ||
  /hardware/msm7k/libgralloc/
gralloc_priv.h 99 numInts = sNumInts;
109 h->numInts != sNumInts || h->numFds != sNumFds ||
  /frameworks/base/core/jni/
android_util_StringBlock.cpp 128 static const int numInts = sizeof(ResStringPool_span)/sizeof(jint);
131 num*numInts, numInts,
  /hardware/msm7k/libgralloc-qsd8k/
gralloc_priv.h 133 numInts = sNumInts;
147 h->numInts != sNumInts || h->numFds != sNumFds ||
  /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 699 err = writeInt32(handle->numInts);
709 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
1071 int numFds, numInts;
1075 err = readInt32(&numInts);
1078 native_handle* h = native_handle_create(numFds, numInts);
1083 err = read(h->data + numFds, sizeof(int)*numInts);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
RIL.java     [all...]
  /hardware/ril/libril/
ril.cpp     [all...]

Completed in 786 milliseconds