Lines Matching defs:dst
1415 char *dst = interp->result; /* Where result is stored. Starts off at
1419 * stored at dst. */
1422 * in dst (not including null terminator. */
1669 memcpy((VOID *) newDst, (VOID *) dst, (size_t) dstSize);
1672 ckfree(dst);
1674 dst = newDst;
1678 memcpy((VOID *) (dst+dstSize), (VOID *) ptrValue, (size_t) size);
1680 dst[dstSize] = 0;
1683 sprintf(dst+dstSize, newFormat, doubleValue);
1686 sprintf(dst+dstSize, newFormat, (short) intValue);
1688 sprintf(dst+dstSize, newFormat, intValue);
1691 sprintf(dst+dstSize, newFormat, ptrValue);
1693 dstSize += strlen(dst+dstSize);
1697 interp->result = dst;
1718 ckfree(dst);