Home
last modified time | relevance | path

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

12345

/dports/www/gitea/gitea-1.16.5/vendor/gopkg.in/gomail.v2/
H A Dwriteto.go176 charsLeft := 76 - len(k) - len(": ")
180 if charsLeft < 1 {
186 charsLeft = 75
189 charsLeft -= 2
193 for len(s) > charsLeft {
194 s = w.writeLine(s, charsLeft)
195 charsLeft = 75
199 charsLeft = 75 - (len(s) - i - 1)
201 charsLeft -= len(s)
209 if i := strings.IndexByte(s, '\n'); i != -1 && i < charsLeft {
[all …]
/dports/www/mediawiki135/mediawiki-1.35.5/includes/libs/objectcache/
H A DMemcachedBagOStuff.php50 $charsLeft = 205 - strlen( $keyspace ) - count( $args );
65 if ( $charsLeft > 33 && strlen( $arg ) > $charsLeft ) {
69 $charsLeft -= strlen( $arg );
72 if ( $charsLeft < 0 ) {
H A DWinCacheBagOStuff.php109 $charsLeft = 125 - strlen( $keyspace ) - count( $args );
112 function ( $arg ) use ( &$charsLeft ) {
114 if ( $charsLeft > 33 && strlen( $arg ) > $charsLeft ) {
118 $charsLeft -= strlen( $arg );
124 if ( $charsLeft < 0 ) {
/dports/www/beehive/beehive-0.4.0/vendor/github.com/go-mail/mail/
H A Dwriteto.go183 charsLeft := 76 - len(k) - len(": ")
187 if charsLeft < 1 {
193 charsLeft = 75
196 charsLeft -= 2
200 for len(s) > charsLeft {
201 s = w.writeLine(s, charsLeft)
202 charsLeft = 75
206 charsLeft = 75 - (len(s) - i - 1)
208 charsLeft -= len(s)
216 if i := strings.IndexByte(s, '\n'); i != -1 && i < charsLeft {
[all …]
/dports/www/mattermost-server/mattermost-server-6.0.2/vendor/gopkg.in/mail.v2/
H A Dwriteto.go183 charsLeft := 76 - len(k) - len(": ")
187 if charsLeft < 1 {
193 charsLeft = 75
196 charsLeft -= 2
200 for len(s) > charsLeft {
201 s = w.writeLine(s, charsLeft)
202 charsLeft = 75
206 charsLeft = 75 - (len(s) - i - 1)
208 charsLeft -= len(s)
216 if i := strings.IndexByte(s, '\n'); i != -1 && i < charsLeft {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/gopkg.in/mail.v2/
H A Dwriteto.go183 charsLeft := 76 - len(k) - len(": ")
187 if charsLeft < 1 {
193 charsLeft = 75
196 charsLeft -= 2
200 for len(s) > charsLeft {
201 s = w.writeLine(s, charsLeft)
202 charsLeft = 75
206 charsLeft = 75 - (len(s) - i - 1)
208 charsLeft -= len(s)
216 if i := strings.IndexByte(s, '\n'); i != -1 && i < charsLeft {
[all …]
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/com/sksamuel/gwt/websockets/
H A DBase64Utils.java149 int charsLeft = len; in toBase64() local
150 while (charsLeft > 0) { in toBase64()
152 int b1 = (charsLeft > 1) ? data[iidx++] & 0xff : 0; in toBase64()
153 int b2 = (charsLeft > 2) ? data[iidx++] & 0xff : 0; in toBase64()
163 chars[oidx++] = (charsLeft > 1) ? base64Chars[c2] : '='; in toBase64()
164 chars[oidx++] = (charsLeft > 2) ? base64Chars[c3] : '='; in toBase64()
166 charsLeft -= 3; in toBase64()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/gwt/src/org/rstudio/core/client/
H A DBase64Utils.java150 int charsLeft = len; in toBase64() local
151 while (charsLeft > 0) { in toBase64()
153 int b1 = (charsLeft > 1) ? data[iidx++] & 0xff : 0; in toBase64()
154 int b2 = (charsLeft > 2) ? data[iidx++] & 0xff : 0; in toBase64()
164 chars[oidx++] = (charsLeft > 1) ? base64Chars[c2] : '='; in toBase64()
165 chars[oidx++] = (charsLeft > 2) ? base64Chars[c3] : '='; in toBase64()
167 charsLeft -= 3; in toBase64()
H A DWordWrap.java99 int charsLeft = lineLength_ == 0 ? maxLineLength_ - indent_.length() in processLine()
102 if (line.length() <= charsLeft) in processLine()
108 int index = line.lastIndexOf(' ', charsLeft); in processLine()
113 index = line.indexOf(' ', charsLeft); in processLine()
117 if (hardWrapIfNecessary_ && index > charsLeft) in processLine()
119 index = charsLeft; in processLine()
/dports/www/mediawiki136/mediawiki-1.36.3/includes/libs/objectcache/
H A DWinCacheBagOStuff.php110 $charsLeft = 125 - strlen( $keyspace ) - count( $components );
113 static function ( $component ) use ( &$charsLeft ) {
115 if ( $charsLeft > 33 && strlen( $component ) > $charsLeft ) {
119 $charsLeft -= strlen( $component );
125 if ( $charsLeft < 0 ) {
H A DMemcachedBagOStuff.php63 $charsLeft = 205 - strlen( $keyspace ) - count( $components );
78 if ( $charsLeft > 33 && strlen( $component ) > $charsLeft ) {
82 $charsLeft -= strlen( $component );
85 if ( $charsLeft < 0 ) {
/dports/www/mediawiki137/mediawiki-1.37.1/includes/libs/objectcache/
H A DMemcachedBagOStuff.php65 $charsLeft = 205 - strlen( $keyspace ) - count( $components );
80 if ( $charsLeft > 33 && strlen( $component ) > $charsLeft ) {
84 $charsLeft -= strlen( $component );
87 if ( $charsLeft < 0 ) {
H A DWinCacheBagOStuff.php120 $charsLeft = 125 - strlen( $keyspace ) - count( $components );
123 static function ( $component ) use ( &$charsLeft ) {
125 if ( $charsLeft > 33 && strlen( $component ) > $charsLeft ) {
129 $charsLeft -= strlen( $component );
135 if ( $charsLeft < 0 ) {
/dports/science/massxpert/massxpert-c229f4a1abde3c20b83a90e50f9c5d79104dfa5f/lib/
H A Dglobals.cpp77 GlobElideText(const QString &text, int charsLeft, int charsRight, in GlobElideText() argument
84 if(charsLeft < 1 || charsRight < 1) in GlobElideText()
91 if((charsLeft + charsRight + delimitor.size()) >= size) in GlobElideText()
94 QString result = text.left(charsLeft); in GlobElideText()
/dports/biology/seqan1/seqan-1.3.1/seqan/index/
H A Dshape_onegapped.h191 hash(Shape<TValue, OneGappedShape> &me, TIter it, TSize charsLeft) in hash() argument
198 if ((TSize)length(me) > charsLeft) in hash()
200 if (blockLen1 > charsLeft) in hash()
202 blockLen1 = charsLeft; in hash()
206 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hash()
209 blockLen2 = charsLeft - (blockLen1 + me.gapLen); in hash()
238 if ((TSize)length(me) > charsLeft) in hashUpper()
240 if (blockLen1 > charsLeft) in hashUpper()
242 blockLen1 = charsLeft; in hashUpper()
245 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hashUpper()
[all …]
H A Dshape_base.h367 hash(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
373 if (iEnd > charsLeft) iEnd = charsLeft;
470 hashUpper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
476 if (iEnd > charsLeft) iEnd = charsLeft;
542 hash2(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
548 if (iEnd > charsLeft) iEnd = charsLeft;
584 hash2Upper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
590 if (iEnd > charsLeft) iEnd = charsLeft;
606 if (charsLeft <= me.span) {
634 hash2Next(Shape<TValue, TSpec> &me, TIter &it, TSize charsLeft)
[all …]
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/include/seqan/index/
H A Dshape_onegapped.h216 hash(Shape<TValue, OneGappedShape> &me, TIter it, TSize charsLeft) in hash() argument
224 if ((TSize)length(me) > charsLeft) in hash()
226 if (blockLen1 > charsLeft) in hash()
228 blockLen1 = charsLeft; in hash()
232 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hash()
235 blockLen2 = charsLeft - (blockLen1 + me.gapLen); in hash()
265 if ((TSize)length(me) > charsLeft) in hashUpper()
267 if (blockLen1 > charsLeft) in hashUpper()
269 blockLen1 = charsLeft; in hashUpper()
272 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hashUpper()
[all …]
H A Dshape_base.h545 hash(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
552 if (iEnd > charsLeft) iEnd = charsLeft;
655 hashUpper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
662 if (iEnd > charsLeft) iEnd = charsLeft;
739 hash2(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
746 if (iEnd > charsLeft) iEnd = charsLeft;
790 hash2Upper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
797 if (iEnd > charsLeft) iEnd = charsLeft;
813 if (charsLeft <= me.span) {
845 hash2Next(Shape<TValue, TSpec> &me, TIter &it, TSize charsLeft)
[all …]
/dports/biology/seqan/seqan-library-2.4.0/include/seqan/index/
H A Dshape_onegapped.h216 hash(Shape<TValue, OneGappedShape> &me, TIter it, TSize charsLeft) in hash() argument
224 if ((TSize)length(me) > charsLeft) in hash()
226 if (blockLen1 > charsLeft) in hash()
228 blockLen1 = charsLeft; in hash()
232 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hash()
235 blockLen2 = charsLeft - (blockLen1 + me.gapLen); in hash()
265 if ((TSize)length(me) > charsLeft) in hashUpper()
267 if (blockLen1 > charsLeft) in hashUpper()
269 blockLen1 = charsLeft; in hashUpper()
272 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hashUpper()
[all …]
H A Dshape_base.h545 hash(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
552 if (iEnd > charsLeft) iEnd = charsLeft;
655 hashUpper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
662 if (iEnd > charsLeft) iEnd = charsLeft;
739 hash2(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
746 if (iEnd > charsLeft) iEnd = charsLeft;
790 hash2Upper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
797 if (iEnd > charsLeft) iEnd = charsLeft;
813 if (charsLeft <= me.span) {
845 hash2Next(Shape<TValue, TSpec> &me, TIter &it, TSize charsLeft)
[all …]
/dports/biology/pbseqan/seqan-21d95d737d8decb5cc3693b9065d81e831e7f57d/include/seqan/index/
H A Dshape_onegapped.h219 hash(Shape<TValue, OneGappedShape> &me, TIter it, TSize charsLeft) in hash() argument
227 if ((TSize)length(me) > charsLeft) in hash()
229 if (blockLen1 > charsLeft) in hash()
231 blockLen1 = charsLeft; in hash()
235 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hash()
238 blockLen2 = charsLeft - (blockLen1 + me.gapLen); in hash()
268 if ((TSize)length(me) > charsLeft) in hashUpper()
270 if (blockLen1 > charsLeft) in hashUpper()
272 blockLen1 = charsLeft; in hashUpper()
275 if (blockLen1 + (TSize)me.gapLen > charsLeft) in hashUpper()
[all …]
H A Dshape_base.h548 hash(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
555 if (iEnd > charsLeft) iEnd = charsLeft;
660 hashUpper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
667 if (iEnd > charsLeft) iEnd = charsLeft;
745 hash2(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
752 if (iEnd > charsLeft) iEnd = charsLeft;
796 hash2Upper(Shape<TValue, TSpec> &me, TIter it, TSize charsLeft)
804 if (iEnd > charsLeft) iEnd = charsLeft;
820 if (charsLeft <= me.span) {
852 hash2Next(Shape<TValue, TSpec> &me, TIter &it, TSize charsLeft)
[all …]
/dports/games/cultivation/Cultivation_8_UnixSource/game2/gameSource/userInterface/
H A DTextBlockGL.cpp44 int charsLeft = numChars; in fireRedraw() local
46 while( charsLeft > 0 ) { in fireRedraw()
52 charsLeft --; in fireRedraw()
90 charsLeft -= charsOnLine; in fireRedraw()
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_dependencies/xerces-c/src/xercesc/internal/
H A DXMLReader.cpp1116 XMLSize_t charsLeft = charsLeftInBuffer(); in skippedString() local
1126 while (charsLeft < srcLen) in skippedString()
1135 charsLeft = tmp; in skippedString()
1167 XMLSize_t charsLeft = charsLeftInBuffer(); in skippedStringLong() local
1173 while (charsLeft < srcLen && charsLeft != kCharBufSize) in skippedStringLong()
1182 charsLeft = tmp; in skippedStringLong()
1185 XMLSize_t n = charsLeft < srcLen ? charsLeft : srcLen; in skippedStringLong()
1195 charsLeft -= n; in skippedStringLong()
1220 XMLSize_t charsLeft = charsLeftInBuffer(); in peekString() local
1221 while (charsLeft < srcLen) in peekString()
[all …]
/dports/textproc/xerces-c3/xerces-c-3.2.3/src/xercesc/internal/
H A DXMLReader.cpp1141 XMLSize_t charsLeft = charsLeftInBuffer(); in skippedString() local
1151 while (charsLeft < srcLen) in skippedString()
1160 charsLeft = tmp; in skippedString()
1192 XMLSize_t charsLeft = charsLeftInBuffer(); in skippedStringLong() local
1198 while (charsLeft < srcLen && charsLeft != kCharBufSize) in skippedStringLong()
1207 charsLeft = tmp; in skippedStringLong()
1210 XMLSize_t n = charsLeft < srcLen ? charsLeft : srcLen; in skippedStringLong()
1220 charsLeft -= n; in skippedStringLong()
1245 XMLSize_t charsLeft = charsLeftInBuffer(); in peekString() local
1246 while (charsLeft < srcLen) in peekString()
[all …]

12345