Searched defs:map_size (Results 1 - 8 of 8) sorted by relevance

/external/qemu/android/utils/
H A Dmapfile.c161 size_t map_size; local
179 map_size = (size_t)(offset - map_offset + size);
182 if (map_size < size) {
209 converter.QuadPart = map_offset + map_size;
215 converter.LowPart, map_size);
226 mmap(0, map_size, PROT_READ, MAP_SHARED, (int)(ptrdiff_t)handle, map_offset);
/external/llvm/tools/lto/
H A Dlto.cpp80 size_t map_size,
82 return LTOModule::makeLTOModule(fd, path, file_size, map_size,
78 lto_module_create_from_fd_at_offset(int fd, const char *path, size_t file_size, size_t map_size, off_t offset) argument
H A DLTOModule.cpp218 size_t map_size,
223 map_size, offset, false)) {
216 makeLTOModule(int fd, const char *path, size_t file_size, size_t map_size, off_t offset, std::string &errMsg) argument
/external/webrtc/src/system_wrappers/source/
H A Dmap_unittest.cc139 const int map_size = lhs.Size(); local
140 if (map_size != rhs.Size()) {
156 return item_count == map_size;
211 const int map_size = compare_map.Size(); local
212 ASSERT_EQ(ascending_map_.Size(), map_size);
230 EXPECT_EQ(map_size, copy_count);
/external/qemu/android/
H A Dcharmap.c558 int map_size = 52; local
576 AARRAY_NEW0(char_map->entries, map_size);
590 if (map_size == char_map->num_entries) {
592 map_size += 10;
593 AARRAY_RENEW(entries, map_size);
/external/v8/test/cctest/
H A Dtest-serialize.cc406 int new_size, pointer_size, data_size, code_size, map_size, cell_size; local
417 CHECK_EQ(1, fscanf(fp, "map %d\n", &map_size));
428 map_size,
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator64.h366 uptr map_size = RoundUpMapSize(size);
367 void *map = MmapOrDie(map_size, "LargeMmapAllocator");
385 uptr map_size = RoundUpMapSize(h->size); local
397 UnmapOrDie(h, map_size);
/external/e2fsprogs/lib/ext2fs/
H A Dtdb.c228 tdb_len_t map_size; /* how much space has been mapped */ member in struct:tdb_context
840 if (len <= tdb->map_size)
847 (int)len, (int)tdb->map_size));
869 tdb->map_size = st.st_size;
928 "len=%d ret=%d (%s) map_size=%d\n",
930 (int)tdb->map_size));
974 int ret = munmap(tdb->map_ptr, tdb->map_size);
990 tdb->map_ptr = mmap(NULL, tdb->map_size,
1001 tdb->map_size, strerror(errno)));
1063 tdb->methods->tdb_oob(tdb, tdb->map_size
[all...]

Completed in 376 milliseconds