/AliOS-Things-master/components/posix/include/sys/ |
A D | mman.h | 15 void *mmap(void *addr, size_t length, int prot, int flags, int fd, off_t offset);
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | minigzip.c-bak | 176 /* Try first compressing with mmap. If mmap fails (minigzip used in a 197 /* Try compressing the input file at once using mmap. Return Z_OK if 207 caddr_t buf; /* mmap'ed buffer for the entire input file */ 211 /* Determine the size of the file, needed for mmap: */ 216 /* Now do the actual mmap: */ 217 buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
|
/AliOS-Things-master/components/vfs/include/ |
A D | vfs_types.h | 99 void* (*mmap)(vfs_file_t *fp, void *addr, size_t length, int prot, int flags, member
|
/AliOS-Things-master/components/vfs/include/aos/ |
A D | vfs.h | 103 void* (*mmap)(file_t *fp, size_t len); member
|
/AliOS-Things-master/components/amp_adapter/portfiles/aos/ |
A D | vfs.h | 103 void* (*mmap)(file_t *fp, size_t len); member
|
/AliOS-Things-master/components/amp_adapter/ |
A D | vfs.h | 103 void* (*mmap)(file_t *fp, size_t len); member
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/libtiff/ |
A D | tif_unix.c | 171 mmap(0, (size_t)sizem, PROT_READ, MAP_SHARED, fdh.fd, 0); in _tiffMapProc()
|
A D | tif_config.h.cmake.in | 77 /* Define to 1 if you have the `mmap' function. */
|
A D | tif_config.h.in | 104 /* Define to 1 if you have the `mmap' function. */
|
/AliOS-Things-master/components/SDL2/src/video/wayland/ |
A D | SDL_waylandmouse.c | 116 d->shm_data = mmap(NULL, in create_buffer_from_shm()
|
A D | SDL_waylandevents.c | 597 map_str = mmap(NULL, size, PROT_READ, MAP_SHARED, fd, 0); in keyboard_handle_keymap()
|
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/ |
A D | SConstruct | 147 conf.CheckFunc('mmap')
|
A D | CMakeLists.txt | 410 check_function_exists(mmap HAVE_MMAP)
|
A D | configure.ac | 424 AC_CHECK_FUNCS([floor isascii memmove memset mmap pow setmode snprintf sqrt \
|
A D | ChangeLog | 143 Effective for mmap'ed case. And non-mmap'ed case, but restricted 2404 is a pointer into an mmap()ed file via TIFF_BUFFERMMAP flag. 6066 * libtiff/tif_open.c: Use dummy mmap/munmap functions in 7454 - Fixed mmap() test to avoid MMAP_FIXED ... it isn't available on HP
|
A D | configure | 18205 for ac_func in floor isascii memmove memset mmap pow setmode snprintf sqrt \
|
/AliOS-Things-master/components/drivers/core/fbdev/src/ |
A D | fb.c | 38 .mmap = fb_mmap,
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/test/ |
A D | minigzip.c | 412 buf = mmap((caddr_t) 0, buf_len, PROT_READ, MAP_SHARED, ifd, (off_t)0);
|
/AliOS-Things-master/components/udisplay/src/ |
A D | udisplay.c | 213 fbaddr = (uint8_t *)mmap(NULL, fb_size, 0, 0, fd, 0); in udisplay_init()
|
/AliOS-Things-master/components/vfs/ |
A D | vfs.c | 902 if ((node->ops.i_ops->mmap) != NULL) { in vfs_mmap() 903 ret = (node->ops.i_ops->mmap)(f, start, len, prot, flags, fd, offset); in vfs_mmap()
|
/AliOS-Things-master/components/SDL2/src/image/external/ |
A D | tiff-4.0.9-win32config.patch | 181 +/* Define to 1 if you have the `mmap' function. */
|
/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_malloc.c | 1361 #define CALL_MMAP(s) mmap(0, (s), MMAP_PROT, MMAP_FLAGS, -1, 0) 1371 mmap(0, (s), MMAP_PROT, MMAP_FLAGS, dev_zero_fd, 0)) : \ 1372 mmap(0, (s), MMAP_PROT, MMAP_FLAGS, dev_zero_fd, 0))
|
/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/ruy/ruy/ |
A D | test.h | 407 mmap(nullptr, rounded_buffer_size + page_size, PROT_READ | PROT_WRITE,
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | ChangeLog | 1127 - in minigzip, try mmap'ing the input file first (Miguel Albrecht)
|