Lines Matching defs:dst

282  *	to dst.  Along the way, if backslash sequences are found outside
285 * placed at the end of dst.
294 TclCopyAndCollapse(count, src, dst)
298 register char *dst; /* ... to here. */
305 *dst = Tcl_Backslash(src, &numRead);
306 dst++;
310 *dst = c;
311 dst++;
314 *dst = 0;
549 * Information is copied to *dst in the form of a list element
550 * identical to src (i.e. if Tcl_SplitList is applied to dst it
562 Tcl_TclConvertElement(src, dst, flags)
564 char *dst; /* Place to put list-ified element. */
567 register char *p = dst;
667 return p-dst;
701 register char *dst;
723 dst = result;
725 numChars = Tcl_ConvertElement(argv[i], dst, flagPtr[i]);
726 dst += numChars;
727 *dst = ' ';
728 dst++;
730 if (dst == result) {
731 *dst = 0;
733 dst[-1] = 0;
1124 char *dst;
1143 dst = iPtr->appendResult + iPtr->appendUsed;
1144 if (TclNeedSpace(iPtr->appendResult, dst)) {
1146 *dst = ' ';
1147 dst++;
1149 iPtr->appendUsed += Tcl_ConvertElement(string, dst, flags);
1641 char *newString, *dst, *end;
1670 for (dst = dsPtr->string + dsPtr->length, end = string+length;
1671 string < end; string++, dst++) {
1672 *dst = *string;
1674 *dst = 0;
1706 char *dst, *newString;
1735 dst = dsPtr->string + dsPtr->length;
1736 if (TclNeedSpace(dsPtr->string, dst)) {
1737 *dst = ' ';
1738 dst++;
1741 dsPtr->length += Tcl_ConvertElement(string, dst, flags);
1999 * The ASCII equivalent of "value" is written at "dst". It is
2011 Tcl_PrintDouble(interp, value, dst)
2015 char *dst; /* Where to store converted value;
2020 sprintf(dst, ((Interp *) interp)->pdFormat, value);
2028 for (p = dst; *p != 0; p++) {