Home
last modified time | relevance | path

Searched refs:totalChars (Results 26 – 50 of 56) sorted by relevance

123

/dports/games/barony/Barony-3.3.7/src/
H A Dactgeneral.cpp522 int totalChars = 0; in actFloorDecoration() local
533 buf[totalChars] = static_cast<char>((my->skill[i] >> (c * 8)) & 0xFF); in actFloorDecoration()
535 ++totalChars; in actFloorDecoration()
539 if ( buf[totalChars] != '\0' ) in actFloorDecoration()
541 buf[totalChars] = '\0'; in actFloorDecoration()
2402 int totalChars = 0; in getScriptFromEntity() local
2413 buf[totalChars] = static_cast<char>((src.skill[i] >> (c * 8)) & 0xFF); in getScriptFromEntity()
2414 ++totalChars; in getScriptFromEntity()
2418 if ( buf[totalChars] != '\0' ) in getScriptFromEntity()
2420 buf[totalChars] = '\0'; in getScriptFromEntity()
H A Ddraw.cpp1890 int totalChars = 0; in drawEntities2D() local
1904 buf[totalChars] = static_cast<char>((selectedEntity->skill[i] >> (c * 8)) & 0xFF); in drawEntities2D()
1905 ++totalChars; in drawEntities2D()
1910 if ( buf[totalChars] != '\0' ) in drawEntities2D()
1912 buf[totalChars] = '\0'; in drawEntities2D()
/dports/x11-toolkits/p5-Tk/Tk-804.035/pTk/mTk/tclGeneric/
H A DtclIO.h389 int totalChars; /* The total number of UTF-8 characters member
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libtk/generic/
H A DtkCanvText.c30 int totalChars; /* Total number of characters included as member
639 linePtr->totalChars = linePtr->numChars;
641 linePtr->totalChars = lineStart[i+1] - lineStart[i];
754 + linePtr->totalChars))) {
778 if (inSelect >= (linePtr->totalChars - beforeSelect)) {
/dports/shells/ksh93/ast-93u/src/lib/libtk/generic/
H A DtkCanvText.c30 int totalChars; /* Total number of characters included as member
639 linePtr->totalChars = linePtr->numChars;
641 linePtr->totalChars = lineStart[i+1] - lineStart[i];
754 + linePtr->totalChars))) {
778 if (inSelect >= (linePtr->totalChars - beforeSelect)) {
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libtk/generic/
H A DtkCanvText.c30 int totalChars; /* Total number of characters included as member
639 linePtr->totalChars = linePtr->numChars;
641 linePtr->totalChars = lineStart[i+1] - lineStart[i];
754 + linePtr->totalChars))) {
778 if (inSelect >= (linePtr->totalChars - beforeSelect)) {
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/voyeur/
H A Dfiles.cpp823 int totalChars = fontData._maxChar - fontData._minChar; in drawText() local
964 if (charValue < 0 || charValue >= totalChars || fontData._charWidth[charValue] == 0) in drawText()
1445 int totalChars = _maxChar - _minChar + 1; in FontResource() local
1446 _charWidth = new int[totalChars]; in FontResource()
1447 for (int i = 0; i < totalChars; ++i) in FontResource()
1450 _charOffsets = src + 8 + totalChars * 2; in FontResource()
1451 _charImages = _charOffsets + totalChars * 2; in FontResource()
H A Dvoyeur_game.cpp1175 int totalChars = 0; in doComputerText() local
1253 ++totalChars; in doComputerText()
1255 } while (!shouldQuit() && !_eventsManager->_mouseClicked && totalChars < maxLen); in doComputerText()
1263 return totalChars; in doComputerText()
H A Dfiles_threads.cpp1222 int totalChars = vm.doComputerText(9999); in doRoom() local
1223 if (totalChars) in doRoom()
1224 vm._voy->addComputerEventEnd(totalChars); in doRoom()
/dports/games/scummvm/scummvm-2.5.1/engines/voyeur/
H A Dfiles.cpp823 int totalChars = fontData._maxChar - fontData._minChar; in drawText() local
964 if (charValue < 0 || charValue >= totalChars || fontData._charWidth[charValue] == 0) in drawText()
1445 int totalChars = _maxChar - _minChar + 1; in FontResource() local
1446 _charWidth = new int[totalChars]; in FontResource()
1447 for (int i = 0; i < totalChars; ++i) in FontResource()
1450 _charOffsets = src + 8 + totalChars * 2; in FontResource()
1451 _charImages = _charOffsets + totalChars * 2; in FontResource()
H A Dvoyeur_game.cpp1178 int totalChars = 0; in doComputerText() local
1256 ++totalChars; in doComputerText()
1258 } while (!shouldQuit() && !_eventsManager->_mouseClicked && totalChars < maxLen); in doComputerText()
1266 return totalChars; in doComputerText()
H A Dfiles_threads.cpp1222 int totalChars = vm.doComputerText(9999); in doRoom() local
1223 if (totalChars) in doRoom()
1224 vm._voy->addComputerEventEnd(totalChars); in doRoom()
/dports/devel/icu-lx/icu/source/test/perf/collationperf/
H A Dcollperf.cpp437 int totalChars = 0; in doKeyGen() local
439 totalChars += u_strlen(gFileLines[line].name); in doKeyGen()
452 printf("Key Length / character = %f\n", (float)totalKeyLen / (float)totalChars); in doKeyGen()
454 printf("%f, ", (float)totalKeyLen / (float)totalChars); in doKeyGen()
/dports/devel/icu/icu/source/test/perf/collationperf/
H A Dcollperf.cpp437 int totalChars = 0; in doKeyGen() local
439 totalChars += u_strlen(gFileLines[line].name); in doKeyGen()
452 printf("Key Length / character = %f\n", (float)totalKeyLen / (float)totalChars); in doKeyGen()
454 printf("%f, ", (float)totalKeyLen / (float)totalChars); in doKeyGen()
/dports/audio/carla/Carla-2.4.1/source/modules/juce_gui_extra/code_editor/
H A Djuce_CodeDocument.cpp1047 auto totalChars = getNumCharacters(); in remove() local
1054 if (p->getPosition() > totalChars) in remove()
1055 p->setPosition (totalChars); in remove()
/dports/devel/juce/JUCE-f37e9a1/modules/juce_gui_extra/code_editor/
H A Djuce_CodeDocument.cpp1047 auto totalChars = getNumCharacters(); in remove() local
1054 if (p->getPosition() > totalChars) in remove()
1055 p->setPosition (totalChars); in remove()
/dports/games/libretro-scummvm/scummvm-7b1e929/engines/tsage/
H A Dgraphics.cpp1363 int totalChars = s - sStart; in getStringFit() local
1367 --totalChars; in getStringFit()
1369 return totalChars; in getStringFit()
/dports/games/scummvm/scummvm-2.5.1/engines/tsage/
H A Dgraphics.cpp1363 int totalChars = s - sStart; in getStringFit() local
1367 --totalChars; in getStringFit()
1369 return totalChars; in getStringFit()
/dports/devel/tcl-trf/trf2.1.4/patches/v8.1/
H A DtclIO.c365 int totalChars; /* The total number of UTF-8 characters member
3198 gs.totalChars = 0;
3395 copiedTotal = gs.totalChars + gs.charsWrote - skip;
3496 gsPtr->totalChars += gsPtr->charsWrote;
3687 gsPtr->totalChars += gsPtr->charsWrote;
/dports/devel/tcl-trf/trf2.1.4/patches/v8.1b3/
H A DtclIO.c365 int totalChars; /* The total number of UTF-8 characters member
3198 gs.totalChars = 0;
3395 copiedTotal = gs.totalChars + gs.charsWrote - skip;
3496 gsPtr->totalChars += gsPtr->charsWrote;
3687 gsPtr->totalChars += gsPtr->charsWrote;
/dports/devel/tcl-trf/trf2.1.4/patches/v8.1a2/
H A DtclIO.c355 int totalChars; /* The total number of UTF-8 characters member
3133 gs.totalChars = 0;
3329 return gs.totalChars + gs.charsWrote - skip;
3420 gsPtr->totalChars += gsPtr->charsWrote;
3611 gsPtr->totalChars += gsPtr->charsWrote;
/dports/devel/tcl-trf/trf2.1.4/patches/v8.1b1/
H A DtclIO.c369 int totalChars; /* The total number of UTF-8 characters member
3216 gs.totalChars = 0;
3413 copiedTotal = gs.totalChars + gs.charsWrote - skip;
3514 gsPtr->totalChars += gsPtr->charsWrote;
3705 gsPtr->totalChars += gsPtr->charsWrote;
/dports/devel/tcl-trf/trf2.1.4/patches/v8.1b2/
H A DtclIO.c369 int totalChars; /* The total number of UTF-8 characters member
3216 gs.totalChars = 0;
3413 copiedTotal = gs.totalChars + gs.charsWrote - skip;
3514 gsPtr->totalChars += gsPtr->charsWrote;
3705 gsPtr->totalChars += gsPtr->charsWrote;
/dports/lang/tcl86/tcl8.6.12/generic/
H A DtclIO.c85 int totalChars; /* The total number of UTF-8 characters member
4602 gs.totalChars = 0; in Tcl_GetsObj()
4824 copiedTotal = gs.totalChars + gs.charsWrote - skip; in Tcl_GetsObj()
5271 gsPtr->totalChars += gsPtr->charsWrote; in FilterInputBytes()
5488 gsPtr->totalChars += gsPtr->charsWrote; in PeekAhead()
/dports/lang/tcl85/tcl8.5.19/generic/
H A DtclIO.c96 int totalChars; /* The total number of UTF-8 characters member
4086 gs.totalChars = 0; in Tcl_GetsObj()
4307 copiedTotal = gs.totalChars + gs.charsWrote - skip; in Tcl_GetsObj()
4749 gsPtr->totalChars += gsPtr->charsWrote; in FilterInputBytes()
4966 gsPtr->totalChars += gsPtr->charsWrote; in PeekAhead()

123