Searched refs:TABLE_PTR (Results 1 – 1 of 1) sorted by relevance
370 #define POINTER_OF(PARAM_ID,TABLE_PTR) \ argument371 (&(TABLE_PTR->entry[PARAM_ID].data))373 #define GET_FIRST_PARAM_ID(TABLE_PTR) \ argument374 (TABLE_PTR->first_flagged_entry)376 #define SET_FIRST_PARAM_ID(TABLE_PTR,PARAM_ID) \ argument377 TABLE_PTR->first_flagged_entry=PARAM_ID379 #define GET_NEXT_PARAM_ID(CURRENT_PARAM_ID,TABLE_PTR) \ argument380 (TABLE_PTR->entry[CURRENT_PARAM_ID].next_flagged_entry)382 #define SET_NEXT_PARAM_ID(CURRENT_PARAM_ID,TABLE_PTR,NEXT_PARAM_ID) \ argument383 TABLE_PTR->entry[CURRENT_PARAM_ID].next_flagged_entry=NEXT_PARAM_ID;