Home
last modified time | relevance | path

Searched refs:tzhead (Results 1 – 25 of 292) sorted by relevance

12345678910>>...12

/dports/editors/fpc-ide/fpc-3.2.2/rtl/unix/
H A Dtimezone.inc205 tzhead : ttzhead;
217 i:=readbuf(tzhead,sizeof(tzhead));
218 if i<>sizeof(tzhead) then
220 decode(tzhead.tzh_timecnt);
221 decode(tzhead.tzh_typecnt);
222 decode(tzhead.tzh_charcnt);
223 decode(tzhead.tzh_leapcnt);
224 decode(tzhead.tzh_ttisstdcnt);
225 decode(tzhead.tzh_ttisgmtcnt);
228 num_types:=tzhead.tzh_typecnt;
[all …]
/dports/lang/fpc-utils/fpc-3.2.2/rtl/unix/
H A Dtimezone.inc205 tzhead : ttzhead;
217 i:=readbuf(tzhead,sizeof(tzhead));
218 if i<>sizeof(tzhead) then
220 decode(tzhead.tzh_timecnt);
221 decode(tzhead.tzh_typecnt);
222 decode(tzhead.tzh_charcnt);
223 decode(tzhead.tzh_leapcnt);
224 decode(tzhead.tzh_ttisstdcnt);
225 decode(tzhead.tzh_ttisgmtcnt);
228 num_types:=tzhead.tzh_typecnt;
[all …]
/dports/lang/fpc-source/fpc-3.2.2/rtl/unix/
H A Dtimezone.inc205 tzhead : ttzhead;
217 i:=readbuf(tzhead,sizeof(tzhead));
218 if i<>sizeof(tzhead) then
220 decode(tzhead.tzh_timecnt);
221 decode(tzhead.tzh_typecnt);
222 decode(tzhead.tzh_charcnt);
223 decode(tzhead.tzh_leapcnt);
224 decode(tzhead.tzh_ttisstdcnt);
225 decode(tzhead.tzh_ttisgmtcnt);
228 num_types:=tzhead.tzh_typecnt;
[all …]
/dports/lang/fpc/fpc-3.2.2/rtl/unix/
H A Dtimezone.inc205 tzhead : ttzhead;
217 i:=readbuf(tzhead,sizeof(tzhead));
218 if i<>sizeof(tzhead) then
220 decode(tzhead.tzh_timecnt);
221 decode(tzhead.tzh_typecnt);
222 decode(tzhead.tzh_charcnt);
223 decode(tzhead.tzh_leapcnt);
224 decode(tzhead.tzh_ttisstdcnt);
225 decode(tzhead.tzh_ttisgmtcnt);
228 num_types:=tzhead.tzh_typecnt;
[all …]
/dports/converters/p5-Convert-Binary-C/Convert-Binary-C-0.84/tests/include/pdclib/functions/_tzcode/
H A D_PDCLIB_tzload.c109 struct tzhead struct
126 struct tzhead tzhead; argument
129 char buf[ 2 * sizeof ( struct tzhead ) + 2 * sizeof ( struct state ) + 4 * TZ_MAX_TIMES ];
183 size_t tzheadsize = sizeof ( struct tzhead ); in tzloadbody()
266 int_fast32_t ttisstdcnt = detzcode( up->tzhead.tzh_ttisstdcnt ); in tzloadbody()
267 int_fast32_t ttisutcnt = detzcode( up->tzhead.tzh_ttisutcnt ); in tzloadbody()
270 int_fast32_t leapcnt = detzcode( up->tzhead.tzh_leapcnt ); in tzloadbody()
271 int_fast32_t timecnt = detzcode( up->tzhead.tzh_timecnt ); in tzloadbody()
272 int_fast32_t typecnt = detzcode( up->tzhead.tzh_typecnt ); in tzloadbody()
273 int_fast32_t charcnt = detzcode( up->tzhead.tzh_charcnt ); in tzloadbody()
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/StdLib/LibC/Time/
H A DZoneProc.c365 struct tzhead * tzhp; in tzload()
367 struct tzhead tzhead; in tzload() member
376 ttisstdcnt = (int) detzcode(u.tzhead.tzh_ttisstdcnt); in tzload()
377 ttisgmtcnt = (int) detzcode(u.tzhead.tzh_ttisgmtcnt); in tzload()
378 sp->leapcnt = (int) detzcode(u.tzhead.tzh_leapcnt); in tzload()
379 sp->timecnt = (int) detzcode(u.tzhead.tzh_timecnt); in tzload()
380 sp->typecnt = (int) detzcode(u.tzhead.tzh_typecnt); in tzload()
381 sp->charcnt = (int) detzcode(u.tzhead.tzh_charcnt); in tzload()
382 p = u.tzhead.tzh_charcnt + sizeof u.tzhead.tzh_charcnt; in tzload()
/dports/devel/simgear/simgear-2020.3.11/simgear/timing/
H A Dlowleveltime.cxx793 struct tzhead tzhead; in fgtzfile_read() local
874 if (fread ((void *) &tzhead, sizeof (tzhead), 1, f) != 1) in fgtzfile_read()
877 num_transitions = (size_t) decode (tzhead.tzh_timecnt); in fgtzfile_read()
878 num_types = (size_t) decode (tzhead.tzh_typecnt); in fgtzfile_read()
879 chars = (size_t) decode (tzhead.tzh_charcnt); in fgtzfile_read()
880 num_leaps = (size_t) decode (tzhead.tzh_leapcnt); in fgtzfile_read()
881 num_isstd = (size_t) decode (tzhead.tzh_ttisstdcnt); in fgtzfile_read()
882 num_isgmt = (size_t) decode (tzhead.tzh_ttisgmtcnt); in fgtzfile_read()
/dports/devel/R-cran-Rcpp/Rcpp/src/
H A Ddate.cpp205 struct tzhead { struct
639 struct tzhead tzhead; in tzload() member
640 char buf[2 * sizeof(struct tzhead) + in tzload()
711 ttisstdcnt = (int) detzcode(u.tzhead.tzh_ttisstdcnt); in tzload()
712 ttisgmtcnt = (int) detzcode(u.tzhead.tzh_ttisgmtcnt); in tzload()
713 sp->leapcnt = (int) detzcode(u.tzhead.tzh_leapcnt); in tzload()
714 sp->timecnt = (int) detzcode(u.tzhead.tzh_timecnt); in tzload()
715 sp->typecnt = (int) detzcode(u.tzhead.tzh_typecnt); in tzload()
716 sp->charcnt = (int) detzcode(u.tzhead.tzh_charcnt); in tzload()
717 p = u.tzhead.tzh_charcnt + sizeof u.tzhead.tzh_charcnt; in tzload()
[all …]
/dports/graphics/photoflow/PhotoFlow-8472024f/src/external/exiv2/src/
H A Dlocaltime.c283 struct tzhead * tzhp;
285 struct tzhead tzhead; member
294 ttisstdcnt = (int) detzcode(u.tzhead.tzh_ttisstdcnt);
295 ttisgmtcnt = (int) detzcode(u.tzhead.tzh_ttisgmtcnt);
296 sp->leapcnt = (int) detzcode(u.tzhead.tzh_leapcnt);
297 sp->timecnt = (int) detzcode(u.tzhead.tzh_timecnt);
298 sp->typecnt = (int) detzcode(u.tzhead.tzh_typecnt);
299 sp->charcnt = detzcode(u.tzhead.tzh_charcnt);
300 p = u.tzhead.tzh_charcnt + sizeof u.tzhead.tzh_charcnt;
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Dtztime.cc235 struct tzhead tzhead; in tz_load() member
236 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
251 if (read_from_file < sizeof(struct tzhead)) return true; in tz_load()
253 ttisstdcnt = int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
254 ttisgmtcnt = int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
255 sp->leapcnt = int4net(u.tzhead.tzh_leapcnt); in tz_load()
256 sp->timecnt = int4net(u.tzhead.tzh_timecnt); in tz_load()
257 sp->typecnt = int4net(u.tzhead.tzh_typecnt); in tz_load()
258 sp->charcnt = int4net(u.tzhead.tzh_charcnt); in tz_load()
259 p = u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/percona57-server/percona-server-5.7.36-39/sql/
H A Dtztime.cc189 struct tzhead tzhead; in tz_load() member
190 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
206 if (read_from_file < sizeof(struct tzhead)) in tz_load()
209 ttisstdcnt= int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
210 ttisgmtcnt= int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
211 sp->leapcnt= int4net(u.tzhead.tzh_leapcnt); in tz_load()
212 sp->timecnt= int4net(u.tzhead.tzh_timecnt); in tz_load()
213 sp->typecnt= int4net(u.tzhead.tzh_typecnt); in tz_load()
214 sp->charcnt= int4net(u.tzhead.tzh_charcnt); in tz_load()
215 p= u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/percona57-pam-for-mysql/percona-server-5.7.36-39/sql/
H A Dtztime.cc189 struct tzhead tzhead; in tz_load() member
190 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
206 if (read_from_file < sizeof(struct tzhead)) in tz_load()
209 ttisstdcnt= int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
210 ttisgmtcnt= int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
211 sp->leapcnt= int4net(u.tzhead.tzh_leapcnt); in tz_load()
212 sp->timecnt= int4net(u.tzhead.tzh_timecnt); in tz_load()
213 sp->typecnt= int4net(u.tzhead.tzh_typecnt); in tz_load()
214 sp->charcnt= int4net(u.tzhead.tzh_charcnt); in tz_load()
215 p= u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/sql/
H A Dtztime.cc189 struct tzhead tzhead; in tz_load() member
190 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
206 if (read_from_file < sizeof(struct tzhead)) in tz_load()
209 ttisstdcnt= int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
210 ttisgmtcnt= int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
211 sp->leapcnt= int4net(u.tzhead.tzh_leapcnt); in tz_load()
212 sp->timecnt= int4net(u.tzhead.tzh_timecnt); in tz_load()
213 sp->typecnt= int4net(u.tzhead.tzh_typecnt); in tz_load()
214 sp->charcnt= int4net(u.tzhead.tzh_charcnt); in tz_load()
215 p= u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/percona57-client/percona-server-5.7.36-39/sql/
H A Dtztime.cc189 struct tzhead tzhead; in tz_load() member
190 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
206 if (read_from_file < sizeof(struct tzhead)) in tz_load()
209 ttisstdcnt= int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
210 ttisgmtcnt= int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
211 sp->leapcnt= int4net(u.tzhead.tzh_leapcnt); in tz_load()
212 sp->timecnt= int4net(u.tzhead.tzh_timecnt); in tz_load()
213 sp->typecnt= int4net(u.tzhead.tzh_typecnt); in tz_load()
214 sp->charcnt= int4net(u.tzhead.tzh_charcnt); in tz_load()
215 p= u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/sql/
H A Dtztime.cc189 struct tzhead tzhead; in tz_load() member
190 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
206 if (read_from_file < sizeof(struct tzhead)) in tz_load()
209 ttisstdcnt= int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
210 ttisgmtcnt= int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
211 sp->leapcnt= int4net(u.tzhead.tzh_leapcnt); in tz_load()
212 sp->timecnt= int4net(u.tzhead.tzh_timecnt); in tz_load()
213 sp->typecnt= int4net(u.tzhead.tzh_typecnt); in tz_load()
214 sp->charcnt= int4net(u.tzhead.tzh_charcnt); in tz_load()
215 p= u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/mysql57-client/mysql-5.7.36/sql/
H A Dtztime.cc189 struct tzhead tzhead; in tz_load() member
190 uchar buf[sizeof(struct tzhead) + sizeof(my_time_t) * TZ_MAX_TIMES + in tz_load()
206 if (read_from_file < sizeof(struct tzhead)) in tz_load()
209 ttisstdcnt= int4net(u.tzhead.tzh_ttisgmtcnt); in tz_load()
210 ttisgmtcnt= int4net(u.tzhead.tzh_ttisstdcnt); in tz_load()
211 sp->leapcnt= int4net(u.tzhead.tzh_leapcnt); in tz_load()
212 sp->timecnt= int4net(u.tzhead.tzh_timecnt); in tz_load()
213 sp->typecnt= int4net(u.tzhead.tzh_typecnt); in tz_load()
214 sp->charcnt= int4net(u.tzhead.tzh_charcnt); in tz_load()
215 p= u.tzhead.tzh_charcnt + sizeof(u.tzhead.tzh_charcnt); in tz_load()
[all …]
/dports/databases/postgresql96-pltcl/postgresql-9.6.24/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql96-server/postgresql-9.6.24/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql96-plperl/postgresql-9.6.24/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql96-plpython/postgresql-9.6.24/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql10-client/postgresql-10.19/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql10-plperl/postgresql-10.19/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql10-contrib/postgresql-10.19/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql10-plpython/postgresql-10.19/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()
/dports/databases/postgresql10-docs/postgresql-10.19/src/timezone/
H A Dlocaltime.c186 struct tzhead tzhead; member
189 char buf[2 * sizeof(struct tzhead) + 2 * sizeof(struct state)
224 int tzheadsize = sizeof(struct tzhead); in tzloadbody()
254 int32 ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); in tzloadbody()
255 int32 ttisutcnt = detzcode(up->tzhead.tzh_ttisutcnt); in tzloadbody()
258 int32 leapcnt = detzcode(up->tzhead.tzh_leapcnt); in tzloadbody()
259 int32 timecnt = detzcode(up->tzhead.tzh_timecnt); in tzloadbody()
260 int32 typecnt = detzcode(up->tzhead.tzh_typecnt); in tzloadbody()
261 int32 charcnt = detzcode(up->tzhead.tzh_charcnt); in tzloadbody()
415 if (up->tzhead.tzh_version[0] == '\0') in tzloadbody()

12345678910>>...12