Searched defs:n2 (Results 1 - 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Time/
H A Dstrptime.c382 const char * const *n2, int c)
388 for (; n1 != NULL; n1 = n2, n2 = NULL) {
381 find_string(const unsigned char *bp, int *tgt, const char * const *n1, const char * const *n2, int c) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dldblib.c248 int n2 = checkupval(L, 3, 4); local
251 lua_upvaluejoin(L, 1, n1, 3, n2);
H A Dlapi.c1280 int fidx2, int n2) {
1283 UpVal **up2 = getupvalref(L, fidx2, n2, NULL);
1279 lua_upvaluejoin(lua_State *L, int fidx1, int n1, int fidx2, int n2) argument
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_localemodule.c358 size_t n1, n2; local
369 n2 = strxfrm(buf, s, n1) + 1;
370 if (n2 > n1) {
372 buf = PyMem_Realloc(buf, n2);
375 strxfrm(buf, s, n2);
H A Ddatetimemodule.c1024 PyObject *o2, int *offset2, naivety *n2,
1029 *n1 = *n2 = OFFSET_NAIVE;
1035 *n2 = classify_utcoffset(o2, tzinfoarg2, offset2);
1036 if (*n2 == OFFSET_ERROR)
3344 naivety n1, n2; local
3357 other, &offset2, &n2, Py_None) < 0)
3359 assert(n1 != OFFSET_UNKNOWN && n2 != OFFSET_UNKNOWN);
3364 if (n1 == n2 && offset1 == offset2) {
3370 if (n1 == OFFSET_AWARE && n2 == OFFSET_AWARE) {
3388 assert(n1 != n2);
1022 classify_two_utcoffsets(PyObject *o1, int *offset1, naivety *n1, PyObject *tzinfoarg1, PyObject *o2, int *offset2, naivety *n2, PyObject *tzinfoarg2) argument
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
369 n2 = strxfrm(buf, s, n1) + 1;
370 if (n2 > n1) {
372 buf = PyMem_Realloc(buf, n2);
375 strxfrm(buf, s, n2);
H A Ddatetimemodule.c1024 PyObject *o2, int *offset2, naivety *n2,
1029 *n1 = *n2 = OFFSET_NAIVE;
1035 *n2 = classify_utcoffset(o2, tzinfoarg2, offset2);
1036 if (*n2 == OFFSET_ERROR)
3344 naivety n1, n2; local
3357 other, &offset2, &n2, Py_None) < 0)
3359 assert(n1 != OFFSET_UNKNOWN && n2 != OFFSET_UNKNOWN);
3364 if (n1 == n2 && offset1 == offset2) {
3370 if (n1 == OFFSET_AWARE && n2 == OFFSET_AWARE) {
3388 assert(n1 != n2);
1022 classify_two_utcoffsets(PyObject *o1, int *offset1, naivety *n1, PyObject *tzinfoarg1, PyObject *o2, int *offset2, naivety *n2, PyObject *tzinfoarg2) argument
4126 naivety n1, n2; local
4273 naivety n1, n2; local
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dfset.c934 int i, numAmbig,n2; local
1051 n2 = 0;
1052 for (i=1; i<LL_k; i++) n2 += set_deg(alt1->fset[i])+set_deg(alt2->fset[i]);
1058 if ( n2==2*(LL_k-1) )
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dfileobject.c1805 Py_ssize_t n, n2; local
1852 n2 = fwrite(s, 1, n, f->f_fp);
1853 if (n2 != n || ferror(f->f_fp)) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dast.c1551 node *n2 = CHILD(n, 1); local
1553 if (TYPE(n2) == test) {
1554 upper = ast_for_expr(c, n2);
1560 node *n2 = CHILD(n, 2); local
1562 if (TYPE(n2) == test) {
1563 upper = ast_for_expr(c, n2);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dfileobject.c1745 Py_ssize_t n, n2; local
1789 n2 = fwrite(s, 1, n, f->f_fp);
1794 if (n2 != n) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dast.c1551 node *n2 = CHILD(n, 1); local
1553 if (TYPE(n2) == test) {
1554 upper = ast_for_expr(c, n2);
1560 node *n2 = CHILD(n, 2); local
1562 if (TYPE(n2) == test) {
1563 upper = ast_for_expr(c, n2);
/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
H A Dvfwprintf.c617 int n, n2; /* handy integer (short term usage) */ local
702 * BEWARE, these `goto error' on error, PRINT uses `n2' and
741 n2 = (ep) - (p); \
742 if (n2 > (len)) \
743 n2 = (len); \
744 if (n2 > 0) \
745 PRINT((p), n2); \
746 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \
793 n2
1596 int n, n2; /* handy integer (short term usage) */ local
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
H A Dregparse.c1935 OnigCodePoint i, j, n1, n2, *data1, *data2; local
1956 GET_CODE_POINT(n2, data2);
1964 for (j = 0; j < n2; j++) {
1980 r = and_code_range1(pbuf, from1, to1, data2, n2);

Completed in 1040 milliseconds