Home
last modified time | relevance | path

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

/dports/math/librsb/librsb-1.2.0.10/
H A Drsb_clone.c762 …expsymm = (RSB_DO_FLAG_HAVE_XOR(flags,mtxAp->flags,RSB_FLAG_SYMMETRIC) && !RSB_DO_FLAG_HAS(mtxAp->… in rsb__clone_coo()
763 …expherm = (RSB_DO_FLAG_HAVE_XOR(flags,mtxAp->flags,RSB_FLAG_HERMITIAN) && !RSB_DO_FLAG_HAS(mtxAp->… in rsb__clone_coo()
766 if(RSB_DO_FLAG_HAVE_XOR(flags,mtxAp->flags,RSB_FLAG_UNIT_DIAG_IMPLICIT)) in rsb__clone_coo()
800 if(RSB_DO_FLAG_HAVE_XOR(flags,mtxAp->flags,RSB_FLAG_UNIT_DIAG_IMPLICIT)) in rsb__clone_coo()
810 if(RSB_DO_FLAG_HAVE_XOR(flags,mtxAp->flags,RSB_FLAG_UNIT_DIAG_IMPLICIT)) in rsb__clone_coo()
H A Drsb_common.h281 #define RSB_DO_FLAG_HAVE_XOR(V1,V2,F) RSB_BOOL_XOR(RSB_DO_FLAG_HAS(V1,F),RSB_DO_FLAG_HAS(V2,F)) macro