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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 346 int first_day = ymd_to_ord(year, 1, 1); /* ord of 1/1 */ local
348 int first_weekday = (first_day + 6) % 7;
350 int week1_monday = first_day - first_weekday;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 346 int first_day = ymd_to_ord(year, 1, 1); /* ord of 1/1 */ local
348 int first_weekday = (first_day + 6) % 7;
350 int week1_monday = first_day - first_weekday;
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 346 int first_day = ymd_to_ord(year, 1, 1); /* ord of 1/1 */ local
348 int first_weekday = (first_day + 6) % 7;
350 int week1_monday = first_day - first_weekday;
    [all...]
  /external/python/cpython3/Modules/
_datetimemodule.c 368 int first_day = ymd_to_ord(year, 1, 1); /* ord of 1/1 */ local
370 int first_weekday = (first_day + 6) % 7;
372 int week1_monday = first_day - first_weekday;
    [all...]

Completed in 513 milliseconds