HomeSort by relevance Sort by last modified time
    Searched refs:numInts (Results 1 - 25 of 25) 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 31 native_handle_t* native_handle_create(int numFds, int numInts)
33 if (numFds < 0 || numInts < 0 || numFds > kMaxNativeFds || numInts > kMaxNativeInts) {
37 size_t mallocSize = sizeof(native_handle_t) + (sizeof(int) * (numFds + numInts));
42 h->numInts = numInts;
  /external/drm_gralloc/
gralloc_drm_handle.h 71 handle->base.numInts != GRALLOC_DRM_HANDLE_NUM_INTS ||
74 ALOGE("invalid handle: version=%d, numInts=%d, numFds=%d, magic=%x",
75 handle->base.version, handle->base.numInts,
gralloc_drm.cpp 230 handle->base.numInts = GRALLOC_DRM_HANDLE_NUM_INTS;
  /device/generic/goldfish/opengl/system/OpenglSystemCommon/
gralloc_cb.h 56 numInts = CB_HANDLE_NUM_INTS(numFds);
71 numInts = CB_HANDLE_NUM_INTS(numFds);
78 hnd->numInts == CB_HANDLE_NUM_INTS(hnd->numFds));
  /hardware/libhardware/modules/gralloc/
gralloc_priv.h 93 numInts = sNumInts();
103 h->numInts != sNumInts() || h->numFds != sNumFds ||
  /frameworks/native/libs/ui/
GraphicBuffer.cpp 281 return static_cast<size_t>(11 + (handle ? handle->numInts : 0)) * sizeof(int);
310 buf[10] = handle->numInts;
314 static_cast<size_t>(handle->numInts) * sizeof(int));
335 const size_t numInts = static_cast<size_t>(buf[10]);
342 if (numFds >= maxNumber || numInts >= (maxNumber - 11)) {
345 ALOGE("unflatten: numFds or numInts is too large: %zd, %zd",
346 numFds, numInts);
350 const size_t sizeNeeded = (11 + numInts) * sizeof(int);
361 if (numFds || numInts) {
368 static_cast<int>(numFds), static_cast<int>(numInts));
    [all...]
  /frameworks/base/core/jni/
android_util_StringBlock.cpp 129 static const int numInts = sizeof(ResStringPool_span)/sizeof(jint);
132 num*numInts, numInts,
  /hardware/qcom/display/msm8960/libgralloc/
gralloc_priv.h 202 numInts = sNumInts;
216 h->numInts != sNumInts || h->numFds != sNumFds ||
223 h ? h->numInts : -1, sNumInts,
  /hardware/qcom/display/msm8974/libgralloc/
gralloc_priv.h 199 numInts = sNumInts;
213 h->numInts != sNumInts || h->numFds != sNumFds ||
220 h ? h->numInts : -1, sNumInts,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UPropertyAliases.java 93 int numInts=(nextOffset-offset)/4;
94 valueMaps=new int[numInts];
95 for(int i=0; i<numInts; ++i) {
  /hardware/qcom/display/msm8084/libgralloc/
gralloc_priv.h 243 numInts = sNumInts;
257 h->numInts != sNumInts || h->numFds != sNumFds ||
265 h ? h->numInts : -1, sNumInts,
  /hardware/qcom/display/msm8226/libgralloc/
gralloc_priv.h 246 numInts = sNumInts();
260 h->numInts != sNumInts() || h->numFds != sNumFds ||
268 h ? h->numInts : -1, sNumInts(),
  /hardware/qcom/display/msm8994/libgralloc/
gralloc_priv.h 254 numInts = sNumInts();
268 h->numInts != sNumInts() || h->numFds != sNumFds ||
276 h ? h->numInts : -1, sNumInts(),
  /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;
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngGrallocBufferMapper.cpp 35 mClonedHandle = native_handle_create(h->numFds, h->numInts);
44 memcpy(mClonedHandle->data + h->numFds, h->data + h->numFds, h->numInts*sizeof(int));
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/tangier/
TngGrallocBufferMapper.cpp 35 mClonedHandle = native_handle_create(h->numFds, h->numInts);
44 memcpy(mClonedHandle->data + h->numFds, h->data + h->numFds, h->numInts*sizeof(int));
  /frameworks/native/libs/binder/
Parcel.cpp 863 err = writeInt32(handle->numInts);
873 err = write(handle->data + handle->numFds, sizeof(int)*handle->numInts);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
RIL.java     [all...]
  /hardware/ril/libril/
ril.cpp     [all...]
  /hardware/qcom/media/mm-video-legacy/vidc/venc/src/
omx_video_base.cpp     [all...]
  /hardware/qcom/media/mm-video-v4l2/vidc/venc/src/
omx_video_base.cpp     [all...]
video_encoder_device_v4l2.cpp     [all...]
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/54.1.1/
icu4j-54.1.1.jar 

Completed in 673 milliseconds