/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/ |
D | longobject.c | 593 twodigits accum = 0; /* sliding register */ in _PyLong_FromByteArray() local 608 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray() 613 v->ob_digit[idigit] = (digit)(accum & PyLong_MASK); in _PyLong_FromByteArray() 615 accum >>= PyLong_SHIFT; in _PyLong_FromByteArray() 623 v->ob_digit[idigit] = (digit)accum; in _PyLong_FromByteArray() 639 twodigits accum; /* sliding register */ in _PyLong_AsByteArray() local 678 accum = 0; in _PyLong_AsByteArray() 691 accum |= (twodigits)thisdigit << accumbits; in _PyLong_AsByteArray() 713 *p = (unsigned char)(accum & 0xff); in _PyLong_AsByteArray() 716 accum >>= 8; in _PyLong_AsByteArray() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
D | longobject.c | 593 twodigits accum = 0; /* sliding register */ in _PyLong_FromByteArray() local 608 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray() 613 v->ob_digit[idigit] = (digit)(accum & PyLong_MASK); in _PyLong_FromByteArray() 615 accum >>= PyLong_SHIFT; in _PyLong_FromByteArray() 623 v->ob_digit[idigit] = (digit)accum; in _PyLong_FromByteArray() 639 twodigits accum; /* sliding register */ in _PyLong_AsByteArray() local 678 accum = 0; in _PyLong_AsByteArray() 691 accum |= (twodigits)thisdigit << accumbits; in _PyLong_AsByteArray() 713 *p = (unsigned char)(accum & 0xff); in _PyLong_AsByteArray() 716 accum >>= 8; in _PyLong_AsByteArray() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | ConfigParser.py | 688 def _interpolate_some(self, option, accum, rest, section, map, depth): argument 694 accum.append(rest) 697 accum.append(rest[:p]) 702 accum.append("%") 717 self._interpolate_some(option, accum, v, 720 accum.append(v)
|
D | inspect.py | 334 def _searchbases(cls, accum): argument 336 if cls in accum: 338 accum.append(cls) 340 _searchbases(base, accum)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/ |
D | longobject.c | 607 twodigits accum = 0; /* sliding register */ in _PyLong_FromByteArray() local 622 accum |= (twodigits)thisbyte << accumbits; in _PyLong_FromByteArray() 627 v->ob_digit[idigit] = (digit)(accum & PyLong_MASK); in _PyLong_FromByteArray() 629 accum >>= PyLong_SHIFT; in _PyLong_FromByteArray() 637 v->ob_digit[idigit] = (digit)accum; in _PyLong_FromByteArray() 653 twodigits accum; /* sliding register */ in _PyLong_AsByteArray() local 692 accum = 0; in _PyLong_AsByteArray() 705 accum |= (twodigits)thisdigit << accumbits; in _PyLong_AsByteArray() 727 *p = (unsigned char)(accum & 0xff); in _PyLong_AsByteArray() 730 accum >>= 8; in _PyLong_AsByteArray() [all …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | inspect.py | 332 def _searchbases(cls, accum): argument 334 if cls in accum: 336 accum.append(cls) 338 _searchbases(base, accum)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | _hotshot.c | 281 int accum = 0; in unpack_packed_int() local 289 accum |= ((c & 0x7F) >> discard) << bits; in unpack_packed_int() 295 *pvalue = accum; in unpack_packed_int()
|
D | datetimemodule.c | 1845 accum(const char* tag, PyObject *sofar, PyObject *num, PyObject *factor, in accum() function 1968 y = accum("microseconds", x, us, us_per_us, &leftover_us); in delta_new() 1972 y = accum("milliseconds", x, ms, us_per_ms, &leftover_us); in delta_new() 1976 y = accum("seconds", x, second, us_per_second, &leftover_us); in delta_new() 1980 y = accum("minutes", x, minute, us_per_minute, &leftover_us); in delta_new() 1984 y = accum("hours", x, hour, us_per_hour, &leftover_us); in delta_new() 1988 y = accum("days", x, day, us_per_day, &leftover_us); in delta_new() 1992 y = accum("weeks", x, week, us_per_week, &leftover_us); in delta_new()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | datetimemodule.c | 1845 accum(const char* tag, PyObject *sofar, PyObject *num, PyObject *factor, in accum() function 1968 y = accum("microseconds", x, us, us_per_us, &leftover_us); in delta_new() 1972 y = accum("milliseconds", x, ms, us_per_ms, &leftover_us); in delta_new() 1976 y = accum("seconds", x, second, us_per_second, &leftover_us); in delta_new() 1980 y = accum("minutes", x, minute, us_per_minute, &leftover_us); in delta_new() 1984 y = accum("hours", x, hour, us_per_hour, &leftover_us); in delta_new() 1988 y = accum("days", x, day, us_per_day, &leftover_us); in delta_new() 1992 y = accum("weeks", x, week, us_per_week, &leftover_us); in delta_new()
|