Searched defs:wordshift (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Objects/
H A Dlongobject.c3642 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
3669 wordshift = shiftby / PyLong_SHIFT;
3670 newsize = ABS(Py_SIZE(a)) - wordshift;
3686 for (i = 0, j = wordshift; i < newsize; i++, j++) {
3706 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
3724 /* wordshift, remshift = divmod(shiftby, PyLong_SHIFT) */
3725 wordshift = shiftby / PyLong_SHIFT;
3726 remshift = shiftby - wordshift * PyLong_SHIFT;
3729 newsize = oldsize + wordshift;
3737 for (i = 0; i < wordshift;
[all...]
/external/python/cpython3/Objects/
H A Dlongobject.c4289 Py_ssize_t shiftby, newsize, wordshift, loshift, hishift, i, j; local
4316 wordshift = shiftby / PyLong_SHIFT;
4317 newsize = Py_ABS(Py_SIZE(a)) - wordshift;
4329 for (i = 0, j = wordshift; i < newsize; i++, j++) {
4348 Py_ssize_t shiftby, oldsize, newsize, wordshift, remshift, i, j; local
4365 /* wordshift, remshift = divmod(shiftby, PyLong_SHIFT) */
4366 wordshift = shiftby / PyLong_SHIFT;
4367 remshift = shiftby - wordshift * PyLong_SHIFT;
4370 newsize = oldsize + wordshift;
4380 for (i = 0; i < wordshift;
[all...]
/external/annotation-tools/annotation-file-utilities/
H A Dannotation-file-utilities.jarMETA-INF/ META-INF/MANIFEST.MF annotations/ annotations/el/ annotations/field/ annotations/io/ annotations/io/classfile/ ...

Completed in 111 milliseconds