Searched refs:max_chars (Results 1 – 9 of 9) sorted by relevance
/third_party/node/src/ |
D | string_bytes.cc | 271 size_t max_chars = buflen / sizeof(*dst); in WriteUCS2() local 272 if (max_chars == 0) { in WriteUCS2() 279 nchars = str->Write(isolate, dst, 0, max_chars, flags); in WriteUCS2() 287 max_chars = std::min(max_chars, static_cast<size_t>(str->Length())); in WriteUCS2() 288 if (max_chars == 0) return 0; in WriteUCS2() 289 nchars = str->Write(isolate, aligned_dst, 0, max_chars - 1, flags); in WriteUCS2() 290 CHECK_EQ(nchars, max_chars - 1); in WriteUCS2()
|
/third_party/mesa3d/src/util/ |
D | u_queue.c | 424 const int max_chars = sizeof(queue->name) - 1; in util_queue_init() local 426 name_len = MIN2(name_len, max_chars); in util_queue_init() 430 process_len = MIN2(process_len, max_chars - name_len - 1); in util_queue_init()
|
/third_party/flutter/skia/third_party/externals/freetype/src/pfr/ |
D | pfrtypes.h | 66 FT_UInt max_chars; member
|
D | pfrload.c | 235 FT_FRAME_USHORT( max_chars ),
|
/third_party/skia/third_party/externals/freetype/src/pfr/ |
D | pfrtypes.h | 65 FT_UInt max_chars; member
|
D | pfrload.c | 235 FT_FRAME_USHORT( max_chars ),
|
/third_party/freetype/src/pfr/ |
D | pfrtypes.h | 65 FT_UInt max_chars; member
|
D | pfrload.c | 235 FT_FRAME_USHORT( max_chars ),
|
/third_party/pcre2/pcre2/src/ |
D | pcre2_jit_compile.c | 5435 …piler_common *common, PCRE2_SPTR cc, fast_forward_char_data *chars, int max_chars, sljit_u32 *rec_… in scan_prefix() argument 5530 max_chars = scan_prefix(common, cc + len, chars, max_chars, rec_count); in scan_prefix() 5531 if (max_chars == 0) in scan_prefix() 5552 max_chars = scan_prefix(common, alternative + 1 + LINK_SIZE, chars, max_chars, rec_count); in scan_prefix() 5553 if (max_chars == 0) in scan_prefix() 5668 if (--max_chars == 0) in scan_prefix() 5691 max_chars = scan_prefix(common, cc + 1, chars, max_chars, rec_count); in scan_prefix() 5692 if (max_chars == 0) in scan_prefix() 5743 if (--max_chars == 0) in scan_prefix() 5823 if (--max_chars == 0) in scan_prefix()
|