Home
last modified time | relevance | path

Searched refs:_Py_ALIGN_DOWN (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Objects/stringlib/
Dfastsearch.h70 _Py_ALIGN_DOWN(candidate, sizeof(STRINGLIB_CHAR)); in STRINGLIB()
130 _Py_ALIGN_DOWN(candidate, sizeof(STRINGLIB_CHAR)); in STRINGLIB()
Dfind_max_char.h24 (const unsigned char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG); in STRINGLIB()
Dcodecs.h27 const char *aligned_end = (const char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG); in STRINGLIB()
499 (const unsigned char *) _Py_ALIGN_DOWN(e, SIZEOF_LONG); in STRINGLIB()
/external/python/cpython3/Include/
Dpymacro.h85 #define _Py_ALIGN_DOWN(p, a) ((void *)((uintptr_t)(p) & ~(uintptr_t)((a) - 1))) macro
/external/python/cpython3/Objects/
Dbytes_methods.c117 const char *aligned_end = (const char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG); in _Py_bytes_isascii()
Dobmalloc.c957 #define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE))
Dunicodeobject.c4764 const char *aligned_end = (const char *) _Py_ALIGN_DOWN(end, SIZEOF_LONG); in ascii_decode()