Home
last modified time | relevance | path

Searched refs:curLength (Results 1 – 25 of 109) sorted by relevance

12345

/dports/www/glassfish/glassfish5/mq/examples/monitoring/
H A DMultiColumnPrinter.java142 private int curLength[]; field in MultiColumnPrinter
165 curLength = new int[numCol]; in MultiColumnPrinter()
322 if (curLength != null) { in clear()
324 curLength[i] = 0; in clear()
380 if (curLength[i] < len) { in print()
381 curLength[i] = len; in print()
385 curLength[j] = len; in print()
392 curLength[(i+span)-1] += rem; in print()
413 if (curLength[i] < row[i].length()) in print()
414 curLength[i] = row[i].length(); in print()
[all …]
/dports/www/payara/payara5/mq/examples/monitoring/
H A DMultiColumnPrinter.java172 private int curLength[]; field in MultiColumnPrinter
195 curLength = new int[numCol]; in MultiColumnPrinter()
352 if (curLength != null) { in clear()
354 curLength[i] = 0; in clear()
410 if (curLength[i] < len) { in print()
411 curLength[i] = len; in print()
415 curLength[j] = len; in print()
422 curLength[(i+span)-1] += rem; in print()
443 if (curLength[i] < row[i].length()) in print()
444 curLength[i] = row[i].length(); in print()
[all …]
/dports/graphics/blender/blender-2.91.0/intern/ghost/intern/
H A DGHOST_DropTargetX11.cpp204 int totPaths = 0, curLength = 0; in getURIListGhostData() local
209 if (curLength) { in getURIListGhostData()
211 curLength = 0; in getURIListGhostData()
215 curLength++; in getURIListGhostData()
222 curLength = 0; in getURIListGhostData()
225 if (curLength) { in getURIListGhostData()
226 char *curPath = (char *)malloc(curLength + 1); in getURIListGhostData()
229 strncpy(curPath, (char *)dropBuffer + i - curLength, curLength); in getURIListGhostData()
230 curPath[curLength] = 0; in getURIListGhostData()
239 curLength = 0; in getURIListGhostData()
[all …]
/dports/games/spring/spring_98.0/rts/Sim/Projectiles/WeaponProjectiles/
H A DLaserProjectile.cpp25 CR_MEMBER(curLength),
34 , curLength(0.0f) in CLaserProjectile()
92 if (curLength < maxLength && speed != ZeroVector) { in UpdateIntensity()
94 stayTime = 1 + int((maxLength - curLength) / speedf); in UpdateIntensity()
109 curLength += speedf; in UpdateLength()
110 curLength = std::min(maxLength, curLength); in UpdateLength()
115 curLength -= speedf; in UpdateLength()
116 curLength = std::max(curLength, 0.0f); in UpdateLength()
150 if (curLength < maxLength) { in CollisionCommon()
151 stayTime = 1 + int((maxLength - curLength) / speedf); in CollisionCommon()
[all …]
/dports/sysutils/vector/vector-0.10.0/cargo-crates/krb5-src-0.2.4+1.18.2/krb5/src/lib/gssapi/mechglue/
H A Dg_imp_name.c201 OM_uint32 major, mechOidLen, nameLen, curLength; local
207 curLength = expNameTokIdLen + mechOidLenLen;
208 if (expName.length < curLength)
222 curLength += mechOidLen;
223 if (expName.length < curLength)
241 (expName.length - curLength), &bytes);
300 curLength += 4; /* 4 bytes for name len */
301 if (expName.length < curLength)
313 curLength += nameLen; /* this is the total length */
314 if (expName.length < curLength)
/dports/security/krb5/krb5-1.19.2/src/lib/gssapi/mechglue/
H A Dg_imp_name.c201 OM_uint32 major, mechOidLen, nameLen, curLength; local
207 curLength = expNameTokIdLen + mechOidLenLen;
208 if (expName.length < curLength)
222 curLength += mechOidLen;
223 if (expName.length < curLength)
241 (expName.length - curLength), &bytes);
300 curLength += 4; /* 4 bytes for name len */
301 if (expName.length < curLength)
313 curLength += nameLen; /* this is the total length */
314 if (expName.length < curLength)
/dports/net-p2p/amule/aMule-2.3.3/src/
H A DIPFilter.cpp159 uint32 curLength = realLength; in Entry() local
164 if (curLength >= 0x08000000) { in Entry()
166 curLength = 0x08000000; in Entry()
169 curLength &= 0x07FFF000; in Entry()
171 pushLength = ((curLength - 1) >> 12) | 0x8000; in Entry()
189 realLength -= curLength; in Entry()
190 startIP += curLength; in Entry()
446 uint32 curLength = m_rangeLengths[i]; in IsFiltered() local
447 if (curLength >= 0x8000) { in IsFiltered()
448 curLength = ((curLength & 0x7fff) << 12) + 0xfff; in IsFiltered()
[all …]
/dports/net-p2p/amule-devel/aMule-SVN-r11065/src/
H A DIPFilter.cpp159 uint32 curLength = realLength; in Entry() local
164 if (curLength >= 0x08000000) { in Entry()
166 curLength = 0x08000000; in Entry()
169 curLength &= 0x07FFF000; in Entry()
171 pushLength = ((curLength - 1) >> 12) | 0x8000; in Entry()
189 realLength -= curLength; in Entry()
190 startIP += curLength; in Entry()
446 uint32 curLength = m_rangeLengths[i]; in IsFiltered() local
447 if (curLength >= 0x8000) { in IsFiltered()
448 curLength = ((curLength & 0x7fff) << 12) + 0xfff; in IsFiltered()
[all …]
/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/qml/ftw/
H A Dqhashedstring.cpp108 auto curLength = 0; in split() local
112 ret.push_back({curOffset, curLength}); in split()
114 curLength = 0; in split()
116 ++curLength; in split()
119 if (curLength > 0) in split()
120 ret.push_back({curOffset, curLength}); in split()
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/qml/ftw/
H A Dqhashedstring.cpp108 auto curLength = 0; in split() local
112 ret.push_back({curOffset, curLength}); in split()
114 curLength = 0; in split()
116 ++curLength; in split()
119 if (curLength > 0) in split()
120 ret.push_back({curOffset, curLength}); in split()
/dports/converters/R-cran-RJSONIO/RJSONIO/R/
H A DreadJSON.R238 curLength = c(0L) vector
253 curLength <<- c(0, curLength)
272 cur[[ curLength[1] ]] <<- obj
277 cur[[ curLength[1] ]] <<- val
286 n = curLength[1]
287 curLength <<- curLength[-1]
293 curLength[1] <<- curLength[1] + 1
294 if(length(cur) < curLength[1])
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/livarot/
H A DPathCutting.cpp116 double curLength=0; in DashSubPath() local
140 if ( curLength <= head && curLength+nl > head ) { in DashSubPath()
141 nl-=head-curLength; in DashSubPath()
142 curLength=head; in DashSubPath()
156 Geom::Point p=(enLength-curLength)*lastP+(curLength-stLength)*n; in DashSubPath()
161 pT=(lastT*(enLength-curLength)+nT*(curLength-stLength))/(enLength-stLength); in DashSubPath()
228 curLength+=nl; in DashSubPath()
239 nl=enLength-curLength; in DashSubPath()
241 if ( curLength <= totLength-tail && curLength+nl > totLength-tail ) { in DashSubPath()
248 Geom::Point p=(enLength-curLength)*lastP+(curLength-stLength)*n; in DashSubPath()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.team/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/
H A DCVSDecoratorConfiguration.java89 int curLength = output.length(); in decorate() local
90 if(curLength>0) { in decorate()
91 char c = output.charAt(curLength - 1); in decorate()
93 output.deleteCharAt(curLength - 1); in decorate()
/dports/games/spring/spring_98.0/rts/Sim/Weapons/
H A DBeamLaser.cpp287 float curLength = 0.0f; in FireInternal() local
321 …float beamLength = TraceRay::TraceRay(curPos, curDir, maxLength - curLength, collisionFlags, owner… in FireInternal()
354 const float startAlpha = (1.0f - (curLength ) / maxLength); in FireInternal()
355 const float endAlpha = (1.0f - (curLength + beamLength) / maxLength); in FireInternal()
369 curLength += beamLength; in FireInternal()
383 if (curLength < maxLength) { in FireInternal()
385 const float hitIntensity = std::max(minIntensity, 1.0f - curLength / (actualRange * 2.0f)); in FireInternal()
/dports/lang/gcc11/gcc-11.2.0/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/lang/gcc10/gcc-10.3.0/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/lang/gcc9-devel/gcc-9-20211007/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/lang/gcc9/gcc-9.4.0/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/lang/gcc9-aux/gcc-9.1.0/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d37 immutable curLength = GC.sizeOf(b.ptr); in expand() local
38 assert(curLength != 0); // we have a valid GC pointer here in expand()
40 if (desired > curLength) // check to see if the current block can't hold the data in expand()
42 immutable sizeRequest = desired - curLength; in expand()
/dports/multimedia/kdenlive/kdenlive-21.12.3/tests/
H A Dtimewarptest.cpp96 int curLength = timeline->getClipPlaytime(cid3); variable
99 REQUIRE(timeline->requestClipTimeWarp(cid3, double(curLength), false, true, undo2, redo2));
101 REQUIRE(timeline->getClipSpeed(cid3) == double(curLength));
106 …REQUIRE_FALSE(timeline->requestClipTimeWarp(cid3, double(curLength) * 10, false, true, undo2, redo…
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/src/std/experimental/allocator/
H A Dgc_allocator.d42 immutable curLength = GC.sizeOf(b.ptr); in expand() local
43 assert(curLength != 0); // we have a valid GC pointer here in expand()
45 if (desired > curLength) // check to see if the current block can't hold the data in expand()
47 immutable sizeRequest = desired - curLength; in expand()

12345