Searched refs:TABLE_PTR (Results 1 – 3 of 3) sorted by relevance
/device/lge/hammerhead/camera/QCamera2/stack/common/ |
D | cam_intf.h | 383 #define POINTER_OF(PARAM_ID,TABLE_PTR) \ argument 384 (&(TABLE_PTR->entry[PARAM_ID].data)) 386 #define SET_PARM_VALID_BIT(PARAM_ID,TABLE_PTR,VALID_BIT) \ argument 387 (TABLE_PTR->entry[PARAM_ID].valid=VALID_BIT) 389 #define IS_PARM_VALID(PARAM_ID,TABLE_PTR) \ argument 390 (TABLE_PTR->entry[PARAM_ID].valid) 392 #define GET_FIRST_PARAM_ID(TABLE_PTR) \ argument 393 (TABLE_PTR->first_flagged_entry) 395 #define SET_FIRST_PARAM_ID(TABLE_PTR,PARAM_ID) \ argument 396 TABLE_PTR->first_flagged_entry=PARAM_ID [all …]
|
/device/asus/flo/camera/QCamera2/stack/common/ |
D | cam_intf.h | 370 #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;
|
/device/moto/shamu/camera/QCamera2/stack/common/ |
D | cam_intf.h | 455 #define POINTER_OF_META(META_ID, TABLE_PTR) \ argument 456 &TABLE_PTR->data.member_variable_##META_ID 460 #define IS_META_AVAILABLE(META_ID, TABLE_PTR) \ argument 461 TABLE_PTR->is_valid[META_ID] 465 #define SIZE_OF_PARAM(META_ID, TABLE_PTR) \ argument 466 sizeof(TABLE_PTR->data.member_variable_##META_ID)
|