Home | History | Annotate | Download | only in howExpensiveIs

Lines Matching refs:svc

250 #define OCName(svc,ub,testn,suffix,n) testn ## svc ## ub ## suffix ## n
251 #define OCStr(svc,ub,suffix,n) "Test_" # svc # ub # suffix # n
252 #define OCRun(svc,ub,suffix) svc ## ub ## suffix
254 #define OpenCloseTest(n, svc,suffix,c,a,d) class OCName(svc,_,Test_,suffix,n) : public HowExpensiveTest { public: OCName(svc,_,Test_,suffix,n)():HowExpensiveTest(OCStr(svc,_,suffix,n),__FILE__,__LINE__) c int32_t run() { int32_t i; for(i=0;i<U_LOTS_OF_TIMES;i++){ OCRun(svc,_,close) ( OCRun(svc,_,suffix) a ); } return i; } void warmup() { OCRun(svc,_,close) ( OCRun(svc,_,suffix) a); } virtual ~ OCName(svc,_,Test_,suffix,n) () d };