Searched refs:dst (Results 1 - 25 of 41) sorted by relevance

12

/ast/src/lib/libast/tm/
H A Dtmzone.c42 * if dst!=0 then it will point to 0 for standard zones
49 tmzone(register const char* name, char** end, const char* type, int* dst) argument
64 if (dst)
65 *dst = 0;
78 if (dst)
79 *dst = 0;
82 if (zp->dst && zp->daylight && tmword(name, end, zp->daylight, NiL, 0))
84 if (dst)
85 *dst = zp->dst;
[all...]
H A Dtmxmake.c122 tm->tm_min -= o / 60 + (tm->tm_isdst ? tm->tm_zone->dst : 0);
H A Dtmxtime.c100 t += tm_info.zone->dst * 60;
H A Dtminit.c286 local.dst = m;
348 if (zp->west == n && zp->dst == m)
H A Dtmxdate.c174 int dst; local
213 dst = TM_DST;
1527 if (!dst)
1531 dst = tm->tm_zone->dst;
1534 zone += tmgoff(s, &t, dst);
1536 dst = 0;
1546 if (!(state & ZONE) && (zp = tmzone(s, &t, type, &dst)))
1549 zone = zp->west + dst;
H A Dtmxfmt.c588 tm = tmxtm(tm, tmxtime(tm, tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0)), zp);
592 cp = tmpoff(cp, ep - cp, "", (flags & TM_UTC) ? 0 : tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0), pad == '_' ? -24 * 60 : 24 * 60);
598 tm = tmxtm(tm, tmxtime(tm, tm->tm_zone->west + (tm->tm_isdst ? tm->tm_zone->dst : 0)), zp);
/ast/src/lib/libtk/library/
H A Dtearoff.tcl90 # menu descendants will be duplicated at dst.
91 # dst - Name to use for topmost menu in duplicate
94 proc tkMenuDup {src dst} {
95 set cmd [list menu $dst]
108 set cmd [list $dst add [$src type $i]]
114 tkMenuDup [$src entrycget $i -menu] $dst.m$i
115 $dst entryconfigure $i -menu $dst.m$i
122 regsub -all . $dst {\\&} quotedDst
123 regsub -all $quotedSrc [bindtags $src] $dst
[all...]
/ast/src/lib/libast/comp/
H A Dswab.c54 swab(const void* src, void* dst, ssize_t n)
57 swapmem(1, src, dst, n & ~1);
/ast/src/lib/libtksh/tcl/
H A DtclParse.c311 register char *src, *dst, c;
314 dst = pvPtr->next;
317 if (dst == pvPtr->end) {
322 pvPtr->next = dst;
324 dst = pvPtr->next;
330 *dst = '\0';
331 pvPtr->next = dst;
336 *dst = c;
337 dst++;
349 if ((pvPtr->end - dst) <
309 register char *src, *dst, c; local
492 register char *src, *dst, *end; local
623 register char *src, *dst; local
[all...]
H A DtclUtil.c282 * 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 i
695 register char *dst; local
1113 char *dst; local
1620 char *newString, *dst, *end; local
1684 char *dst, *newString; local
[all...]
H A DtclCmdMZ.c746 register char *dst;
771 dst = fmtCopy;
773 *dst = *fmt;
774 dst++;
780 *dst = *fmt;
781 dst++;
786 *dst = *fmt;
787 dst++;
795 *dst = *fmt;
796 dst
740 register char *dst; local
[all...]
H A DtclCmdAH.c1415 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
1399 char *dst = interp->result; /* Where result is stored. Starts off at local
[all...]
/ast/src/lib/libtk/generic/
H A DtkArgv.c181 *((int *) infoPtr->dst) = (int) infoPtr->src;
189 *((int *) infoPtr->dst) =
205 *((char **)infoPtr->dst) = argv[srcIndex];
214 *((Tk_Uid *)infoPtr->dst) = Tk_GetUid(argv[srcIndex]);
220 *((int *) infoPtr->dst) = dstIndex;
228 *((double *) infoPtr->dst) =
246 if ((*handlerProc)(infoPtr->dst, infoPtr->key,
258 argc = (*handlerProc)(infoPtr->dst, interp, infoPtr->key,
269 Tk_AddOption(tkwin, infoPtr->dst, infoPtr->src,
276 Tk_AddOption(tkwin, infoPtr->dst, arg
[all...]
H A DtkOption.c764 register char *src, *dst;
803 dst = name = src;
814 *dst = *src;
815 dst++;
825 while ((dst != name) && ((dst[-1] == ' ') || (dst[-1] == '\t'))) {
826 dst--;
828 *dst = '\0';
848 dst
757 register char *src, *dst; local
[all...]
H A DtkTextMark.c514 TkTextInsertDisplayProc(chunkPtr, x, y, height, baseline, display, dst, screenY)
516 int x; /* X-position in dst at which to
521 * chunk in dst (x-position is in
526 Drawable dst; /* Pixmap or window in which to draw
551 Tk_Fill3DRectangle(textPtr->tkwin, dst, textPtr->insertBorder,
555 Tk_Fill3DRectangle(textPtr->tkwin, dst, textPtr->border,
H A DtkImgBmap.c650 char *src, *dst;
654 dst = parseInfoPtr->word;
663 *dst = *src;
664 dst++;
680 *dst = c;
681 dst++;
645 char *src, *dst; local
H A DtkText.h161 Drawable dst, int screenY));
761 int baseline, Display *display, Drawable dst,
/ast/src/lib/libtksh/src/
H A Dlist.c22 char *dst, int flags));
142 int Tcl_ConvertElement(char *src, char *dst, int flags) argument
149 return Tcl_TclConvertElement(src, dst, flags);
153 memcpy(dst, str, len+1);
188 register char *dst; local
215 dst = result;
217 numChars = Tcl_ConvertElement(argv[i], dst, flagPtr[i]);
218 dst += numChars;
219 *dst = ' ';
220 dst
[all...]
/ast/src/cmd/builtin/
H A Dtr.c115 int dst; member in struct:__anon47
249 * tr->dst chars so far
259 peek.dst++;
260 tr->count = tr->src - peek.dst;
296 * return a tr handle for <src,dst>
300 tropen(unsigned char* src, unsigned char* dst, int flags) argument
325 if (dst && !*dst)
326 dst = 0;
355 setchar(tr, dst,
[all...]
/ast/src/lib/libtksh/include/
H A Dnvextra.h37 #define nv_move(src,dst) ((nv_clone((src),(dst),NV_MOVE)?(dst):(src)))
H A Dshcompat.h51 Namval_t * nv_move(Namval_t *src, Namval_t *dst);
/ast/src/lib/libcodex/
H A Dcode-iconv.c81 const char* dst; local
84 dst = (src = args[2]) ? args[3] : 0;
102 if (!dst)
104 dst = src;
108 if ((cvt = iconv_open(dst, src)) == (iconv_t)(-1))
118 if ((cvt = iconv_open(dst, "utf-8")) == (iconv_t)(-1))
120 (*p->disc->errorf)(NiL, p->disc, 2, "%s: %s: unknown destination codeset", p->meth->name, dst);
124 (*p->disc->errorf)(NiL, p->disc, 2, "%s: cannot convert from %s to %s", p->meth->name, src, dst);
/ast/src/lib/libast/sfio/
H A Dsfdisc.c241 #define DISCF(dst,iof,type) (dst ? dst->iof : NIL(type))
/ast/src/lib/libast/include/
H A Dtm.h112 short dst; /* add to tz.west for DST */ member in struct:__anon275
/ast/src/cmd/cs/vcs_src/
H A Difs_agent.c749 char *src, *dst; local
753 dst = argv[2];
754 CopyFile( src, dst );
755 argv[1] = dst;

Completed in 69 milliseconds

12