Lines Matching refs:temp
67 static void agp_remove_from_pool(struct agp_memory *temp)
74 DBG("mem=%p", temp);
75 if (agp_find_mem_by_key(temp->key) != NULL) {
76 next = temp->next;
77 prev = temp->prev;
199 static void agp_insert_into_pool(struct agp_memory * temp)
206 prev->prev = temp;
207 temp->next = prev;
209 agp_fe.current_controller->pool = temp;
338 struct agp_client *temp;
345 temp = client;
346 agp_remove_seg_from_client(temp);
347 priv = agp_find_private(temp->pid);
354 kfree(temp);
361 struct agp_memory *temp;
366 temp = memory;
368 agp_free_memory_wrap(temp);
490 struct agp_client *temp;
495 temp = agp_find_client_in_controller(agp_fe.current_controller, id);
496 return temp;