Searched refs:lastCharIdx (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclStringObj.c2755 int i = 0, lastCharIdx = numChars - 1;
2779 dest[i++] = source[lastCharIdx--];
2784 while (i < lastCharIdx) {
2785 Tcl_UniChar tmp = source[lastCharIdx];
2786 source[lastCharIdx--] = source[i];
2800 dest[i++] = bytes[lastCharIdx--];
2805 while (i < lastCharIdx) {
2806 char tmp = bytes[lastCharIdx];
2807 bytes[lastCharIdx--] = bytes[i];
2727 int i = 0, lastCharIdx = numChars - 1; local

Completed in 62 milliseconds