Home
last modified time | relevance | path

Searched refs:TABLE_PTR (Results 1 – 1 of 1) sorted by relevance

/device/asus/flo/camera/QCamera2/stack/common/
Dcam_intf.h370 #define POINTER_OF(PARAM_ID,TABLE_PTR) \ argument
371 (&(TABLE_PTR->entry[PARAM_ID].data))
373 #define GET_FIRST_PARAM_ID(TABLE_PTR) \ argument
374 (TABLE_PTR->first_flagged_entry)
376 #define SET_FIRST_PARAM_ID(TABLE_PTR,PARAM_ID) \ argument
377 TABLE_PTR->first_flagged_entry=PARAM_ID
379 #define GET_NEXT_PARAM_ID(CURRENT_PARAM_ID,TABLE_PTR) \ argument
380 (TABLE_PTR->entry[CURRENT_PARAM_ID].next_flagged_entry)
382 #define SET_NEXT_PARAM_ID(CURRENT_PARAM_ID,TABLE_PTR,NEXT_PARAM_ID) \ argument
383 TABLE_PTR->entry[CURRENT_PARAM_ID].next_flagged_entry=NEXT_PARAM_ID;