HomeSort by relevance Sort by last modified time
    Searched refs:typecnt (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
ZoneProc.c 118 for (i = 0; i < sp->typecnt; ++i) {
380 sp->typecnt = (int) detzcode(u.tzhead.tzh_typecnt);
384 sp->typecnt <= 0 || sp->typecnt > TZ_MAX_TYPES ||
387 (ttisstdcnt != sp->typecnt && ttisstdcnt != 0) ||
388 (ttisgmtcnt != sp->typecnt && ttisgmtcnt != 0))
392 sp->typecnt * (4 + 2) + /* ttinfos */
404 if (sp->types[i] >= sp->typecnt)
407 for (i = 0; i < sp->typecnt; ++i) {
433 for (i = 0; i < sp->typecnt; ++i) {
    [all...]
TimeVals.h 91 int typecnt; member in struct:state
Time.c 369 for (i = sp->typecnt - 1; i >= 0; --i) {
372 for (j = sp->typecnt - 1; j >= 0; --j) {
464 for (i = 0; i < sp->typecnt; ++i)
732 if (++i >= sp->typecnt) {
  /bionic/libc/tzcode/
localtime.c 125 int typecnt; member in struct:state
298 for (i = 0; i < sp->typecnt; ++i) {
327 for (i = 0; i < sp->typecnt; ++i) {
444 int_fast32_t typecnt = detzcode(up->tzhead.tzh_typecnt); local
448 && 0 < typecnt && typecnt < TZ_MAX_TYPES
451 && (ttisstdcnt == typecnt || ttisstdcnt == 0)
452 && (ttisgmtcnt == typecnt || ttisgmtcnt == 0)))
458 + typecnt * 6 /* ttinfos */
466 sp->typecnt = typecnt
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
localtime.c 104 int typecnt; member in struct:state
272 for (i = 0; i < sp->typecnt; ++i) {
305 for (i = 0; i < sp->typecnt; ++i) {
398 sp->typecnt = (int) detzcode(up->tzhead.tzh_typecnt);
402 sp->typecnt <= 0 || sp->typecnt > TZ_MAX_TYPES ||
405 (ttisstdcnt != sp->typecnt && ttisstdcnt != 0) ||
406 (ttisgmtcnt != sp->typecnt && ttisgmtcnt != 0))
411 sp->typecnt * 6 + /* ttinfos */
442 if (sp->typecnt <= typ
    [all...]
zic.c 204 static int typecnt; variable
    [all...]
tz2icu.cpp 325 int64_t typecnt = readcoded(file, 0); local
331 if (isgmtcnt != typecnt || isdstcnt != typecnt) {
355 if (t < 0 || t >= typecnt) {
357 os << "illegal type: " << t << ", expected [0, " << (typecnt-1) << "]";
401 for (i=0; i<typecnt; ++i) {
419 assert(info.types.size() == (unsigned) typecnt);
423 assert(typecnt > 0);
522 for (i=0; i<typecnt; ++i) info.types[i].isstd = readbool(file);
525 for (i=0; i<typecnt; ++i) info.types[i].isgmt = readbool(file)
    [all...]

Completed in 188 milliseconds