Home
last modified time | relevance | path

Searched refs:firstLeg (Results 1 – 18 of 18) sorted by path

/dports/editors/calligra/calligra-3.2.1/stage/plugins/pageeffects/matrixwipe/spiralwipe/
H A DKPrSpiralWipeStrategy.cpp23 static int getSubType(int firstLeg, bool clockwise, bool reverse) in getSubType() argument
26 switch (firstLeg) { in getSubType()
33 switch (firstLeg) { in getSubType()
44 static const char * getSmilSubType(int firstLeg, bool clockwise) in getSmilSubType() argument
46 switch (firstLeg) { in getSmilSubType()
55 KPrSpiralWipeStrategy::KPrSpiralWipeStrategy(int firstLeg, bool clockwise, bool reverse) in KPrSpiralWipeStrategy() argument
56 …: KPrMatrixWipeStrategy( getSubType(firstLeg, clockwise, reverse), "spiralWipe", getSmilSubType(fi… in KPrSpiralWipeStrategy()
57 m_firstLeg(firstLeg), m_clockwise(clockwise) in KPrSpiralWipeStrategy()
H A DKPrSpiralWipeStrategy.h28 KPrSpiralWipeStrategy(int firstLeg, bool clockwise, bool reverse);
/dports/finance/quantlib/QuantLib-1.20/ql/instruments/
H A Dswap.cpp29 Swap::Swap(const Leg& firstLeg, in Swap() argument
35 legs_[0] = firstLeg; in Swap()
H A Dswap.hpp50 Swap(const Leg& firstLeg,
/dports/games/cultivation/Cultivation_8_UnixSource/minorGems/math/geometry/
H A DTriangle3D.h170 Vector3D *firstLeg = new Vector3D( mPoints[2] ); in getNormal() local
171 firstLeg->subtract( mPoints[1] ); in getNormal()
176 Vector3D *normal = firstLeg->cross( secondLeg ); in getNormal()
180 delete firstLeg; in getNormal() local
242 Vector3D *firstLeg = new Vector3D( mPoints[0] ); in isInBounds() local
243 firstLeg->subtract( inPoint ); in isInBounds()
251 angleSum += acos( firstLeg->dot( secondLeg ) / in isInBounds()
252 ( firstLeg->getLength() * secondLeg->getLength() ) ); in isInBounds()
257 angleSum += acos( thirdLeg->dot( firstLeg ) / in isInBounds()
258 ( thirdLeg->getLength() * firstLeg->getLength() ) ); in isInBounds()
[all …]
/dports/games/flightgear/flightgear-2020.3.11/src/AIModel/
H A DAIFlightPlan.cxx142 bool firstLeg, in FGAIFlightPlan() argument
167 createWaypoints(ac, course, start, dep, arr, firstLeg, radius, in FGAIFlightPlan()
183 bool firstLeg, in createWaypoints() argument
218 firstLeg, radius, fltType, acType, airline, dist); in createWaypoints()
H A DAIFlightPlan.hxx99 bool firstLeg,
137 …bool firstLeg, double radius, const std::string& fltType, const std::string& aircraftType, const s…
244 bool firstLeg,
/dports/games/flightgear/flightgear-2020.3.11/test_suite/unit_tests/Navaids/
H A Dtest_flightplan.cxx556 auto firstLeg = f->legAtIndex(0); in testLoadSaveMachRestriction() local
557 firstLeg->setSpeed(SPEED_RESTRICT_MACH, 1.56); in testLoadSaveMachRestriction()
/dports/games/xboard-devel/xboard-f49e7e1/
H A Dbackend.c8559 static char firstLeg[20]; in HandleMachineMove() local
8706 … safeStrCpy(firstLeg, machineMove, 20); // just remember it for processing when second leg arrives in HandleMachineMove()
8710 …safeStrCpy(firstLeg, machineMove, 20); // kludge: fake we received the first leg earlier, and clip… in HandleMachineMove()
8711 safeStrCpy(machineMove, firstLeg + (p - machineMove) + 1, 20); in HandleMachineMove()
8713 if(firstLeg[0]) { // there was a previous leg; in HandleMachineMove()
8718 safeStrCpy(machineMove, firstLeg, 20); in HandleMachineMove()
8723 firstLeg[0] = NULLCHAR; in HandleMachineMove()
/dports/games/xboard/xboard-4.9.1/
H A Dbackend.c8735 static char firstLeg[20], legs; in HandleMachineMove() local
8889 … safeStrCpy(firstLeg, machineMove, 20); // just remember it for processing when second leg arrives in HandleMachineMove()
8894 …safeStrCpy(firstLeg, machineMove, 20); // kludge: fake we received the first leg earlier, and clip… in HandleMachineMove()
8896 safeStrCpy(machineMove, firstLeg + (p - machineMove) + 1, 20); in HandleMachineMove()
8898 if(firstLeg[0]) { // there was a previous leg; in HandleMachineMove()
8903 safeStrCpy(machineMove, firstLeg, 20); in HandleMachineMove()
8909 firstLeg[0] = NULLCHAR; legs = 0; in HandleMachineMove()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java631 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
636 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
640 if (firstLeg < count) in toArray()
641 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java631 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
636 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
640 if (firstLeg < count) in toArray()
641 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java631 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
636 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
640 if (firstLeg < count) in toArray()
641 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java631 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
636 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
640 if (firstLeg < count) in toArray()
641 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java634 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
639 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
643 if (firstLeg < count) in toArray()
644 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java634 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
639 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
643 if (firstLeg < count) in toArray()
644 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java634 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
639 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
643 if (firstLeg < count) in toArray()
644 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.base/share/classes/java/util/concurrent/
H A DArrayBlockingQueue.java634 final int firstLeg = Math.min(items.length - takeIndex, count); in toArray() local
639 System.arraycopy(items, takeIndex, a, 0, firstLeg); in toArray()
643 if (firstLeg < count) in toArray()
644 System.arraycopy(items, 0, a, firstLeg, putIndex); in toArray()