Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/util/concurrent/
DCycleDetectingLockFactoryTest.java84 CycleDetectingLockFactory.WithExplicitOrdering<OtherOrder> factory3 = in setUp()
85 newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW); in setUp()
86 lock01 = factory3.newReentrantLock(OtherOrder.FIRST); in setUp()
87 lock02 = factory3.newReentrantLock(OtherOrder.SECOND); in setUp()
88 lock03 = factory3.newReentrantLock(OtherOrder.THIRD); in setUp()
254 CycleDetectingLockFactory.WithExplicitOrdering<OtherOrder> factory = in testExplicitOrdering_reentrantAcquisition()
255 newInstanceWithExplicitOrdering(OtherOrder.class, Policies.THROW); in testExplicitOrdering_reentrantAcquisition()
256 Lock lockA = factory.newReentrantReadWriteLock(OtherOrder.FIRST).readLock(); in testExplicitOrdering_reentrantAcquisition()
257 Lock lockB = factory.newReentrantLock(OtherOrder.SECOND); in testExplicitOrdering_reentrantAcquisition()
270 CycleDetectingLockFactory.WithExplicitOrdering<OtherOrder> factory = in testExplicitOrdering_acquiringMultipleLocksWithSameRank()
[all …]
/external/eigen/test/
Dproduct_trmm.cpp20 template<typename Scalar, int Mode, int TriOrder, int OtherOrder, int ResOrder, int OtherCols>
26 typedef Matrix<Scalar,Dynamic,OtherCols,OtherCols==1?ColMajor:OtherOrder> OnTheRight; in trmm()
27 typedef Matrix<Scalar,OtherCols,Dynamic,OtherCols==1?RowMajor:OtherOrder> OnTheLeft; in trmm()
77 template<typename Scalar, int Mode, int TriOrder, int OtherOrder, int ResOrder>
80 trmm<Scalar,Mode,TriOrder,OtherOrder,ResOrder,Dynamic>(rows,cols,otherCols); in trmm()