Home
last modified time | relevance | path

Searched refs:maxLoad (Results 1 – 25 of 77) sorted by relevance

1234

/dports/net/mpich2/mpich2-1.5/src/mpe2/src/slog2sdk/src/cern/colt/map/
H A DAbstractMap.java61 protected int chooseGrowCapacity(int size, double minLoad, double maxLoad) { in chooseGrowCapacity() argument
62 return nextPrime(Math.max(size+1, (int) ((4*size / (3*minLoad+maxLoad))))); in chooseGrowCapacity()
68 protected int chooseHighWaterMark(int capacity, double maxLoad) { in chooseHighWaterMark() argument
69 …return Math.min(capacity-2, (int) (capacity * maxLoad)); //makes sure there is always at least one… in chooseHighWaterMark()
84 protected int chooseMeanCapacity(int size, double minLoad, double maxLoad) { in chooseMeanCapacity() argument
85 return nextPrime(Math.max(size+1, (int) ((2*size / (minLoad+maxLoad))))); in chooseMeanCapacity()
92 protected int chooseShrinkCapacity(int size, double minLoad, double maxLoad) { in chooseShrinkCapacity() argument
93 return nextPrime(Math.max(size+1, (int) ((4*size / (minLoad+3*maxLoad))))); in chooseShrinkCapacity()
/dports/science/colt/colt/src/cern/colt/map/
H A DAbstractMap.java61 protected int chooseGrowCapacity(int size, double minLoad, double maxLoad) { in chooseGrowCapacity() argument
62 return nextPrime(Math.max(size+1, (int) ((4*size / (3*minLoad+maxLoad))))); in chooseGrowCapacity()
68 protected int chooseHighWaterMark(int capacity, double maxLoad) { in chooseHighWaterMark() argument
69 …return Math.min(capacity-2, (int) (capacity * maxLoad)); //makes sure there is always at least one… in chooseHighWaterMark()
84 protected int chooseMeanCapacity(int size, double minLoad, double maxLoad) { in chooseMeanCapacity() argument
85 return nextPrime(Math.max(size+1, (int) ((2*size / (minLoad+maxLoad))))); in chooseMeanCapacity()
92 protected int chooseShrinkCapacity(int size, double minLoad, double maxLoad) { in chooseShrinkCapacity() argument
93 return nextPrime(Math.max(size+1, (int) ((4*size / (minLoad+3*maxLoad))))); in chooseShrinkCapacity()
/dports/deskutils/itinerary/itinerary-21.12.3/src/app/
H A DVehicleLoadIndicator.qml19 readonly property var maxLoad: {
31 visible: maxLoad == Load.Full
36 visible: maxLoad != Load.Full && maxLoad != Load.Unknown
42 switch (maxLoad) {
H A DJourneySummaryDelegate.qml19 function maxLoad(loadInformation) {
31 var l = maxLoad(journey.sections[i].loadInformation);
/dports/devel/libchipcard/libchipcard-5.0.4/src/lib/client/cards/geldkarte/
H A Dgeldkarte_values.c52 st->maxLoad=d->maxLoad; in LC_GeldKarte_Values_dup()
63 if (GWEN_DB_SetIntValue(db, GWEN_DB_FLAGS_OVERWRITE_VARS, "maxLoad", st->maxLoad)) in LC_GeldKarte_Values_toDb()
111 return st->maxLoad; in LC_GeldKarte_Values_GetMaxLoad()
117 st->maxLoad=d; in LC_GeldKarte_Values_SetMaxLoad()
/dports/cad/sumo/sumo-1.2.0/src/utils/foxtools/
H A DFXWorkerThread.h196 double maxLoad = 0.; variable
200 maxLoad = MAX2(maxLoad, load);
203 myTotalMaxLoad += maxLoad;
204 myTotalSpread += maxLoad / minLoad;
/dports/math/jacop/jacop-4.8.0/src/main/java/org/jacop/examples/minizinc/
H A Dparcel.mzn21 int: maxLoad = 5;
26 array[1..n] of var minLoad..maxLoad: loads;
/dports/math/jacop/jacop-4.8.0/src/main/scala/org/jacop/examples/scala/
H A DParcel.scala60 val maxLoad = 5 constant
69 val loads = Array.tabulate(noCities)(i => new IntVar("nextLoad[" + i + "]", minLoad, maxLoad))
/dports/math/jacop/jacop-4.8.0/src/main/java/org/jacop/examples/fd/
H A DParcel.java61 int maxLoad = 5; in model() local
80 loads[i] = new IntVar(store, "nextLoad[" + i + "]", minLoad, maxLoad); in model()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm10/llvm-10.0.1.src/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/graphics/llvm-mesa/llvm-13.0.1.src/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm12/llvm-project-12.0.1.src/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm11/llvm-11.0.1.src/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in load()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
307 uint32_t MaxLoad = maxLoad(capacity()); in grow()
308 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm13/llvm-project-13.0.1.src/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h127 if (H->Size > maxLoad(H->Capacity)) in IScsiCommonNotify()
302 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in IScsiCommonNotify()
307 uint32_t MaxLoad = maxLoad(capacity()); in IScsiCommonNotify()
308 if (S < maxLoad(capacity())) in IScsiCommonNotify()
/dports/devel/llvm90/llvm-9.0.1.src/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h126 if (H->Size > maxLoad(H->Capacity)) in load()
301 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; } in maxLoad() function
306 uint32_t MaxLoad = maxLoad(capacity()); in grow()
307 if (S < maxLoad(capacity())) in grow()
/dports/devel/llvm80/llvm-8.0.1.src/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h131 if (H->Size > maxLoad(H->Capacity))
303 static uint32_t maxLoad(uint32_t capacity) { return capacity * 2 / 3 + 1; }
307 uint32_t MaxLoad = maxLoad(capacity());
308 if (S < maxLoad(capacity()))

1234