Home
last modified time | relevance | path

Searched refs:numChar (Results 1 – 25 of 56) sorted by relevance

123

/dports/biology/bwa/bwa-0.7.17/
H A DQSufSort.c68 numChar, &numSymbolAggregated); in QSufSortSuffixSort()
69 QSufSortBucketSort(V, I, numChar, newAlphabetSize); in QSufSortSuffixSort()
71 V[numChar] = 0; in QSufSortSuffixSort()
75 while ((qsint_t)(I[0]) >= -(qsint_t)numChar) { in QSufSortSuffixSort()
92 } while (i <= numChar); in QSufSortSuffixSort()
104 for (i=0; i<=numChar; i++) in QSufSortGenerateSaFromInverse()
300 for (i=0; i<=numChar; i++) { in QSufSortBucketSort()
306 currentIndex = numChar; in QSufSortBucketSort()
373 for (i=a; i<=numChar; i++) { in QSufSortTransform()
389 for (i=0, j=a; j<=numChar; i++, j++) { in QSufSortTransform()
[all …]
H A Dbwt_gen.c397 lastWord = (numChar - 1) / CHAR_PER_WORD; in BWTIncPutPackedTextToRank()
398 numCharInLastWord = numChar - lastWord * CHAR_PER_WORD; in BWTIncPutPackedTextToRank()
401 rankIndex = numChar - 1; in BWTIncPutPackedTextToRank()
514 for (i=1; i<=numChar; i++) { in BWTIncBuildPackedBwt()
664 rankIndex = numChar - 1; in BWTIncGetAbsoluteRank()
666 lastWord = numChar / CHAR_PER_WORD; in BWTIncGetAbsoluteRank()
941 for (i=1; i<=numChar; i++) { in BWTIncBuildBwt()
1329 relativeRank[numChar] = 0; in BWTIncConstruct()
1392 …QSufSortSuffixSort((qsint_t*)relativeRank, (qsint_t*)seq, (qsint_t)numChar, (qsint_t)numChar, 1, T… in BWTIncConstruct()
1405 assert(mergedBwt >= insertBwt + numChar); in BWTIncConstruct()
[all …]
H A DQSufSort.h40 void QSufSortSuffixSort(qsint_t* __restrict V, qsint_t* __restrict I, const qsint_t numChar, const …
42 void QSufSortGenerateSaFromInverse(const qsint_t *V, qsint_t* __restrict I, const qsint_t numChar);
/dports/multimedia/vvdec/vvdec-1.1.2/source/Lib/CommonLib/
H A DPicYuvMD5.cpp227 std::string hashToString(const PictureHash &digest, int numChar) in hashToString() argument
232 CHECK(numChar<=0, "numChar needs to be >0"); in hashToString()
236 if ((pos % numChar) == 0 && pos!=0 ) in hashToString()
247 std::string hashToString(const vvdecSEIDecodedPictureHash* digest, int numChar) in hashToString() argument
252 CHECK(numChar<=0, "numChar needs to be >0"); in hashToString()
256 if ((pos % numChar) == 0 && pos!=0 ) in hashToString()
271 int numChar=0; in calcAndPrintHashStatus() local
281 numChar = calcMD5(pic, recon_digest, bitDepths); in calcAndPrintHashStatus()
287 numChar = calcCRC(pic, recon_digest, bitDepths); in calcAndPrintHashStatus()
293 numChar = calcChecksum(pic, recon_digest, bitDepths); in calcAndPrintHashStatus()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/cuelang.org/go/cue/literal/
H A Dstring.go54 numChar byte member
100 q.numChar = 3
104 q.numChar = 1
110 quote := start[:int(q.numChar)+q.numHash]
135 return q, nStart, int(q.numChar) + q.numHash, nil
270 for i := 1; byte(i) < info.numChar; i++ {
276 if i+int(info.numChar) >= len(s) || s[i+int(info.numChar)] != '#' {
280 if ln := int(info.numChar) + info.numHash; len(s) != ln {
/dports/devel/upp/upp/bazaar/plugin/gdal/ogr/ogrsf_frmts/bna/
H A Dogrbnaparser.cpp229 int numChar = 0; in BNA_GetNextRecord() local
242 numChar = 0; in BNA_GetNextRecord()
264 numChar = ptrCurLine - ptrBeginLine; in BNA_GetNextRecord()
306 numChar = ptrCurLine - ptrBeginLine; in BNA_GetNextRecord()
333 *curLine, numChar+1); in BNA_GetNextRecord()
476 *curLine, numChar+1); in BNA_GetNextRecord()
633 *curLine, numChar+1, detailedErrorMsg); in BNA_GetNextRecord()
639 *curLine, numChar+1); in BNA_GetNextRecord()
/dports/games/xboing/xboing/
H A Dmisc.c345 int colour, char *text, int numChar) in DrawTextFast() argument
347 void DrawTextFast(display, window, x, y, font, colour, text, numChar) in DrawTextFast()
355 int numChar;
361 if (numChar > 0)
362 len = numChar;
376 int colour, char *text, int numChar) in DrawText() argument
378 void DrawText(display, window, x, y, font, colour, text, numChar) in DrawText()
386 int numChar;
392 if (numChar > 0)
393 len = numChar;
/dports/games/spring/spring_98.0/rts/Rendering/Fonts/
H A DTextWrap.cpp410 unsigned int numChar = 0; in SplitTextInWords() local
423 w->pos = numChar; in SplitTextInWords()
434 cc.pos = numChar; in SplitTextInWords()
447 if (cc->pos != numChar) { in SplitTextInWords()
450 cc->pos = numChar; in SplitTextInWords()
468 w->pos = numChar; in SplitTextInWords()
481 w->pos = numChar; in SplitTextInWords()
484 numChar++; in SplitTextInWords()
/dports/www/grafana8/grafana-8.3.6/vendor/cuelang.org/go/cue/scanner/
H A Dscanner.go65 numChar int member
533 if (quote.numChar != 3 && ch == '\n') || ch < 0 {
547 if ch == '\r' && quote.numChar == 3 {
580 numChar := quote.numChar
581 n := numChar + quote.numHash
584 if i == numChar {
856 quote.numChar = 1
860 quote.numChar = 1
866 quote.numChar = 3
/dports/textproc/libmwaw03/libmwaw-0.3.20/src/lib/
H A DJazzWriterParser.cxx786 int numChar=0; in sendPLC() local
789 numChar=int(rInput->readULong(4)); in sendPLC()
790 f << "num=" << numChar << ","; in sendPLC()
845 numChar=int(rInput->readULong(1)); in sendPLC()
846 f << "len=" << numChar << ","; in sendPLC()
848 input->seek(numChar, librevenge::RVNG_SEEK_CUR); in sendPLC()
849 numChar=0; in sendPLC()
894 if (numChar<=0) continue; in sendPLC()
896 if (!input->checkPosition(pos+numChar)) { in sendPLC()
900 for (int c=0; c<numChar; ++c) { in sendPLC()
H A DCanvasParser.cxx340 int nChar=numChar; in decode3()
343 …if (!m_isDictInitialized || zSz>numChar || numChar>2*zSz || numChar>maxFinalSize+2+lastChecksumSz)… in decode3()
388 if (numChar+1!=zSz) { in decode3()
390 numChar=zSz; in decode3()
392 for (int i=0; i<numChar; ++i) in decode3()
404 numChar=zSz; in decode3()
405 for (int i=0; i<numChar; ++i) in decode3()
411 if (numChar==0 || (checkSum&0xff)!=int(data[numChar-1])) in decode3()
418 --numChar; in decode3()
434 numChar<=maxFinalSize+lastChecksumSz && numChar>=1+lastChecksumSz) { in decode3()
[all …]
H A DRagTimeText.cxx457 auto numChar=static_cast<int>(input->readULong(2)); in readTextZone() local
458 f << "N=" << numChar << ","; in readTextZone()
459 if (!input->checkPosition(endPos) || begTextZonePos+numChar>endPos) { in readTextZone()
474 zone->m_textPos.setLength(numChar); in readTextZone()
475 if (vers>=2 && (numChar%2)==1) in readTextZone()
476 ++numChar; in readTextZone()
477 input->seek(pos+numChar, librevenge::RVNG_SEEK_SET); in readTextZone()
H A DZWrtParser.cxx998 size_t numChar = str.length(); in getInt() local
1004 while (p < numChar) { in getInt()
1041 size_t numChar = str.length(); in getIntList() local
1043 while (p <= numChar) { in getIntList()
1044 if (p==numChar) { in getIntList()
H A DFullWrtText.hxx105 void send(std::shared_ptr<FullWrtTextInternal::Zone> zone, int numChar,
/dports/biology/mrbayes/MrBayes-3.2.7/src/
H A Dcommand.c509 for (i=0; i<numChar; i++) in AllocCharacters()
533 for (i=0; i<numChar; i++) in AllocCharacters()
557 if (numChar > numTaxa) in AllocCharacters()
558 tempSetSize = numChar; in AllocCharacters()
784 for (i=0; i<numChar; i++) in CheckInitialPartitions()
1082 for (i=0; i<numChar; i++) in DoBreaks()
1865 for (i=0; i<numChar; i++) in DoCharStat()
2912 for (i=0; i<numChar; i++) in DoCtype()
2972 for (i=0; i<numChar; i++) in DoCtype()
3872 for (i=0; i<numChar; i++) in DoExclude()
[all …]
/dports/lang/purescript/purescript-0.14.5/tests/
H A DTestCst.hs155 <*> listOf numChar
160 floatPart <- Text.pack <$> listOf1 numChar
215 numChar :: Gen Char
216 numChar = elements "0123456789_" function
/dports/games/xboing/xboing/include/
H A Dmisc.h69 XFontStruct *font, int colour, char *text, int numChar);
71 XFontStruct *font, int colour, char *text, int numChar);
/dports/misc/kcd/kcd-7.15.0/
H A Dkhdoc.cc221 numChar = NULL; in Init()
239 delete [] numChar; // Deleting NULL is OK in ReInitFormat()
240 numChar = NULL; in ReInitFormat()
468 delete [] numChar; // Deleting NULL is OK in ~HyperDocument()
739 numChar[curRow] = curColumn; in NextLine()
769 numChar = new short[numRow]; in ProcessHypertext()
827 numChar[curRow] = curColumn; in ProcessHypertext()
854 numChar[curRow] = curColumn; in ProcessHypertext()
1600 numChar[i] = curColumn; in ProcessHypertext()
1847 numChar = new short[numRow]; in DrawBegin()
[all …]
/dports/math/g2o/g2o-20201223_git/g2o/stuff/
H A Dstring_tools.cpp100 int numChar = vasprintf(&auxPtr, fmt, arg_list); in formatString() local
103 if (numChar != -1) in formatString()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/scumm/
H A Dcharset.cpp76 int numChar = 1413; in loadCJKFont() local
82 _2byteFontPtr = new byte[_2byteWidth * _2byteHeight * numChar / 8]; in loadCJKFont()
87 int numChar = 0; in loadCJKFont() local
93 numChar = 2350; in loadCJKFont()
97 numChar = 8192; in loadCJKFont()
102 numChar = 13630; in loadCJKFont()
109 numChar = 8178; in loadCJKFont()
146 _2byteFontPtr = new byte[((_2byteWidth + 7) / 8) * _2byteHeight * numChar]; in loadCJKFont()
147 fp.read(_2byteFontPtr, ((_2byteWidth + 7) / 8) * _2byteHeight * numChar); in loadCJKFont()
171 int numChar = 1413; in get2byteCharPtr() local
[all …]
/dports/games/scummvm/scummvm-2.5.1/engines/scumm/
H A Dcharset.cpp94 int numChar = 1413; in loadCJKFont() local
100 _2byteFontPtr = new byte[_2byteWidth * _2byteHeight * numChar / 8]; in loadCJKFont()
106 int numChar = 0; in loadCJKFont() local
112 numChar = 2350; in loadCJKFont()
116 numChar = 8192; in loadCJKFont()
121 numChar = 13630; in loadCJKFont()
128 numChar = 8178; in loadCJKFont()
166 fp.read(_2byteFontPtr, ((_2byteWidth + 7) / 8) * _2byteHeight * numChar); in loadCJKFont()
179 int numChar = 2350; in loadKorFont() local
230 fp.read(_2byteFontPtr, ((_2byteWidth + 7) / 8) * _2byteHeight * numChar); in loadKorFont()
[all …]
/dports/graphics/libbpg/libbpg-0.9.8/jctvc/TLibCommon/
H A DTComPicYuvMD5.cpp207 std::string digestToString(const TComDigest &digest, Int numChar) in digestToString() argument
214 if ((pos % numChar) == 0 && pos!=0 ) result += ','; in digestToString()
/dports/games/scummvm/scummvm-2.5.1/engines/saga/
H A Dfont.cpp711 int numChar = 0; in textDrawRect() local
719 draw(fontId, text, numChar, textPoint, color, effectColor, flags); in textDrawRect()
720 numChar = 0; in textDrawRect()
733 numChar++; in textDrawRect()
742 draw(fontId, text, numChar, textPoint, color, effectColor, flags); in textDrawRect()
/dports/devel/icu/icu/source/test/intltest/
H A Drbbitst.h149 …void testTrieStateTable(int32_t numChar, bool expectedTrieWidthIn8Bits, bool expectedStateRowIn8Bi…
/dports/devel/icu-lx/icu/source/test/intltest/
H A Drbbitst.h149 …void testTrieStateTable(int32_t numChar, bool expectedTrieWidthIn8Bits, bool expectedStateRowIn8Bi…

123