Searched refs:map (Results 101 - 125 of 174) sorted by relevance

1234567

/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dd1_pkt.c1555 if (shift >= sizeof(bitmap->map)*8)
1557 else if (bitmap->map & (1UL<<shift))
1575 if (shift < sizeof(bitmap->map)*8)
1576 bitmap->map <<= shift, bitmap->map |= 1UL;
1578 bitmap->map = 1UL;
1583 if (shift < sizeof(bitmap->map)*8)
1584 bitmap->map |= 1UL<<shift;
/barrelfish-2018-10-04/usr/eclipseclp/Contrib/
H A DMakefile.in17 logarr.pl map.pl metutl.pl occur.pl order.pl \
/barrelfish-2018-10-04/lib/openssl-1.0.0d/VMS/
H A Dmkshared.com121 $! libmap The name of the map file to write
146 $ link/map='libmap'/full/share='libgoal' 'libopt'/option
237 $ link/map='libmap'/full/share='libgoal' 'libopt'/option
/barrelfish-2018-10-04/lib/libc/gen/
H A Dgetgrent.c1076 char *map; local
1092 map = "group.byname";
1096 map = "group.bygid";
1099 map = "group.byname";
1136 rv = yp_first(st->domain, map, &st->key,
1142 rv = yp_next(st->domain, map, key, keylen,
1159 rv = yp_match(st->domain, map, buffer, strlen(buffer),
H A Dgetpwent.c1220 * doesn't have the map, or the YPPROC_ORDER procedure isn't supported by
1302 char map[YPMAXMAP]; local
1338 rv = nis_map(st->domain, how, map, sizeof(map), &master);
1362 rv = yp_first(st->domain, map, &st->key,
1368 rv = yp_next(st->domain, map, key, keylen,
1384 rv = yp_match(st->domain, map, buffer, strlen(buffer),
/barrelfish-2018-10-04/kernel/arch/x86/
H A Dstartup_x86.c192 #define PRINT_REGIONS(map, map_length) do {\
193 for(char * printcur = map; printcur < map + map_length;) {\
252 * Currently we're not able to map regions that are <4kB so we
393 // we can only map pages. Therefore page align regions
/barrelfish-2018-10-04/doc/004-virtual_memory/
H A DVirtualMemory.tex128 The map invocation can create multi-page mappings in one system call, as long
130 In the case of mappings that cross page table boundaries, we need a map
133 Additionally, the map invocation can be used to create superpages (e.g. 2MB
/barrelfish-2018-10-04/lib/libc/locale/
H A DMakefile.inc32 SYM_MAPS+=${LIBC_SRCTOP}/locale/Symbol.map
/barrelfish-2018-10-04/lib/libc/net/
H A DMakefile.inc23 SYM_MAPS+=${LIBC_SRCTOP}/net/Symbol.map
/barrelfish-2018-10-04/lib/libc/string/
H A DMakefile.inc30 SYM_MAPS+= ${LIBC_SRCTOP}/string/Symbol.map
/barrelfish-2018-10-04/lib/phoenix/
H A Dmap_reduce.c128 /* Internal map reduce state. */
132 int num_map_tasks; /* # of map tasks. */
134 int chunk_size; /* # of units of data for each map task. */
136 int num_map_threads; /* # of threads for map tasks. */
142 bool oneOutputQueuePerMapTask; /* One output queue per map task? */
148 map_t map; /* Map function. */ member in struct:__anon1376
222 static void map(mr_env_t* mr);
249 assert (args->map != NULL);
294 /* Run map tasks and get intermediate values. */
296 map (en
1814 static void map (mr_env_t* env) function
[all...]
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dmap.c243 static void map(int(*f)(int),int *list, int **newlist) function
276 printf("map: connecting to the SKB...\n");
278 printf("map: connected.\n");
309 //a square function on every element using map. Print the newly allocated result
319 map(functions[0], list1, &list2);
346 (st, "map", "map spawned", 0, 2);
437 fprintf(stderr, "map %lu: could not connect to the main map domain.\n"
/barrelfish-2018-10-04/usr/eclipseclp/Shm/src/
H A Dmemman.h141 bits32 *map[BITMAP_BLOCKS]; /* bitmap of pages (1 = free) */ member in struct:page_admin
/barrelfish-2018-10-04/lib/barrelfish/vspace/
H A Dmemobj_fixed.c275 err = pmap->f.map(pmap, base + vregion_offset + offset, fixed->frames[slot],
H A Dmemobj_numa.c289 * create a copy of the capability to map it as a capability can only
303 /* map the copy */
304 err = pmap->f.map(pmap, base + vregion_offset + offset, copy,
H A Dmemobj_one_frame.c189 err = pmap->f.map(pmap, vregion_base + vregion_off, one_frame->frame,
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/
H A Dmapcolour.tcl37 # colouring a map: 1 if yes, 0 if no
78 # select a new map data file and get ECLiPSe side to compile the file
79 # via an ERPC call to init_map/2. The maximum size for a map using the
86 set file [tk_getOpenFile -defaultextension ".map" -filetypes {{{Map Data} {.map}}} -title "Select a Map" -initialdir [pwd]]
92 # allow the user to set the actual map size to colour with a particular
93 # map data file. An ERPC call is made to get_map_data/1 when the size is
95 # position of the countries for a map of this size. This produces the
96 # initial uncoloured map
100 if {$is_colouring} return ;# change map siz
[all...]
/barrelfish-2018-10-04/tools/harness/machines/
H A Dpandaboard.py179 output = map(str.strip, output.split("\n"))
/barrelfish-2018-10-04/include/vm/
H A Dvm_object.c1288 * Split the pages in a map entry into a new object. This affords
2124 * cause allocation of the separate object for the map
2415 _vm_object_in_map(vm_map_t map, vm_object_t object, vm_map_entry_t entry) argument
2422 if (map == 0)
2426 tmpe = map->header.next;
2427 entcount = map->nentries;
2428 while (entcount-- && (tmpe != &map->header)) {
2429 if (_vm_object_in_map(map, object, tmpe)) {
2478 * make sure that internal objs are in a map somewhere
2490 "vmochk: internal obj is not in a map
[all...]
/barrelfish-2018-10-04/doc/021-cpudriver/
H A Dcpudriver.tex143 function called \fnname{start\_aps\_x86\_64\_start} will afterwards map in the
169 \item \textbf{Number of base-page-sized pages to map:} If non-zero, this
172 of the region (starting from offset zero) to map.
/barrelfish-2018-10-04/lib/libc/rpc/
H A DMakefile.inc29 SYM_MAPS+=${LIBC_SRCTOP}/rpc/Symbol.map
/barrelfish-2018-10-04/lib/libc/stdio/
H A DMakefile.inc35 SYM_MAPS+= ${LIBC_SRCTOP}/stdio/Symbol.map
/barrelfish-2018-10-04/usr/drivers/solarflair/sfxge/common/
H A Defsys.h131 sfxge_map_mbuf_fast(bus_dma_tag_t tag, bus_dmamap_t map,
140 bus_dmamap_load_mbuf_sg(tag, map, m, seg, &nsegstmp, 0);
/barrelfish-2018-10-04/lib/vfs/
H A Dmmap.c46 // Walk the ordered list to find the matching frame, but don't map it yet
79 // map frame writable at temporary location so that we can safely fill it
116 // map at target address with appropriate flags
117 err = pmap->f.map(pmap, vregion_base + map_offset, walk->frame, 0,
134 * \param filesize Size of file data to map, anything above this is zero-filled
225 * \brief Wrapper to create and map a file object, optionally at a fixed address
/barrelfish-2018-10-04/usr/drivers/usb/usb_keyboard/
H A Dusb_keyboard_keymap.h403 uint8_t map[8]; member in struct:usb_key_map
530 static uint32_t accent_map = { 15, /* iso8859 accent map */

Completed in 613 milliseconds

1234567