Home | History | Annotate | Download | only in Xxf86dga

Lines Matching defs:mapList

400 static MapPtr *mapList = NULL;
408 old = mapList;
409 mapList = realloc(mapList, sizeof(MapPtr) * (numMaps + 1));
410 if (!mapList) {
411 mapList = old;
414 mapList[numMaps] = malloc(sizeof(MapRec));
415 if (!mapList[numMaps])
417 return mapList[numMaps++];
443 if (mapList[i]->physaddr == address &&
444 mapList[i]->size == size)
445 return mapList[i];