Searched defs:ordinal (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A Ddatetimemodule.c161 /* For each month ordinal in 1..12, the number of days in that month,
242 /* ordinal -> year, month, day, considering 01-Jan-0001 as day 1. */
244 ord_to_ymd(int ordinal, int *year, int *month, int *day) argument
248 /* ordinal is a 1-based index, starting at 1-Jan-1. The pattern of
250 * to find the closest 400-year boundary at or before ordinal, then
251 * work with the offset from that boundary to ordinal. Life is much
252 * clearer if we subtract 1 from ordinal first -- then the values
253 * of ordinal at 400-year boundaries are exactly those divisible
270 assert(ordinal >= 1);
271 --ordinal;
538 int ordinal = ymd_to_ord(*y, *m, 1) + local
2381 int ordinal; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Ddatetimemodule.c161 /* For each month ordinal in 1..12, the number of days in that month,
242 /* ordinal -> year, month, day, considering 01-Jan-0001 as day 1. */
244 ord_to_ymd(int ordinal, int *year, int *month, int *day) argument
248 /* ordinal is a 1-based index, starting at 1-Jan-1. The pattern of
250 * to find the closest 400-year boundary at or before ordinal, then
251 * work with the offset from that boundary to ordinal. Life is much
252 * clearer if we subtract 1 from ordinal first -- then the values
253 * of ordinal at 400-year boundaries are exactly those divisible
270 assert(ordinal >= 1);
271 --ordinal;
538 int ordinal = ymd_to_ord(*y, *m, 1) + local
2381 int ordinal; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dunicodeobject.c623 wchar_t ordinal = *w++; local
624 ordinal -= 0x10000;
625 *u++ = 0xD800 | (ordinal >> 10);
626 *u++ = 0xDC00 | (ordinal & 0x3FF);
781 int ordinal = va_arg(count, int); local
783 if (ordinal < 0 || ordinal > 0x10ffff) {
790 if (ordinal < 0 || ordinal > 0xffff) {
1123 PyObject *PyUnicode_FromOrdinal(int ordinal) argument
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dunicodeobject.c583 wchar_t ordinal = *w++; local
584 ordinal -= 0x10000;
585 *u++ = 0xD800 | (ordinal >> 10);
586 *u++ = 0xDC00 | (ordinal & 0x3FF);
1062 PyObject *PyUnicode_FromOrdinal(int ordinal) argument
1067 if (ordinal < 0 || ordinal > 0x10ffff) {
1074 if (ordinal < 0 || ordinal > 0xffff) {
1082 s[0] = (Py_UNICODE)ordinal;
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
H A DTpm12.h1077 UINT32 ordinal; member in struct:tdTPM_IDENTITY_CONTENTS
1193 TPM_COMMAND_CODE ordinal; member in struct:tdTPM_AUDIT_EVENT_OUT
1319 // designated the ordinal, and the final two bytes contain the Command
1953 TPM_COMMAND_CODE ordinal; member in struct:tdTPM_RQU_COMMAND_HDR
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
H A DTpm12.h98 /// The command ordinal
1218 UINT32 ordinal; member in struct:tdTPM_IDENTITY_CONTENTS
1359 TPM_COMMAND_CODE ordinal; member in struct:tdTPM_AUDIT_EVENT_OUT
1482 // designated the ordinal, and the final two bytes contain the Command
2159 TPM_COMMAND_CODE ordinal; member in struct:tdTPM_RQU_COMMAND_HDR

Completed in 112 milliseconds