Lines Matching defs:ac
68 #define ACC_LOCK_INIT(ac) mtx_init(&(ac)->acc_mtx, "classifier", MTX_DEF)
69 #define ACC_LOCK_DESTROY(ac) mtx_destroy(&(ac)->acc_mtx)
70 #define ACC_LOCK(ac) mtx_lock(&(ac)->acc_mtx)
71 #define ACC_UNLOCK(ac) mtx_unlock(&(ac)->acc_mtx)
73 #define ACC_LOCK_INIT(ac)
74 #define ACC_LOCK_DESTROY(ac)
75 #define ACC_LOCK(ac)
76 #define ACC_UNLOCK(ac)