• Home
  • Raw
  • Download

Lines Matching refs:INT32

43 STATIC const INT32 g_monLengths[2][MONSPERYEAR] = {
123 STATIC INLINE INT32 StringToDigital(CHAR high, CHAR low) in StringToDigital()
138 INT32 hour; in settimezone()
139 INT32 minute; in settimezone()
140 INT32 second; in settimezone()
202 INT32 g_dstForwardSeconds = 0;
206 INT32 DstForwardSecondGet(VOID) in DstForwardSecondGet()
211 STATIC INT32 GetMonthFromString(const CHAR *strMonth) in GetMonthFromString()
224 STATIC INT32 GetWeekDayFromString(const CHAR *strWeekDay) in GetWeekDayFromString()
230 return (INT32)index; in GetWeekDayFromString()
237 STATIC INT32 GetMonthWeekFromString(const CHAR *strMonthWeek) in GetMonthWeekFromString()
243 return (INT32)(index + 1); in GetMonthWeekFromString()
251 STATIC INT32 GetMonthDayFromString(INT32 month, const CHAR *strMonDay) in GetMonthDayFromString()
253 INT32 monDay; in GetMonthDayFromString()
285 STATIC INT32 GetDaySecondsFromString(const CHAR *strTimeString) in GetDaySecondsFromString()
287 INT32 hour, min, sec; in GetDaySecondsFromString()
329 STATIC INT32 DstGetDayOfMonth(INT32 year, INT32 month, INT32 mweek, INT32 wday) in DstGetDayOfMonth()
332 INT32 firstWeekDay; /* First week day in this month of the specified year. */ in DstGetDayOfMonth()
333 INT32 firstMdayOfTargetWday; /* First target month day in this month of the specified year. */ in DstGetDayOfMonth()
334 INT32 targetMdayOfTargetWday; /* The target month day specified by user. */ in DstGetDayOfMonth()
368 if (targetMdayOfTargetWday > g_monLengths[(INT32)isleap(year + TM_YEAR_BASE)][month]) { in DstGetDayOfMonth()
382 STATIC INT32 DateDecode(INT32 year, const CHAR *dstString, INT32 *month, INT32 *monDay, INT32 *sec) in DateDecode()
384 INT32 monWeek, weekDay; in DateDecode()
442 STATIC INT64 DstConfigDecode(INT32 year, const CHAR *dstString) in DstConfigDecode()
444 INT32 month, monDay, sec; in DstConfigDecode()
445 INT32 ret; in DstConfigDecode()
471 const INT32 year = 70; /* 70 stands for epoch time */ in DstConfigCheck()