Lines Matching refs:attrtable
162 struct ATTR **attrtable; variable
265 if (key < attrtable[mid]->key) in getattrentry()
268 if (key > attrtable[mid]->key) in getattrentry()
276 if ((low < attrcount) && (attrtable[low]->key == key)) { in getattrentry()
277 pa = attrtable[low]; in getattrentry()
281 attrtable[low] = pa; in getattrentry()
285 if (!low && attrcount && (attrtable[0]->key > key)) in getattrentry()
290 old = attrtable; in getattrentry()
291 attrtable = (struct ATTR**)realloc(attrtable, in getattrentry()
293 if (attrtable) { in getattrentry()
296 attrtable[high] in getattrentry()
297 = attrtable[high - 1]; in getattrentry()
298 attrtable[mid] = pa; in getattrentry()
300 attrtable = old; in getattrentry()
302 attrtable = (struct ATTR**) in getattrentry()
304 attrtable[0] = pa; in getattrentry()
4394 attrtable = (struct ATTR**)NULL; in main()
4424 free(attrtable[i]); in main()
4425 free(attrtable); in main()