Lines Matching defs:value
85 /* If you change this value, you probably
110 void *value;
231 __glxHashLookup(__glxHashTable * t, unsigned long key, void **value)
242 *value = bucket->value;
247 __glxHashInsert(__glxHashTable * t, unsigned long key, void *value)
263 bucket->value = value;
293 __glxHashNext(__glxHashTable * t, unsigned long *key, void **value)
300 *value = table->p1->value;
311 __glxHashFirst(__glxHashTable * t, unsigned long *key, void **value)
320 return __glxHashNext(table, key, value);
377 check_table(__glxHashTablePtr table, unsigned long key, unsigned long value)
386 table->magic, key, value, retval);
390 key, value, retval);
393 if (value != retval)
394 printf("Bad value: key = %lu, expected = %lu, returned = %lu\n",
395 key, value, retval);
399 retcode, key, value, retval);