HomeSort by relevance Sort by last modified time
    Searched defs:mmap (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /bionic/libc/arch-arm64/syscalls/
mmap.S 5 ENTRY(mmap) function
14 END(mmap)
16 ALIAS_SYMBOL(mmap64, mmap)
  /bionic/libc/arch-mips64/syscalls/
mmap.S 5 ENTRY(mmap) function
25 END(mmap)
27 ALIAS_SYMBOL(mmap64, mmap)
  /bionic/libc/arch-x86_64/syscalls/
mmap.S 5 ENTRY(mmap) function
16 END(mmap)
18 ALIAS_SYMBOL(mmap64, mmap)
  /external/syslinux/com32/lib/syslinux/
memmap.c 46 struct syslinux_memmap **mmap = map; local
47 return syslinux_add_memmap(mmap, start, len, type);
52 struct syslinux_memmap *mmap; local
54 mmap = syslinux_init_memmap();
55 if (!mmap)
58 if (syslinux_scan_memory(syslinux_memory_map_callback, &mmap)) {
59 syslinux_free_memmap(mmap);
63 return mmap;
  /prebuilts/go/darwin-x86/src/runtime/
mmap.go 15 // mmap calls the mmap system call. It is implemented in assembly.
20 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int) func
cgo_mmap.go 5 // Support for memory sanitizer. See runtime/cgo/mmap.go.
23 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (unsafe.Pointer, int) { func
28 // that mmap uses the same value both as a pointer and
50 // sysMmap calls the mmap system call. It is implemented in assembly.
53 // callCgoMmap calls the mmap function in the runtime/cgo package
  /prebuilts/go/linux-x86/src/runtime/
mmap.go 15 // mmap calls the mmap system call. It is implemented in assembly.
20 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (p unsafe.Pointer, err int) func
cgo_mmap.go 5 // Support for memory sanitizer. See runtime/cgo/mmap.go.
23 func mmap(addr unsafe.Pointer, n uintptr, prot, flags, fd int32, off uint32) (unsafe.Pointer, int) { func
28 // that mmap uses the same value both as a pointer and
50 // sysMmap calls the mmap system call. It is implemented in assembly.
53 // callCgoMmap calls the mmap function in the runtime/cgo package
  /bionic/libc/bionic/
mmap.cpp 37 // mmap2(2) is like mmap(2), but the offset is in 4096-byte blocks, not bytes.
75 void* mmap(void* addr, size_t size, int prot, int flags, int fd, off_t offset) { function
  /device/linaro/bootloader/arm-trusted-firmware/plat/arm/common/
arm_bl1_fwu.c 51 bl1_mem_info_t *mmap; local
66 mmap = fwu_addr_map_secure;
68 mmap = fwu_addr_map_non_secure;
70 while (mmap[index].mem_size) {
71 if ((mem_base >= mmap[index].mem_base) &&
73 <= (mmap[index].mem_base +
74 mmap[index].mem_size)))
  /external/compiler-rt/lib/profile/
WindowsMMap.c 3 * https://git.uclibc.org/uClibc/tree/utils/mmap-windows.c
5 /* mmap() replacement for Windows
32 void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset) function
  /external/elfutils/tests/
elfgetzdata.c 41 && strcmp (argv[1], "mmap") != 0))
43 printf ("Usage: (read|mmap) files...\n");
47 bool mmap = strcmp (argv[1], "mmap") == 0; local
55 Elf *elf = elf_begin (fd, mmap ? ELF_C_READ_MMAP : ELF_C_READ, NULL);
  /external/syslinux/com32/elflink/ldlinux/
chainboot.c 45 struct syslinux_memmap *mmap = NULL; local
76 mmap = syslinux_memory_map();
77 if (!mmap)
146 syslinux_shuffle_boot_rm(fraglist, mmap, keeppxe, &regs);
151 if (mmap)
152 syslinux_free_memmap(mmap);
  /frameworks/support/compat/src/androidTest/java/androidx/core/graphics/
TypefaceCompatUtilTest.java 54 TypefaceCompatUtil.mmap(mContext, null, fileUri);
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
xlat_tables_v2_helpers.h 56 * The max size of the list is stored in `mmap_num`. `mmap` points to an
60 struct mmap_region *mmap; member in struct:xlat_ctx
149 .mmap = _ctx_name##_mmap, \
  /external/syslinux/com32/modules/
pmload.c 64 struct syslinux_memmap *mmap = NULL, *amap = NULL; local
79 mmap = syslinux_memory_map();
80 amap = syslinux_dup_memmap(mmap);
81 if (!mmap || !amap)
85 syslinux_dump_memmap(mmap);
173 syslinux_dump_memmap(mmap);
183 syslinux_shuffle_boot_pm(ml, mmap, 0, &regs);
189 syslinux_free_memmap(mmap);
elf.c 66 struct syslinux_memmap *mmap = NULL, *amap = NULL; local
82 * Note: mmap is the memory map (containing free and zeroed regions)
118 mmap = syslinux_memory_map();
119 amap = syslinux_dup_memmap(mmap);
120 if (!mmap || !amap)
124 syslinux_dump_memmap(mmap);
159 (&mmap, addr + dsize, msize - dsize, SMT_ZERO))
239 syslinux_dump_memmap(mmap);
249 syslinux_shuffle_boot_pm(ml, mmap, 0, &regs);
255 syslinux_free_memmap(mmap);
    [all...]
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_arm.go 131 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
syscall_linux_mipsx.go 134 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_arm.go 131 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
syscall_linux_mipsx.go 134 func mmap(addr uintptr, length uintptr, prot int, flags int, fd int, offset int64) (xaddr uintptr, err error) { func
  /device/linaro/bootloader/arm-trusted-firmware/lib/xlat_tables/
xlat_tables_common.c 49 static mmap_region_t mmap[MAX_MMAP_REGIONS + 1]; variable
55 debug_print("mmap:\n");
56 mmap_region_t *mm = mmap;
70 mmap_region_t *mm = mmap;
71 mmap_region_t *mm_last = mm + ARRAY_SIZE(mmap) - 1;
93 for (mm = mmap; mm->size; ++mm) {
133 mm = mmap; /* Restore pointer to the start of the array */
137 /* Find correct place in mmap to insert new region */
385 init_xlation_table_inner(mmap, base_va, table, level);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_mmap.py 6 mmap = import_module('mmap') variable
8 PAGESIZE = mmap.PAGESIZE
23 # Test mmap module on Unix systems and Windows
25 # Create a file to be mmap'ed.
33 m = mmap.mmap(f.fileno(), 2 * PAGESIZE)
61 # Test doing a regular expression match in an mmap'ed file
64 self.fail('regex match on mmap failed!')
83 # Try to seek beyond end of mmap...
    [all...]
  /external/syslinux/com32/chain/
chain.c 148 struct syslinux_memmap *mmap; local
155 mmap = syslinux_memory_map();
157 if (!mmap) {
254 syslinux_add_memmap(&mmap, endimage, 0xa0000 - endimage, SMT_RESERVED);
260 syslinux_shuffle_boot_rm(mlist, mmap, opt.keeppxe, &opt.regs);
600 * Prepare boot-time mmap data. We should to it here, as manglers could
  /external/syslinux/com32/mboot/
map.c 38 static struct syslinux_memmap *mmap = NULL, *amap = NULL; variable in typeref:struct:syslinux_memmap
59 (pad && syslinux_add_memmap(&mmap, start + len, pad, SMT_ZERO))) {
83 * Note: mmap is the memory map (containing free and zeroed regions)
88 mmap = syslinux_memory_map();
89 amap = syslinux_dup_memmap(mmap);
90 if (!mmap || !amap) {
96 syslinux_dump_memmap(mmap);
213 (&mmap, addr + dsize, msize - dsize, SMT_ZERO)) {
311 (&mmap, bss_addr, bss_len, SMT_ZERO)) {
341 syslinux_add_memmap(&mmap, regs.esp, 32, SMT_ZERO)
    [all...]

Completed in 369 milliseconds

1 2 3 4 5 6 7