Home
last modified time | relevance | path

Searched refs:len_l (Results 1 – 2 of 2) sorted by relevance

/external/python/dateutil/dateutil/parser/
D_parser.py729 len_l = len(l)
732 while i < len_l:
755 if i + 1 < len_l:
761 if i + 3 < len_l and l[i + 3] == sep:
768 elif (i + 4 < len_l and l[i + 1] == l[i + 3] == ' ' and
805 if i + 1 < len_l and l[i + 1] in ('+', '-'):
823 elif i + 2 < len_l and l[i + 2] == ':':
838 if (i + 5 < len_l and
888 len_l = len(tokens)
892 (idx + 1 >= len_l or
[all …]
/external/bc/src/
Dnum.c573 size_t len_l, len_r, ardx, brdx; in bc_num_as() local
631 len_l = b->len; in bc_num_as()
637 len_l = a->len; in bc_num_as()
656 len_l -= diff; in bc_num_as()
682 min_len = BC_MIN(len_l, len_r); in bc_num_as()
693 for (; i < len_l; ++i) ptr_c[i] = bc_num_subDigits(ptr_l[i], 0, &carry); in bc_num_as()
698 for (; i < len_l; ++i) ptr_c[i] = bc_num_addDigits(ptr_l[i], 0, &carry); in bc_num_as()