Home
last modified time | relevance | path

Searched refs:frontLength (Results 1 – 9 of 9) sorted by relevance

/dports/audio/mixxx/mixxx-2.3.0/src/util/
H A Dindexrange.h90 void growFront(SINT frontLength) { in growFront() argument
91 DEBUG_ASSERT(frontLength >= 0); in growFront()
93 first -= frontLength; in growFront()
95 first += frontLength; in growFront()
110 void shrinkFront(SINT frontLength) { in shrinkFront() argument
111 DEBUG_ASSERT(frontLength >= 0); in shrinkFront()
112 DEBUG_ASSERT(frontLength <= length()); in shrinkFront()
114 first += frontLength; in shrinkFront()
116 first -= frontLength; in shrinkFront()
135 IndexRange splitAndShrinkFront(SINT frontLength);
H A Dindexrange.cpp9 IndexRange IndexRange::splitAndShrinkFront(SINT frontLength) { in splitAndShrinkFront() argument
10 DEBUG_ASSERT(frontLength >= 0); in splitAndShrinkFront()
11 DEBUG_ASSERT(frontLength <= length()); in splitAndShrinkFront()
13 auto startRange = forward(first, frontLength); in splitAndShrinkFront()
14 DEBUG_ASSERT(startRange.length() == frontLength); in splitAndShrinkFront()
15 first += frontLength; in splitAndShrinkFront()
19 auto startRange = backward(first, frontLength); in splitAndShrinkFront()
20 DEBUG_ASSERT(startRange.length() == frontLength); in splitAndShrinkFront()
21 first -= frontLength; in splitAndShrinkFront()
/dports/games/spring/spring_98.0/rts/Game/
H A DSelectedUnitsAI.cpp34 , frontLength(0.0f) in CSelectedUnitsHandlerAI()
326 frontLength=centerPos.distance(rightPos)*2; in MakeFrontMove()
328 if (frontLength > sumLength*2*8) { in MakeFrontMove()
329 addSpace = (frontLength - sumLength*2*8)/(selectedUnitsHandler.netSelected[player].size() - 1); in MakeFrontMove()
334 sd.y=frontLength/2; in MakeFrontMove()
338 numColumns=(int)(frontLength/columnDist); in MakeFrontMove()
424 if ((nextCornerPos.x - addSpace) > frontLength) { in MoveToPos()
H A DSelectedUnitsAI.h30 float frontLength; variable
/dports/www/firefox-esr/firefox-91.8.0/js/src/ds/
H A DFifo.h164 size_t frontLength = front_.length(); in eraseIf() local
166 size_t erased = frontLength - front_.length(); in eraseIf()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/ds/
H A DFifo.h164 size_t frontLength = front_.length(); in eraseIf() local
166 size_t erased = frontLength - front_.length(); in eraseIf()
/dports/www/firefox/firefox-99.0/js/src/ds/
H A DFifo.h164 size_t frontLength = front_.length(); in eraseIf() local
166 size_t erased = frontLength - front_.length(); in eraseIf()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/ds/
H A DFifo.h164 size_t frontLength = front_.length(); in eraseIf() local
166 size_t erased = frontLength - front_.length(); in eraseIf()
/dports/games/spring/spring_98.0/rts/Sim/MoveTypes/
H A DAAirMoveType.cpp268 const float frontLength = forwardDif.Length(); in CheckForCollision() local
270 const float minOrtoDif = (unit->radius + owner->radius) * 2.0f + frontLength * 0.1f + 10; in CheckForCollision()
273 dist = frontLength; in CheckForCollision()