Home | History | Annotate | Download | only in objects

Lines Matching full:obj_bsearch_

1014 const void *	OBJ_bsearch_(const void *key,const void *base,int num,int size,
1024 OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1029 type2 * OBJ_bsearch_##nm(type1 *key, type2 const *base, int num)
1065 static type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
1067 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
1079 type2 *OBJ_bsearch_##nm(type1 *key, type2 const *base, int num) \
1081 return (type2 *)OBJ_bsearch_(key, base, num, sizeof(type2), \
1087 ((type2 *)OBJ_bsearch_(CHECKED_PTR_OF(type1,key),CHECKED_PTR_OF(type2,base), \