Searched refs:map (Results 51 - 75 of 174) sorted by relevance

1234567

/barrelfish-2018-10-04/include/vm/
H A Dvm_fault.c123 vm_map_t map; member in struct:faultstate
150 vm_map_lookup_done(fs->map, fs->entry);
200 * FALSE, one for the map entry with MAP_ENTRY_NOSYNC
246 * requiring the given permissions, in the map specified.
248 * associated physical map.
256 * The map in question must be referenced, and remains so.
260 vm_fault(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type, argument
270 if (map != kernel_map && KTRPOINT(td, KTR_FAULT))
273 result = vm_fault_hold(map, trunc_page(vaddr), fault_type, fault_flags,
276 if (map !
283 vm_fault_hold(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type, int fault_flags, vm_page_t *m_hold) argument
1217 vm_fault_quick_hold_pages(vm_map_t map, vm_offset_t addr, vm_size_t len, vm_prot_t prot, vm_page_t *ma, int max_count) argument
[all...]
H A Dvm_extern.h82 int vm_fault_hold(vm_map_t map, vm_offset_t vaddr, vm_prot_t fault_type,
84 int vm_fault_quick_hold_pages(vm_map_t map, vm_offset_t addr, vm_size_t len,
H A Dvm_pageout.c575 * The object and map must be locked.
655 * deactivate some number of pages in a map, try to do it fairly, but
659 vm_pageout_map_deactivate_pages(map, desired)
660 vm_map_t map;
667 if (!vm_map_trylock(map))
677 tmpe = map->header.next;
678 while (tmpe != &map->header) {
698 vm_pageout_object_deactivate_pages(map->pmap, bigobj, desired);
705 tmpe = map->header.next;
706 while (tmpe != &map
1365 vm_map_t map; local
[all...]
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/drivers/net/mlx4/
H A Dpd.c160 uar->map = NULL;
204 uar->map = (void *) (uar->pfn << PAGE_SHIFT);
205 if (!uar->map) {
233 /*iounmap(uar->map);*/
261 iounmap(bf->uar->map);
/barrelfish-2018-10-04/usr/tests/octopus/
H A Dd2bench2.c113 uint64_t map = 0; // ensure attributes are unique local
118 if ( (map & (1 << idx)) == 0) {
122 map |= 1 << idx;
/barrelfish-2018-10-04/usr/vnode_map_32/
H A Dvnode_map_32.c87 err = pmap->f.map(pmap, address, smallframe, 0, bits, PMAP_DEFAULT_ACCESS, NULL, &bits);
127 printf("map %i\n", i);
128 err = pmap->f.map(pmap, address, frame, 0, bytes, PMAP_DEFAULT_ACCESS | 0x0100, NULL, &bytes);
170 printf("map %i\n", i);
171 err = pmap->f.map(pmap, address, frame, 0, bytes, PMAP_DEFAULT_ACCESS | 0x0100, NULL, &bytes);
/barrelfish-2018-10-04/lib/libc/nls/
H A DMakefile.inc8 SYM_MAPS+=${LIBC_SRCTOP}/nls/Symbol.map
/barrelfish-2018-10-04/lib/libc/quad/
H A DMakefile.inc25 SYM_MAPS+=${LIBC_SRCTOP}/quad/Symbol.map
/barrelfish-2018-10-04/lib/libc/xdr/
H A DMakefile.inc9 SYM_MAPS+= ${LIBC_SRCTOP}/xdr/Symbol.map
/barrelfish-2018-10-04/lib/msun/i387/
H A DMakefile.inc22 SYM_MAPS += ${.CURDIR}/i387/Symbol.map
/barrelfish-2018-10-04/tools/harness/tests/
H A Dcaps_next.py83 results = map(str.strip, results)
106 results = map(str.strip, results)
/barrelfish-2018-10-04/lib/libc/locale/
H A Dcollate.h116 char * map; member in struct:xlocale_collate
H A Drune.c131 if (frr[x].map == 0) {
198 rr[x].__map = frr[x].map;
216 rr[x].__map = frr[x].map;
224 rr[x].__map = frr[x].map;
H A Dcollate.c76 if (table->map && (table->maplen > 0)) {
77 (void) munmap(table->map, table->maplen);
115 char *map; local
145 map = mmap(NULL, sbuf.st_size, PROT_READ, MAP_PRIVATE, fd, 0);
147 if ((TMP = map) == NULL) {
152 (void) munmap(map, sbuf.st_size);
164 (void) munmap(map, sbuf.st_size);
175 if (i != (sbuf.st_size - (TMP - map))) {
176 (void) munmap(map, sbuf.st_size);
/barrelfish-2018-10-04/lib/nfs/
H A Dportmap_rpc.h28 mapping map; member in struct:pmaplist
H A Dportmap_xdr.c26 if (!xdr_mapping (xdrs, &objp->map))
/barrelfish-2018-10-04/lib/phoenix/
H A Dmap_reduce.h39 /* Argument to map function. This is specified by the splitter function.
103 * the memory address where this map task would be heavily accessing.
131 map_t map; /* Map function pointer, must be user defined */ member in struct:__anon1383
155 int num_map_threads; /* # of threads to run map tasks on.
182 * It is responsible for creating and scheduling all map and reduce tasks, and
184 * map tasks, map tasks to reduce tasks, and reduce tasks back to the
190 /* This should be called from the map function. It stores a key with key_size
/barrelfish-2018-10-04/doc/015-disk-driver-arch/
H A Drunning.tex70 On x86 architectures, the BIOS memory map can be retrieved to determine the
71 layout of memory. Some BIOSs report a memory map that is not sorted by
75 map is preprocessed to eliminate conflicts and ensure ascending addresses.
77 As the preprocessed memory map might be larger due to the case where one memory
79 first need to copy the map into a larger buffer. The memory map is then sorted
82 At the end, regions are page-aligned as Barrelfish can only map whole pages.
94 \caption{Memory map transformation}
/barrelfish-2018-10-04/include/barrelfish/
H A Dpmap.h26 errval_t (*map)(struct pmap* pmap, genvaddr_t vaddr, struct capref frame, member in struct:pmap_funcs
/barrelfish-2018-10-04/lib/devif/backends/net/mlx4/include/linux/
H A Dbitops.h405 static inline void bitmap_set(unsigned long *map, int start, int nr) { argument
406 unsigned long *p = map + BIT_WORD(start);
424 static inline void bitmap_clear(unsigned long *map, int start, int nr) { argument
425 unsigned long *p = map + BIT_WORD(start);
/barrelfish-2018-10-04/usr/vnode_map_test/
H A Dvnode_map_test.c109 // map as 4k and 2m frames with vnode_map
114 //printf("start 4k vnode map");
126 // FROM HERE: unmap and try to map as large page
140 // map as 2M large page
164 printf("\n\nstart 4k map with pmap\n");
174 printf(" map\n");
175 err = pmap->f.map(pmap, SAFE_PMAP_ADDR, smallframe, 0, bits, PMAP_DEFAULT_ACCESS, NULL, &bits);
191 printf("start 2m map with pmap\n");
200 printf("map %i\n", i);
201 err = pmap->f.map(pma
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/Shm/src/
H A Dalloc.c126 * We maintain a bitmap pages->map[] of all memory pages.
173 if (! pages->map[Block]) \
174 pages->map[Block] = _new_bitmap_block(hd); \
175 Ptr = &(pages->map[Block][MapWord(i)]); \
186 if (! pages->map[block]) \
187 pages->map[block] = _new_bitmap_block(hd);\
188 ptr = pages->map[block]; \
200 if (! pages->map[block]) \
201 pages->map[block] = _new_bitmap_block(hd);\
202 ptr = pages->map[bloc
[all...]
/barrelfish-2018-10-04/lib/libc/stdlib/jemalloc/
H A DMakefile.inc10 SYM_MAPS+=${LIBC_SRCTOP}/stdlib/jemalloc/Symbol.map
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Ddtls1.h111 unsigned long map; /* track 32 packets on 32-bit systems member in struct:dtls1_bitmap_st
/barrelfish-2018-10-04/lib/pager/
H A Dpager.c46 err = pmap->f.map(pmap, vaddr, frame, 0, 4096,
49 DEBUG_ERR(err, "pmap->f.map");

Completed in 318 milliseconds

1234567