Lines Matching refs:base
1018 const void *OBJ_bsearch_(const void *key, const void *base, int num, int size,
1020 const void *OBJ_bsearch_ex_(const void *key, const void *base, int num,
1028 scope type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1033 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1069 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
1071 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
1083 type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
1085 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
1090 # define OBJ_bsearch(type1,key,type2,base,num,cmp) \ argument
1091 ((type2 *)OBJ_bsearch_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \
1097 # define OBJ_bsearch_ex(type1,key,type2,base,num,cmp,flags) \ argument
1098 ((type2 *)OBJ_bsearch_ex_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \