Home
last modified time | relevance | path

Searched refs:actualLength (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/external/recovery/minzip/
H A DSysUtil.c153 size_t fileLength, actualLength; in sysMapFileSegmentInShmem() local
172 actualLength = length + adjust; in sysMapFileSegmentInShmem()
174 memPtr = mmap(NULL, actualLength, PROT_READ, MAP_FILE | MAP_SHARED, in sysMapFileSegmentInShmem()
178 (int) actualLength, fd, (int) actualStart, strerror(errno)); in sysMapFileSegmentInShmem()
183 pMap->baseLength = actualLength; in sysMapFileSegmentInShmem()
/OK3568_Linux_fs/external/rk_pcba_test/pcba_minui/minzip/
H A DSysUtil.c153 size_t fileLength, actualLength; in sysMapFileSegmentInShmem() local
172 actualLength = length + adjust; in sysMapFileSegmentInShmem()
174 memPtr = mmap(NULL, actualLength, PROT_READ, MAP_FILE | MAP_SHARED, in sysMapFileSegmentInShmem()
178 (int) actualLength, fd, (int) actualStart, strerror(errno)); in sysMapFileSegmentInShmem()
183 pMap->baseLength = actualLength; in sysMapFileSegmentInShmem()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/gl/
H A Dattribute.cpp32 GLsizei actualLength; in getActiveAttributes() local
37 …MBGL_CHECK_ERROR(glGetActiveAttrib(id, i, maxAttributeLength, &actualLength, &size, &type, &attrib… in getActiveAttributes()
38 activeAttributes.emplace(std::string(attributeName, 0, actualLength)); in getActiveAttributes()