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

/ast/src/lib/libtksh/tcl/
H A DtclUnixTime.c118 struct timezone tz;
124 gettimeofday(&date, &tz);
220 struct timezone tz;
223 gettimeofday(&tv, &tz);
224 timeZone = tz.tz_minuteswest;
225 if (tz.tz_dsttime) {
264 struct timezone tz;
266 (void) gettimeofday(&tv, &tz);
116 struct timezone tz; local
217 struct timezone tz; local
260 struct timezone tz; local
/ast/src/cmd/vczip/tests/
H A Dtvctable.c49 Vcodex_t *tz, *uz; local
65 if(!(tz = vcopen(0, Vctable, 0, mtf, VC_ENCODE)) )
68 if((n = vcextract(tz, (Void_t**)(&tstr))) <= 0)
72 if((nc = vcapply(tz, Mt, sizeof(Mt), &cmp)) <= 0 )
H A Dtvcrtable.c40 Vcodex_t *tz, *uz; local
79 if(!(tz = vcopen(0, Vcrtable, 0, mtf, VC_ENCODE)) )
93 if((nc = vcapply(tz, Data, dtsz1+4, &cmp)) <= 0 )
95 if(vcundone(tz) != 4)
105 if((nc = vcapply(tz, Data, dtsz2, &cmp)) <= 0 )
/ast/src/lib/libast/string/
H A Dbase64.c51 base64encode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
73 te = tp + tz - B64_EC + 1;
162 base64decode(const void* fb, size_t fz, void** fn, void* tb, size_t tz, void** tn) argument
188 te = tp + tz;
189 if (tz > 2)
190 tz = 2;
191 tx = te - tz;
/ast/src/lib/libast/comp/
H A Diconv.c264 size_t tz; local
280 fz = tz = (*fn < *tn) ? *fn : *tn;
294 if ((tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)*fn, (LPWSTR)*tb, *tn)) && tz <= *tn)
297 tz *= sizeof(WCHAR);
311 while (!(tz = MultiByteToWideChar(cc->from.index, 0, (LPCSTR)*fb, (int)fz, (LPWSTR)*tb, 0)))
314 tz *= sizeof(WCHAR);
315 if (tz == *tn)
323 if (tz > *tn)
351 if (tz
[all...]
/ast/src/cmd/warp/
H A Dwarp.c501 warp_gettimeofday(register Call_t* p, struct timeval* tv, void* tz) argument
506 if ((r = (*(Gettimeofday_f)p->call)(tv, tz)) != -1 && !p->warped)
517 gettimeofday(struct timeval* tv, void* tz) argument
521 return warp_gettimeofday(&call, tv, tz);
527 _gettimeofday(struct timeval* tv, void* tz) argument
531 return warp_gettimeofday(&call, tv, tz);
535 __gettimeofday(struct timeval* tv, void* tz) argument
539 return warp_gettimeofday(&call, tv, tz);
543 _libc_gettimeofday(struct timeval* tv, void* tz) argument
547 return warp_gettimeofday(&call, tv, tz);
551 __libc_gettimeofday(struct timeval* tv, void* tz) argument
[all...]

Completed in 53 milliseconds