Searched defs:n1 (Results 1 - 16 of 16) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
H A Dnode.c79 PyNode_AddChild(register node *n1, int type, char *str, int lineno, int col_offset) argument
81 const int nch = n1->n_nchildren;
97 n = n1->n_child;
102 n1->n_child = n;
105 n = &n1->n_child[n1->n_nchildren++];
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
H A Dnode.c79 PyNode_AddChild(register node *n1, int type, char *str, int lineno, int col_offset) argument
81 const int nch = n1->n_nchildren;
97 n = n1->n_child;
102 n1->n_child = n;
105 n = &n1->n_child[n1->n_nchildren++];
/device/linaro/bootloader/edk2/StdLib/LibC/Time/
H A Dstrptime.c381 find_string(const unsigned char *bp, int *tgt, const char * const *n1, argument
388 for (; n1 != NULL; n1 = n2, n2 = NULL) {
389 for (i = 0; i < c; i++, n1++) {
390 len = strlen(*n1);
391 if (strncasecmp(*n1, (const char *)bp, len) == 0) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dldblib.c247 int n1 = checkupval(L, 1, 2); local
251 lua_upvaluejoin(L, 1, n1, 3, n2);
H A Dlapi.c1279 LUA_API void lua_upvaluejoin (lua_State *L, int fidx1, int n1, argument
1282 UpVal **up1 = getupvalref(L, fidx1, n1, &f1);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_localemodule.c358 size_t n1, n2; local
365 n1 = strlen(s) + 1;
366 buf = PyMem_Malloc(n1);
369 n2 = strxfrm(buf, s, n1) + 1;
370 if (n2 > n1) {
H A Ddatetimemodule.c246 int n, n1, n4, n100, n400, leapyear, preceding; local
290 /* And now how many single years. Again n1 can be 4, and again
294 n1 = n / 365;
297 *year += n100 * 100 + n4 * 4 + n1;
298 if (n1 == 4 || n100 == 4) {
310 leapyear = n1 == 3 && (n4 != 24 || n100 == 3);
1022 classify_two_utcoffsets(PyObject *o1, int *offset1, naivety *n1, argument
1029 *n1 = *n2 = OFFSET_NAIVE;
1032 *n1 = classify_utcoffset(o1, tzinfoarg1, offset1);
1033 if (*n1
3344 naivety n1, n2; local
4126 naivety n1, n2; local
4273 naivety n1, n2; local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_localemodule.c358 size_t n1, n2; local
365 n1 = strlen(s) + 1;
366 buf = PyMem_Malloc(n1);
369 n2 = strxfrm(buf, s, n1) + 1;
370 if (n2 > n1) {
H A Ddatetimemodule.c246 int n, n1, n4, n100, n400, leapyear, preceding; local
290 /* And now how many single years. Again n1 can be 4, and again
294 n1 = n / 365;
297 *year += n100 * 100 + n4 * 4 + n1;
298 if (n1 == 4 || n100 == 4) {
310 leapyear = n1 == 3 && (n4 != 24 || n100 == 3);
1022 classify_two_utcoffsets(PyObject *o1, int *offset1, naivety *n1, argument
1029 *n1 = *n2 = OFFSET_NAIVE;
1032 *n1 = classify_utcoffset(o1, tzinfoarg1, offset1);
1033 if (*n1
3344 naivety n1, n2; local
4126 naivety n1, n2; local
4273 naivety n1, n2; local
[all...]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
H A Dres_mkupdate.c120 u_int32_t n1, rttl; local
245 n1 = ntohl(ina.s_addr);
247 PUTLONG(n1, cp);
/device/linaro/bootloader/edk2/StdLib/LibC/gdtoa/
H A Dmisc.c465 int i, k1, n, n1; local
471 n1 = n + b->wds + 1;
472 for(i = b->maxwds; n1 > i; i <<= 1)
492 ++n1;
502 ++n1;
508 b1->wds = n1 - 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Ddtoa.c845 int i, k1, n, n1; local
854 n1 = n + b->wds + 1;
855 for(i = b->maxwds; n1 > i; i <<= 1)
876 ++n1;
881 b1->wds = n1 - 1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Ddtoa.c828 int i, k1, n, n1; local
837 n1 = n + b->wds + 1;
838 for(i = b->maxwds; n1 > i; i <<= 1)
859 ++n1;
864 b1->wds = n1 - 1;
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregparse.c1839 OnigCodePoint i, n1, *data1; local
1871 GET_CODE_POINT(n1, data1);
1882 for (i = 0; i < n1; i++) {
1935 OnigCodePoint i, j, n1, n2, *data1, *data2; local
1955 GET_CODE_POINT(n1, data1);
1961 for (i = 0; i < n1; i++) {
1977 for (i = 0; i < n1; i++) {
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/IndustryStandard/
H A DTpm12.h434 TPM_NONCE n1; member in struct:tdTPM_CHANGEAUTH_VALIDATE
/device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
H A DTpm12.h601 TPM_NONCE n1; member in struct:tdTPM_CHANGEAUTH_VALIDATE

Completed in 685 milliseconds