Searched refs:fill_char (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Python/ |
D | formatter_unicode.c | 129 Py_UCS4 fill_char; member 144 printf("internal format spec: fill_char %d\n", format->fill_char); 182 format->fill_char = ' '; in parse_internal_render_format_spec() 195 format->fill_char = READ_spec(pos); in parse_internal_render_format_spec() 221 format->fill_char = '0'; in parse_internal_render_format_spec() 369 Py_UCS4 fill_char, Py_ssize_t n_lpadding, in fill_padding() argument 377 _PyUnicode_FastFill(writer->buffer, pos, n_lpadding, fill_char); in fill_padding() 383 _PyUnicode_FastFill(writer->buffer, pos, n_rpadding, fill_char); in fill_padding() 533 if (format->fill_char == '0' && format->align == '=') in calc_number_widths() 585 *maxchar = Py_MAX(*maxchar, format->fill_char); in calc_number_widths() [all …]
|
/third_party/ffmpeg/libavutil/ |
D | samplefmt.c | 244 int fill_char = (sample_fmt == AV_SAMPLE_FMT_U8 || in av_samples_set_silence() local 251 memset(audio_data[i] + offset, fill_char, data_size); in av_samples_set_silence()
|
/third_party/python/Include/cpython/ |
D | unicodeobject.h | 530 Py_UCS4 fill_char 539 Py_UCS4 fill_char
|
/third_party/python/Objects/ |
D | unicodeobject.c | 10563 Py_UCS4 fill_char) in _PyUnicode_FastFill() argument 10569 assert(fill_char <= PyUnicode_MAX_CHAR_VALUE(unicode)); in _PyUnicode_FastFill() 10572 unicode_fill(kind, data, fill_char, start, length); in _PyUnicode_FastFill() 10577 Py_UCS4 fill_char) in PyUnicode_Fill() argument 10594 if (fill_char > PyUnicode_MAX_CHAR_VALUE(unicode)) { in PyUnicode_Fill() 10606 _PyUnicode_FastFill(unicode, start, length, fill_char); in PyUnicode_Fill() 13082 Py_UCS4 fill_char = PyUnicode_READ(kind, PyUnicode_DATA(str), 0); in unicode_repeat() local 13085 memset(to, (unsigned char)fill_char, len); in unicode_repeat() 13090 ucs2[n] = fill_char; in unicode_repeat() 13095 ucs4[n] = fill_char; in unicode_repeat()
|
/third_party/python/Doc/c-api/ |
D | unicode.rst | 608 Py_ssize_t length, Py_UCS4 fill_char) 610 Fill a string with a character: write *fill_char* into 613 Fail if *fill_char* is bigger than the string maximum character, or if the
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 2775 PyUnicode_Fill:Py_UCS4:fill_char::
|