Lines Matching refs:num
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
1092 num,sizeof(type2), \
1097 # define OBJ_bsearch_ex(type1,key,type2,base,num,cmp,flags) \ argument
1099 num,sizeof(type2), \
1104 int OBJ_new_nid(int num);