Home | History | Annotate | Download | only in Xxf86dga

Lines Matching refs:mapList

405 static MapPtr *mapList = NULL;
413 old = mapList;
414 mapList = realloc(mapList, sizeof(MapPtr) * (numMaps + 1));
415 if (!mapList) {
416 mapList = old;
419 mapList[numMaps] = malloc(sizeof(MapRec));
420 if (!mapList[numMaps])
422 return mapList[numMaps++];
448 if (mapList[i]->physaddr == address &&
449 mapList[i]->size == size)
450 return mapList[i];