Home
last modified time | relevance | path

Searched refs:thisOffset (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/libs/androidfw/
DResourceTypes.cpp6735 uint32_t thisOffset; in getEntry() local
6753 thisOffset = dtohs(result->offset) * 4u; in getEntry()
6761 thisOffset = offset_from16(eindex16[realEntryIndex]); in getEntry()
6763 thisOffset = dtohl(eindex[realEntryIndex]); in getEntry()
6767 if (thisOffset == ResTable_type::NO_ENTRY) { in getEntry()
6784 bestOffset = thisOffset; in getEntry()
7836 uint32_t thisOffset; in print() local
7843 thisOffset = static_cast<uint32_t>(dtohs(entry->offset)) * 4u; in print()
7849 thisOffset = offset_from16(eindex16[entryIndex]); in print()
7851 thisOffset = dtohl(eindex[entryIndex]); in print()
[all …]
/frameworks/native/libs/binder/tests/parcel_fuzzer/
Dbinder.cpp379 size_t thisOffset = p.readUint32(); in __anona08a91671302() local
383 status_t status = p.compareDataInRange(thisOffset, p, otherOffset, length, &result); in __anona08a91671302()
/frameworks/base/core/jni/
Dandroid_os_Parcel.cpp627 jint thisOffset, jlong otherNativePtr, in android_os_Parcel_compareDataInRange() argument
637 thisParcel->compareDataInRange(thisOffset, *otherParcel, otherOffset, length, &result); in android_os_Parcel_compareDataInRange()
/frameworks/native/libs/binder/
DParcel.cpp694 status_t Parcel::compareDataInRange(size_t thisOffset, const Parcel& other, size_t otherOffset, in compareDataInRange() argument
696 if (len > INT32_MAX || thisOffset > INT32_MAX || otherOffset > INT32_MAX) { in compareDataInRange()
702 if (__builtin_add_overflow(thisOffset, len, &thisLimit) || thisLimit > mDataSize) { in compareDataInRange()
709 *result = memcmp(data() + thisOffset, other.data() + otherOffset, len); in compareDataInRange()
/frameworks/native/libs/binder/include/binder/
DParcel.h96 LIBBINDER_EXPORTED status_t compareDataInRange(size_t thisOffset, const Parcel& other,
/frameworks/native/include/binder/
DParcel.h96 LIBBINDER_EXPORTED status_t compareDataInRange(size_t thisOffset, const Parcel& other,