Searched refs:map (Results 1 - 25 of 352) sorted by relevance

1234567891011>>

/haiku-fatelf/src/libs/expat/xmlwf/
H A Dcodepage.h5 int codepageMap(int cp, int *map);
H A Dcodepage.c14 codepageMap(int cp, int *map) argument
21 map[i] = -1;
29 map[j] = -2;
33 if (map[i] == -1) {
38 map[i] = n;
57 codepageMap(int cp, int *map) argument
/haiku-fatelf/src/add-ons/print/drivers/gutenprint/
H A DGPJobConfiguration.h13 #include <map>
32 map<string, string> fStringSettings;
33 map<string, bool> fBooleanSettings;
34 map<string, int32> fIntSettings;
35 map<string, int32> fDimensionSettings;
36 map<string, double> fDoubleSettings;
H A DGPCapabilities.h19 #include <map>
44 typedef map<int32, GPArray<struct BaseCap> > DriverSpecificCapabilitiesType;
/haiku-fatelf/headers/cpp/
H A Dmap.h34 using __STD::map;
H A Dstl.h9 #include <map>
H A Dstl_map.h48 class map { class
61 friend class map<_Key,_Tp,_Compare,_Alloc>;
74 _Rep_type _M_t; // red-black tree representing map
90 map() : _M_t(_Compare(), allocator_type()) {} function in class:map
91 explicit map(const _Compare& __comp, function in class:map
97 map(_InputIterator __first, _InputIterator __last) function in class:map
102 map(_InputIterator __first, _InputIterator __last, const _Compare& __comp, function in class:map
106 map(const value_type* __first, const value_type* __last) function in class:map
110 map(const value_type* __first, function in class:map
115 map(const_iterato function in class:map
119 map(const_iterator __first, const_iterator __last, const _Compare& __comp, function in class:map
125 map(const map<_Key,_Tp,_Compare,_Alloc>& __x) argument
127 operator =(const map<_Key, _Tp, _Compare, _Alloc>& __x) argument
210 operator ==(const map<_Key,_Tp,_Compare,_Alloc>& __x, const map<_Key,_Tp,_Compare,_Alloc>& __y) argument
216 operator <(const map<_Key,_Tp,_Compare,_Alloc>& __x, const map<_Key,_Tp,_Compare,_Alloc>& __y) argument
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/iconv/
H A Dgconv_builtin.c41 } map[] = variable in typeref:struct:builtin_map
67 for (cnt = 0; cnt < sizeof (map) / sizeof (map[0]); ++cnt)
68 if (strcmp (name, map[cnt].name) == 0)
71 assert (cnt < sizeof (map) / sizeof (map[0]));
73 step->__fct = map[cnt].fct;
74 step->__btowc_fct = map[cnt].btowc_fct;
80 step->__min_needed_from = map[cnt].min_needed_from;
81 step->__max_needed_from = map[cn
[all...]
/haiku-fatelf/src/add-ons/kernel/bus_managers/scsi/
H A Dvirtual_memory.cpp30 physical_entry *map, size_t max_entries, size_t *num_entries, size_t *mapped_len)
55 // map one iovec
64 if ((res = get_memory_map(range_start, range_len, &map[cur_idx],
79 if (map[tmp_idx].size == 0)
82 cur_mapped_len += map[tmp_idx].size;
99 && map[cur_idx].address
100 == map[cur_idx - 1].address + map[cur_idx - 1].size) {
102 map[cur_idx - 1].size += map[cur_id
29 get_iovec_memory_map(iovec *vec, size_t vec_count, size_t vec_offset, size_t len, physical_entry *map, size_t max_entries, size_t *num_entries, size_t *mapped_len) argument
[all...]
/haiku-fatelf/src/kits/media/
H A DBufferCache.h10 #include <map>
29 typedef std::map<media_buffer_id, BBuffer*> BufferMap;
H A DTimeSourceObjectManager.h9 #include <map>
31 typedef std::map<media_node_id, BTimeSource*> NodeMap;
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dkeymaps.c81 rl_copy_keymap (map)
82 Keymap map;
90 temp[i].type = map[i].type;
91 temp[i].function = map[i].function;
126 rl_discard_keymap (map)
127 Keymap map;
131 if (!map)
136 switch (map[i].type)
142 rl_discard_keymap ((Keymap)map[i].function);
146 free ((char *)map[
[all...]
/haiku-fatelf/src/bin/gdb/readline/
H A Dkeymaps.c78 rl_copy_keymap (map)
79 Keymap map;
86 temp[i].type = map[i].type;
87 temp[i].function = map[i].function;
126 rl_discard_keymap (map)
127 Keymap map;
131 if (!map)
136 switch (map[i].type)
142 rl_discard_keymap ((Keymap)map[i].function);
146 free ((char *)map[
[all...]
/haiku-fatelf/src/servers/registrar/mime/
H A DSupportingApps.h15 #include <map>
40 std::map<std::string, std::set<std::string> > fSupportedTypes; // app sig => set of supported types
41 std::map<std::string, std::set<std::string> > fSupportingApps; // mime type => set of supporting apps
42 std::map<std::string, std::set<std::string> > fStrandedTypes; // app sig => set of no longer supported types for whom the
/haiku-fatelf/src/add-ons/media/media-add-ons/video_mixer/
H A DBufferMixer.h11 #include <map>
25 std::map<int32, BBuffer *> groupedBuffers;
/haiku-fatelf/src/apps/cortex/support/
H A DProfileTarget.h40 #include <map>
70 typedef map<BString, block_entry> block_entry_map;
/haiku-fatelf/src/preferences/mouse/
H A DMouseSettings.cpp68 if (get_mouse_map(&fSettings.map) != B_OK)
148 printf("map:\t\tleft = %lu : middle = %lu : right = %lu\n",
149 fSettings.map.button[0], fSettings.map.button[2],
150 fSettings.map.button[1]);
201 mouse_map map; local
202 if (get_mouse_map(&map) == B_OK) {
203 map.button[0] = B_PRIMARY_MOUSE_BUTTON;
204 map.button[1] = B_SECONDARY_MOUSE_BUTTON;
205 map
325 SetMapping(mouse_map &map) argument
[all...]
/haiku-fatelf/src/tests/system/kernel/cache/
H A Dfile_map_test.cpp82 _Error("Creating file map failed.");
247 debugger("file map error");
288 Map* map = (Map*)vnode; local
289 return map->GetFileMap(offset, length, vecs, _vecCount);
310 Map map("shrink1", 4096);
311 map.Add(0, 1024, 4096).Add(1024, 3072, 8192);
312 map.Test();
313 map.SetSize(0).Clear();
314 map.Test();
315 map
[all...]
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Dzconf.h364 # pragma map(deflateInit_,"DEIN")
365 # pragma map(deflateInit2_,"DEIN2")
366 # pragma map(deflateEnd,"DEEND")
367 # pragma map(inflateInit_,"ININ")
368 # pragma map(inflateInit2_,"ININ2")
369 # pragma map(inflateEnd,"INEND")
370 # pragma map(inflateSync,"INSY")
371 # pragma map(inflateSetDictionary,"INSEDI")
372 # pragma map(inflate_blocks,"INBL")
373 # pragma map(inflate_blocks_ne
[all...]
/haiku-fatelf/src/servers/input/
H A DMouseSettings.cpp125 printf("map:\t\tleft = %lu : middle = %lu : right = %lu\n",
126 fSettings.map.button[0], fSettings.map.button[2],
127 fSettings.map.button[1]);
181 fSettings.map.button[0] = B_PRIMARY_MOUSE_BUTTON;
182 fSettings.map.button[1] = B_SECONDARY_MOUSE_BUTTON;
183 fSettings.map.button[2] = B_TERTIARY_MOUSE_BUTTON;
226 return fSettings.map.button[index];
231 MouseSettings::Mapping(mouse_map &map) const
233 map
245 SetMapping(mouse_map &map) argument
[all...]
/haiku-fatelf/src/tools/cppunit/
H A DBTestSuite.cpp5 using std::map;
26 for ( map<string, CppUnit::Test*>::iterator it = fTests.begin();
38 for ( map<string, CppUnit::Test*>::iterator it = fTests.begin();
57 for ( map<string, CppUnit::Test *>::const_iterator it = fTests.begin();
91 const map<string, CppUnit::Test*> &
/haiku-fatelf/src/libs/compat/freebsd_network/
H A Dfbsd_busdma_x86.c139 static int reserve_bounce_pages(bus_dma_tag_t dmat, bus_dmamap_t map,
141 static bus_addr_t add_bounce_page(bus_dma_tag_t dmat, bus_dmamap_t map,
414 /* Initialize the new map */
457 bus_dmamap_destroy(bus_dma_tag_t dmat, bus_dmamap_t map) argument
459 if (map != NULL && map != &nobounce_dmamap) {
460 if (STAILQ_FIRST(&map->bpages) != NULL) {
465 free(map, M_DEVBUF);
544 bus_dmamem_free(bus_dma_tag_t dmat, void *vaddr, bus_dmamap_t map) argument
547 * dmamem does not need to be bounced, so the map shoul
569 _bus_dmamap_load_buffer(bus_dma_tag_t dmat, bus_dmamap_t map, void *buf, bus_size_t buflen, pmap_t pmap, int flags, bus_addr_t *lastaddrp, bus_dma_segment_t *segs, int *segp, int first) argument
711 bus_dmamap_load(bus_dma_tag_t dmat, bus_dmamap_t map, void *buf, bus_size_t buflen, bus_dmamap_callback_t *callback, void *callback_arg, int flags) argument
753 bus_dmamap_load_mbuf(bus_dma_tag_t dmat, bus_dmamap_t map, struct mbuf *m0, bus_dmamap_callback2_t *callback, void *callback_arg, int flags) argument
796 bus_dmamap_load_mbuf_sg(bus_dma_tag_t dmat, bus_dmamap_t map, struct mbuf *m0, bus_dma_segment_t *segs, int *nsegs, int flags) argument
898 _bus_dmamap_unload(bus_dma_tag_t dmat, bus_dmamap_t map) argument
909 _bus_dmamap_sync(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op) argument
1092 reserve_bounce_pages(bus_dma_tag_t dmat, bus_dmamap_t map, int commit) argument
1111 add_bounce_page(bus_dma_tag_t dmat, bus_dmamap_t map, vm_offset_t vaddr, bus_size_t size) argument
1149 struct bus_dmamap *map; local
1180 struct bus_dmamap *map; local
[all...]
/haiku-fatelf/headers/tools/cppunit/
H A DTestSuite.h6 #include <map>
27 const std::map<std::string, CppUnit::Test*> &getTests() const;
30 std::map<std::string, CppUnit::Test*> fTests;
/haiku-fatelf/src/add-ons/media/plugins/mov_reader/libMOV/
H A DChunkSuperIndex.h31 #include <map>
41 typedef std::map<off_t, ChunkIndexPtr, std::less<off_t> > ChunkIndexArray;
/haiku-fatelf/src/servers/registrar/
H A DWatchingService.h30 #include <map>
50 typedef std::map<BMessenger,Watcher*> watcher_map;

Completed in 136 milliseconds

1234567891011>>