Searched defs:map (Results 176 - 200 of 1099) sorted by relevance

1234567891011>>

/external/linux-tools-perf/util/
H A Dcpumap.c20 cpus->map[i] = i;
35 memcpy(cpus->map, tmp_cpus, payload_size);
175 cpus->map[0] = -1;
181 void cpu_map__delete(struct cpu_map *map) argument
183 free(map);
H A Dthread.c103 void thread__insert_map(struct thread *self, struct map *map) argument
105 map_groups__fixup_overlappings(&self->mg, map, verbose, stderr);
106 map_groups__insert(&self->mg, map);
/external/llvm/lib/MC/
H A DMCModule.cpp21 void MCModule::map(MCAtom *NewAtom) { function in class:MCModule
38 map(NewAtom);
44 map(NewAtom);
/external/llvm/unittests/ADT/
H A DDenseMapTest.cpp12 #include <map>
76 // allows all of the map implementations to be tested with shared
110 // Empty map tests
135 // Constant map tests
143 // A map with a single entry
238 // Make this more interesting by inserting 100 numbers into the map.
260 std::map<typename TypeParam::key_type, unsigned> visitedIndex;
262 // Insert 100 numbers into the map
311 DenseMap<unsigned, unsigned, TestDenseMapInfo> map; local
312 map[
345 SmallDenseMap<unsigned, unsigned, 32, ContiguousDenseMapInfo> map; local
[all...]
/external/llvm/utils/emacs/
H A Dtablegen-mode.el87 (defvar tablegen-mode-map nil) ; Create a mode-specific keymap.
89 (if (not tablegen-mode-map)
91 (setq tablegen-mode-map (make-sparse-keymap))
92 (define-key tablegen-mode-map "\t" 'tab-to-tab-stop)
93 (define-key tablegen-mode-map "\es" 'center-line)
94 (define-key tablegen-mode-map "\eS" 'center-paragraph))
98 \\{tablegen-mode-map}
102 (use-local-map tablegen-mode-map) ; Provides the local keymap.
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_transfer.c20 uint8_t *map = NULL; local
42 map = pipe_transfer_map(pipe, transfer);
43 if (map == NULL)
50 memcpy(map, data, box->width);
57 util_copy_rect(map,
66 map += transfer->layer_stride;
72 if (map)
/external/mesa3d/src/gallium/drivers/nouveau/
H A Dnouveau_context.h32 uint8_t *map; member in struct:nouveau_context::__anon22500
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_fragprog.c40 uint32_t *map; local
47 map = pipe_buffer_map(pipe, fp->buffer, PIPE_TRANSFER_WRITE, &transfer);
49 memcpy(map, fp->insn, fp->insn_len * 4);
52 *map++ = (fp->insn[i] >> 16) | (fp->insn[i] << 16);
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_query.c143 uint32_t temp, *map; local
155 map = r300->rws->buffer_map(q->cs_buf, r300->cs,
158 if (!map)
165 temp += util_le32_to_cpu(*map);
166 map++;
H A Dr300_transfer.c186 /* We cannot map a tiled texture directly because the data is
232 char *map; local
242 map = r300->rws->buffer_map(tex->cs_buf, r300->cs, transfer->usage);
244 if (!map) {
248 return map + r300_transfer(transfer)->offset +
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_resource_buffer.c108 sbuf->map.num_ranges = 0;
113 if (!sbuf->map.num_ranges) {
151 * the map of the hwbuf below to block, so preemptively
202 uint8_t *map; local
206 map = sbuf->swbuf;
212 map = sws->buffer_map(sws, sbuf->hwbuf, transfer->usage);
215 map = NULL;
218 if (map) {
219 ++sbuf->map.count;
220 map
[all...]
H A Dsvga_resource_buffer.h99 * Information about ongoing and past map operations.
118 } map; member in struct:svga_buffer
/external/mesa3d/src/gbm/backends/dri/
H A Dgbm_driint.h78 void *map; member in struct:gbm_dri_bo
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnouveau_bufferobj.c38 void *map = NULL; local
41 map = nbo->sys;
44 map = nbo->bo->map;
47 return map;
131 char *map; local
142 map = get_bufferobj_map(ctx, obj, flags);
143 if (!map)
146 obj->Pointer = map + offset;
H A Dnouveau_render.h63 int map[VERT_ATTRIB_MAX]; member in struct:nouveau_render_state
74 for (i = 0; attr = (render)->map[i], i < NUM_VERTEX_ATTRS; i++)
77 for (i = 0; attr = (render)->map[i], i < render->attr_count; i++) \
/external/mesa3d/src/mesa/swrast/
H A Ds_clear.c58 GLubyte *map; local
67 /* map dest buffer */
69 mapMode, &map, &rowStride);
70 if (!map) {
86 TYPE *row = (TYPE *) map; \
97 map += rowStride; \
116 TYPE *row = (TYPE *) map; \
132 map += rowStride; \
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_draw.c167 const GLuint *map; local
184 map = vbo->map_vp_none;
200 map = vbo->map_vp_arb;
219 const GLuint src = map[attr];
339 /* buffer allocation worked, now map the buffer */
369 printf("map %d..\n", exec->vtx.buffer_used);
H A Dvbo_save_draw.c141 const GLuint *map; local
162 map = vbo->map_vp_none;
177 map = vbo->map_vp_arb;
196 const GLuint src = map[attr];
/external/nist-sip/java/gov/nist/core/
H A DMultiValueMapImpl.java35 private HashMap<String, ArrayList<V>> map = new HashMap<String, ArrayList<V>>(); field in class:MultiValueMapImpl
45 ArrayList<V> keyList = map.get(key);
48 map.put(key, keyList);
56 Set pairs = map.entrySet();
72 Set pairs = map.entrySet();
79 map.clear();
83 ArrayList returnList = new ArrayList(map.size());
85 Set pairs = map.entrySet();
101 obj.map = (HashMap<Object, ArrayList<V>>) this.map
[all...]
/external/openfst/src/lib/
H A Dmapped-file.cc72 void *map = mmap(0, upsize, PROT_READ, MAP_SHARED, fd, pos - offset); local
73 char *data = reinterpret_cast<char*>(map);
74 if (close(fd) == 0 && map != MAP_FAILED) {
76 region.mmap = map;
83 << " from " << opts.source.c_str() << " to addr " << map;
/external/oprofile/daemon/liblegacy/
H A Dopd_mapping.c27 /* hash map device mmap */
48 perror("oprofiled: couldn't mmap hash map");
60 struct opd_map * map = list_entry(pos, struct opd_map, next); local
62 opd_delete_image(map->image);
63 free(map);
71 struct opd_map * map; local
76 map = malloc(sizeof(struct opd_map));
78 /* first map is the primary image */
87 map->image = image;
88 map
[all...]
H A Dopd_parse_proc.c29 * opd_add_ascii_map - parse an ASCII map string for a process
30 * @param proc process to add map to
34 * Attempt to parse the string @line for map information
128 /* dae assume than the first map added is the primary image name, this
133 struct opd_map * map = list_entry(pos, struct opd_map, next); local
134 if (!strcmp(map->image->name, image_name)) {
136 fprintf(stderr, "swap map for image %s from %s to %s\n", image_name, proc->name, map->image->name);
138 proc->name = xstrdup(map->image->name);
146 * a map o
[all...]
/external/qemu/android/utils/
H A Dintmap.c18 /* We implement the map as two parallel arrays.
25 * number of items in the map.
42 AIntMap* map; local
44 ANEW0(map);
45 map->size = 0;
46 map->capacity = 4;
47 map->keys = map->keys0;
48 map->values = map
75 aintMap_get( AIntMap* map, int key ) argument
81 aintMap_getWithDefault( AIntMap* map, int key, void* def ) argument
125 aintMap_set( AIntMap* map, int key, void* value ) argument
158 aintMap_del( AIntMap* map, int key ) argument
202 AIntMap* map; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/svga/
H A DSDL_svgaevents.c65 int map, i; local
68 for ( map=0; map<NUM_VGAKEYMAPS; ++map ) {
69 SDL_memset(vga_keymap[map], 0, NR_KEYS*sizeof(Uint16));
71 entry.kb_table = map;
91 vga_keymap[map][i]=entry.kb_value;
92 vga_keymap[map][i]+= '0';
95 vga_keymap[map][i]=K(KT_ASCII,'+');
98 vga_keymap[map][
346 int map; local
389 int map; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/
H A DSDL_vglevents.c66 SDL_SetError("Unable to get keyboard map");
278 int map; local
282 map = 0;
284 map += 1;
287 map += 2;
290 map += 4;
292 if ( !(vga_keymap->key[scancode].spcl & (0x80 >> map)) ) {
293 keysym->unicode = vga_keymap->key[scancode].map[map];

Completed in 2148 milliseconds

1234567891011>>