Home
last modified time | relevance | path

Searched refs:marg (Results 1 - 2 of 2) sorted by relevance

/third_party/python/Objects/stringlib/
H A Dtransmogrify.h198 Py_ssize_t marg, left; in stringlib_center_impl() local
204 marg = width - STRINGLIB_LEN(self); in stringlib_center_impl()
205 left = marg / 2 + (marg & width & 1); in stringlib_center_impl()
207 return pad(self, left, marg - left, fillchar); in stringlib_center_impl()
/third_party/python/Objects/
H A Dunicodeobject.c10981 Py_ssize_t marg, left; in unicode_center_impl() local
10989 marg = width - PyUnicode_GET_LENGTH(self); in unicode_center_impl()
10990 left = marg / 2 + (marg & width & 1); in unicode_center_impl()
10992 return pad(self, left, marg - left, fillchar); in unicode_center_impl()

Completed in 19 milliseconds