Home
last modified time | relevance | path

Searched refs:mmap (Results 1 – 17 of 17) sorted by relevance

/rk3399_rockchip-uboot/arch/arm/cpu/arm926ejs/armada100/
H A Ddram.c32 struct armd1ddr_map_registers mmap[2]; member
43 u32 CS_valid = 0x01 & readl(&ddr_regs->mmap[chip_sel].cs); in armd1_sdram_base()
48 result = readl(&ddr_regs->mmap[chip_sel].cs) & 0xFF800000; in armd1_sdram_base()
60 u32 CS_valid = 0x01 & readl(&ddr_regs->mmap[chip_sel].cs); in armd1_sdram_size()
65 result = readl(&ddr_regs->mmap[chip_sel].cs); in armd1_sdram_size()
/rk3399_rockchip-uboot/tools/
H A Dmingw_support.h41 void *mmap(void *, size_t, int, int, int, int);
H A Dmingw_support.c25 void *mmap(void *addr, size_t len, int prot, int flags, int fd, int offset) in mmap() function
H A Dubsha1.c46 ptr = (unsigned char *)mmap(0, len, in main()
H A Dfit_common.c72 ptr = mmap(0, sbuf->st_size, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0); in mmap_fdt()
H A Ddumpimage.c155 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0); in main()
H A Dmkimage.c406 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0); in main()
591 ptr = mmap(0, sbuf.st_size, PROT_READ|PROT_WRITE, MAP_SHARED, ifd, 0); in main()
674 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0); in copy_file()
H A Dmkenvimage.c197 filebuf = mmap(NULL, sizeof(*envptr) * filesize, PROT_READ, in main()
H A Daisimage.c241 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0); in ais_copy_image()
H A Dmips-relocs.c228 elf = mmap(NULL, st.st_size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); in main()
H A Drkcommon.c650 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, dfd, 0); in copy_file()
H A Dkwboot.c586 img = mmap(NULL, st.st_size, prot, flags, fd, 0); in kwboot_mmap_image()
H A Dimximage.c573 ptr = mmap(0, sbuf.st_size, PROT_READ, MAP_SHARED, ifd, 0); in copy_plugin_code()
/rk3399_rockchip-uboot/scripts/basic/
H A Dfixdep.c315 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in do_config_file()
436 map = mmap(NULL, st.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in print_deps()
/rk3399_rockchip-uboot/common/
H A Ddlmalloc.src120 mmap(), the worst case wastage is 8 bytes plus the remainder
121 from a system page (the minimal mmap unit); typically 4096 bytes.
168 Define to non-zero to optionally make malloc() use mmap() to
208 controlling interaction with host system routines (sbrk, mmap, etc).
320 mmap-based options are not currently supported in WIN32.
467 Define HAVE_MMAP to optionally make malloc() use mmap() to
638 The trim threshold and the mmap control parameters (see below)
645 mmap threshold of 192K led to near-minimal long term resource
664 sbrk, mmap, and munmap otherwise degrade performance, the default
716 M_MMAP_THRESHOLD is the request size threshold for using mmap()
[all …]
H A Ddlmalloc.c952 p = (mchunkptr)mmap(0, size, PROT_READ|PROT_WRITE,
960 p = (mchunkptr)mmap(0, size, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
/rk3399_rockchip-uboot/arch/sandbox/cpu/
H A Dos.c146 hdr = mmap(NULL, length + sizeof(*hdr), PROT_READ | PROT_WRITE, in os_malloc()