Lines Matching refs:STRINGLIB_LEN
24 return STRINGLIB_NEW(STRINGLIB_STR(self), STRINGLIB_LEN(self)); in return_self()
48 e = STRINGLIB_STR(self) + STRINGLIB_LEN(self); in stringlib_expandtabs_impl()
119 u = STRINGLIB_NEW(NULL, left + STRINGLIB_LEN(self) + right); in pad()
125 STRINGLIB_LEN(self)); in pad()
127 memset(STRINGLIB_STR(u) + left + STRINGLIB_LEN(self), in pad()
150 if (STRINGLIB_LEN(self) >= width) { in stringlib_ljust_impl()
154 return pad(self, 0, width - STRINGLIB_LEN(self), fillchar); in stringlib_ljust_impl()
174 if (STRINGLIB_LEN(self) >= width) { in stringlib_rjust_impl()
178 return pad(self, width - STRINGLIB_LEN(self), 0, fillchar); in stringlib_rjust_impl()
200 if (STRINGLIB_LEN(self) >= width) { in stringlib_center_impl()
204 marg = width - STRINGLIB_LEN(self); in stringlib_center_impl()
229 if (STRINGLIB_LEN(self) >= width) { in stringlib_zfill_impl()
233 fill = width - STRINGLIB_LEN(self); in stringlib_zfill_impl()
289 self_len = STRINGLIB_LEN(self); in stringlib_replace_interleave()
359 self_len = STRINGLIB_LEN(self); in stringlib_replace_delete_single_character()
404 self_len = STRINGLIB_LEN(self); in stringlib_replace_delete_substring()
457 self_len = STRINGLIB_LEN(self); in stringlib_replace_single_character_in_place()
506 self_len = STRINGLIB_LEN(self); in stringlib_replace_substring_in_place()
557 self_len = STRINGLIB_LEN(self); in stringlib_replace_single_character()
621 self_len = STRINGLIB_LEN(self); in stringlib_replace_substring()
683 if (STRINGLIB_LEN(self) < from_len) { in stringlib_replace()