Searched refs:map (Results 176 - 200 of 286) sorted by path

1234567891011>>

/haiku/src/add-ons/kernel/drivers/network/wlan/ralinkwifi/dev/ral/
H A Drt2860var.h69 bus_dmamap_t map; member in struct:rt2860_tx_data
88 bus_dmamap_t map; member in struct:rt2860_rx_data
/haiku/src/add-ons/kernel/drivers/network/wlan/realtekwifi/dev/rtwn/pci/
H A Drtwn_pci_attach.c153 device_printf(sc->sc_dev, "could not load rx desc DMA map\n");
171 error = bus_dmamap_create(rx_ring->data_dmat, 0, &rx_data->map);
174 "could not create rx buf DMA map\n");
187 error = bus_dmamap_load(rx_ring->data_dmat, rx_data->map,
192 "could not load rx buf DMA map");
252 rx_data->map, BUS_DMASYNC_POSTREAD);
253 bus_dmamap_unload(rx_ring->data_dmat, rx_data->map);
257 bus_dmamap_destroy(rx_ring->data_dmat, rx_data->map);
258 rx_data->map = NULL;
286 device_printf(sc->sc_dev, "can't map t
[all...]
H A Drtwn_pci_rx.c137 bus_dmamap_sync(ring->data_dmat, rx_data->map, BUS_DMASYNC_POSTREAD);
138 bus_dmamap_unload(ring->data_dmat, rx_data->map);
140 error = bus_dmamap_load(ring->data_dmat, rx_data->map, mtod(m1, void *),
145 error = bus_dmamap_load(ring->data_dmat, rx_data->map,
214 bus_dmamap_sync(ring->data_dmat, rx_data->map, BUS_DMASYNC_POSTREAD);
277 bus_dmamap_sync(ring->data_dmat, data->map,
279 bus_dmamap_unload(ring->data_dmat, data->map);
H A Drtwn_pci_tx.c137 error = bus_dmamap_load_mbuf_sg(ring->data_dmat, data->map, m, segs,
140 device_printf(sc->sc_dev, "can't map mbuf (error %d)\n",
154 error = bus_dmamap_load_mbuf_sg(ring->data_dmat, data->map, m,
158 "can't map mbuf (error %d)\n", error);
177 bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_PREWRITE);
229 bus_dmamap_unload(ring->data_dmat, data->map);
233 data->map, m, segs, &nsegs, BUS_DMA_NOWAIT);
236 "can't map beacon (error %d)\n", error);
252 bus_dmamap_sync(ring->data_dmat, data->map, BUS_DMASYNC_PREWRITE);
H A Drtwn_pci_var.h33 bus_dmamap_t map; member in struct:rtwn_rx_data
50 bus_dmamap_t map; member in struct:rtwn_tx_data
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.h193 void SetMap(void* map) { fMap = map; } argument
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A Dufs2.h169 #define FFS_BLK_FREE 3 /* free range of blocks in map */
170 #define FFS_DIR_FREE 4 /* free specified dir inodes in map */
171 #define FFS_FILE_FREE 5 /* free specified file inodes in map */
490 /* inode map */ howmany((fs)->fs_ipg, NBBY) + \
491 /* block map */ howmany((fs)->fs_fpg, NBBY) +\
494 /* cluster map */ howmany(fragstoblks(fs, (fs)->fs_fpg), NBBY)))
525 u_int32_t cg_iusedoff; /* (u_int8) used inode map */
526 u_int32_t cg_freeoff; /* (u_int8) free block map */
529 u_int32_t cg_clusteroff; /* (u_int8) free cluster map */
597 * Extract the bits for a block from a map
[all...]
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DBPlusTree.cpp348 ExtentMapEntry map; local
350 map = fExtents[fCurMapIndex];
352 map = *targetMap;
354 if (map.br_state != 0)
365 map.br_startblock + howManyBlocksFurther);
379 howManyBlocksFurther, &map, XFS_BTREE)) {
399 howManyBlocksFurther, &map, XFS_BTREE)) {
414 howManyBlocksFurther, &map, XFS_BTREE)) {
444 ExtentMapEntry map; local
446 map
486 ExtentMapEntry& map = fExtents[fCurMapIndex]; local
612 SearchForMapInDirectoryBlock(uint64 blockNo, int entries, ExtentMapEntry** map, int type, int pathIndex) argument
[all...]
H A DBPlusTree.h130 void FillMapEntry(int num, ExtentMapEntry** map,
141 int entries, ExtentMapEntry** map,
H A DLeafDirectory.cpp134 ExtentMapEntry* map; local
136 map = fDataMap;
138 map = fLeafMap;
142 if (map->br_state !=0)
153 fInode->FileSystemBlockToAddr(map->br_startblock + howManyBlocksFurthur);
262 // map entry but is not the first block
271 // When the block isn't mapped in the current data map entry
H A DLeafDirectory.h113 void FillMapEntry(int num, ExtentMapEntry* map);
H A DNode.cpp111 ExtentMapEntry* map; local
113 map = fDataMap;
115 map = fLeafMap;
119 if (map->br_state != 0)
129 xfs_daddr_t readPos = fInode->FileSystemBlockToAddr(map->br_startblock
292 // map entry but is not the first block
301 // When the block isn't mapped in the current data map entry
H A DNode.h103 void FillMapEntry(int num, ExtentMapEntry* map);
H A DVerifyHeader.h22 int howManyBlocksFurther, ExtentMapEntry* map, int8 WhichDirectory)
38 if(map != NULL) {
39 uint64 actualBlockToRead = inode->FileSystemBlockToAddr(map->br_startblock
21 VerifyHeader(T* header, char* buffer, Inode* inode, int howManyBlocksFurther, ExtentMapEntry* map, int8 WhichDirectory) argument
/haiku/src/add-ons/kernel/partitioning_systems/common/
H A DPartitionMapWriter.cpp103 PartitionMapWriter::WriteMBR(const PartitionMap* map, bool writeBootCode) argument
105 if (map == NULL)
125 const PrimaryPartition* partition = map->PrimaryPartitionAt(i);
H A DPartitionMapWriter.h47 status_t WriteMBR(const PartitionMap* map,
/haiku/src/add-ons/kernel/partitioning_systems/intel/
H A DPartitionMapParser.cpp74 PartitionMapParser::Parse(const uint8* block, PartitionMap* map) argument
76 if (map == NULL)
82 fMap = map;
H A Dintel.cpp49 #define INTEL_PARTITION_MODULE_NAME "partitioning_systems/intel/map/v1"
116 PartitionMapCookie* map = new(nothrow) PartitionMapCookie; local
117 if (!map)
122 status_t error = parser.Parse(NULL, map);
125 delete map;
129 *cookie = map;
134 bool hasChildren = (map->CountNonEmptyPartitions() > 0);
175 PartitionMapCookie* map = (PartitionMapCookie*)cookie; local
183 partition->content_cookie = map;
188 PrimaryPartition* primary = map
240 PartitionMapCookie* map = (PartitionMapCookie*)cookie; local
[all...]
H A Dwrite_support.cpp107 // primary partition map doesn't naturally live in any other child partition
406 partition - intel partition map
421 PartitionMap* map = (PartitionMap*)partition->content_cookie; local
422 if (!map)
425 PrimaryPartition* primary = map->PrimaryPartitionAt(i);
543 PartitionMap* map = (PartitionMap*)partition->content_cookie;
544 if (!map)
548 PrimaryPartition* primary = map->PrimaryPartitionAt(i);
772 // clone the map
780 PartitionMapCookie* map local
824 PartitionMapCookie* map local
843 PartitionMapCookie* map = new(nothrow) PartitionMapCookie; local
861 PartitionMapCookie* map local
1347 PartitionMap map; local
[all...]
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.cpp165 map<string, string>::iterator it = fConfiguration->fStringSettings.
174 map<string, bool>::iterator it = fConfiguration->fBooleanSettings.
183 map<string, int32>::iterator it = fConfiguration->fIntSettings.
192 map<string, int32>::iterator it = fConfiguration->fDimensionSettings.
201 map<string, double>::iterator it = fConfiguration->fDoubleSettings.
/haiku/src/add-ons/translators/gif/
H A DGIFLoad.cpp169 color_map* map = (color_map*)system_colors(); local
171 fPalette->SetColor(x, map->color_list[x].red,
172 map->color_list[x].green, map->color_list[x].blue);
/haiku/src/add-ons/translators/jpeg/
H A DJPEGTranslator.cpp195 const color_map * map = system_colors(); local
199 rgb_color color = map->color_list[in[index++]];
/haiku/src/add-ons/translators/jpeg2000/
H A DJPEG2000Translator.cpp216 const color_map* map = system_colors(); local
219 rgb_color color = map->color_list[scanline[x]];
/haiku/src/add-ons/translators/ppm/
H A DPPMTranslator.cpp408 BBitmap* map local
410 printf("map rb = %" B_PRId32 "\n", map->BytesPerRow());
411 delete map;
/haiku/src/add-ons/translators/tiff/
H A DTIFFTranslator.cpp745 // Output to 8-bit Color Mapped TIFF 32 bits per color map entry
751 const color_map *map = system_colors(); local
752 if (map) {
758 red[i] = map->color_list[i].red * 256 + map->color_list[i].red;
759 green[i] = map->color_list[i].green * 256 + map->color_list[i].green;
760 blue[i] = map->color_list[i].blue * 256 + map->color_list[i].blue;

Completed in 263 milliseconds

1234567891011>>