Lines Matching refs:temp
65 static void agp_remove_from_pool(struct agp_memory *temp)
72 DBG("mem=%p", temp);
73 if (agp_find_mem_by_key(temp->key) != NULL) {
74 next = temp->next;
75 prev = temp->prev;
197 static void agp_insert_into_pool(struct agp_memory * temp)
204 prev->prev = temp;
205 temp->next = prev;
207 agp_fe.current_controller->pool = temp;
336 struct agp_client *temp;
343 temp = client;
344 agp_remove_seg_from_client(temp);
345 priv = agp_find_private(temp->pid);
352 kfree(temp);
359 struct agp_memory *temp;
364 temp = memory;
366 agp_free_memory_wrap(temp);
488 struct agp_client *temp;
493 temp = agp_find_client_in_controller(agp_fe.current_controller, id);
494 return temp;