Lines Matching refs:current
5976 int current, next; in AddSetParmEntryToBatch() local
5981 current = GET_FIRST_PARAM_ID(p_table); in AddSetParmEntryToBatch()
5982 if (position == current){ in AddSetParmEntryToBatch()
5984 } else if (position < current){ in AddSetParmEntryToBatch()
5985 SET_NEXT_PARAM_ID(position, p_table, current); in AddSetParmEntryToBatch()
5989 while (position > GET_NEXT_PARAM_ID(current, p_table)) in AddSetParmEntryToBatch()
5990 current = GET_NEXT_PARAM_ID(current, p_table); in AddSetParmEntryToBatch()
5993 if (position != GET_NEXT_PARAM_ID(current, p_table)) { in AddSetParmEntryToBatch()
5994 next = GET_NEXT_PARAM_ID(current, p_table); in AddSetParmEntryToBatch()
5995 SET_NEXT_PARAM_ID(current, p_table, position); in AddSetParmEntryToBatch()
6029 int current, next; in AddGetParmEntryToBatch() local
6034 current = GET_FIRST_PARAM_ID(p_table); in AddGetParmEntryToBatch()
6035 if (position == current){ in AddGetParmEntryToBatch()
6037 } else if (position < current){ in AddGetParmEntryToBatch()
6038 SET_NEXT_PARAM_ID(position, p_table, current); in AddGetParmEntryToBatch()
6042 while (position > GET_NEXT_PARAM_ID(current, p_table)) in AddGetParmEntryToBatch()
6043 current = GET_NEXT_PARAM_ID(current, p_table); in AddGetParmEntryToBatch()
6046 if (position != GET_NEXT_PARAM_ID(current, p_table)) { in AddGetParmEntryToBatch()
6047 next=GET_NEXT_PARAM_ID(current, p_table); in AddGetParmEntryToBatch()
6048 SET_NEXT_PARAM_ID(current, p_table, position); in AddGetParmEntryToBatch()