HomeSort by relevance Sort by last modified time
    Searched refs:max_chars (Results 1 - 8 of 8) sorted by null

  /external/u-boot/drivers/input/
input.c 403 * @param max_chars Maximum number of characters to add to output_ch
405 * This may be larger than max_chars, in which case the overflow
409 int keycode, char output_ch[], int max_chars)
419 if (ch_count < max_chars)
446 * @param max_chars Maximum number of characters to add to output_ch
449 * exceed max_chars chars.
453 int max_chars, int same)
491 if (ch_count < max_chars && ch != 0xff)
495 output_ch, max_chars);
499 if (ch_count > max_chars) {
    [all...]
  /external/pdfium/third_party/libtiff/
tif_print.c 38 _TIFFprintAsciiBounded(FILE* fd, const char* cp, size_t max_chars);
399 size_t max_chars = local
402 _TIFFprintAsciiBounded(fd, cp, max_chars);
688 _TIFFprintAsciiBounded(FILE* fd, const char* cp, size_t max_chars)
690 for (; max_chars > 0 && *cp != '\0'; cp++, max_chars--) {
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_decode.cpp 431 uint32_t max_chars = (src_len - 2) / 2; local
432 if (!max_chars)
436 wchar_t* dest_buf = result.GetBuffer(max_chars);
439 for (uint32_t i = 0; i < max_chars * 2; i += 2) {
447 while (i < max_chars * 2) {
  /external/freetype/src/pfr/
pfrtypes.h 66 FT_UInt max_chars; member in struct:PFR_HeaderRec_
pfrload.c 235 FT_FRAME_USHORT( max_chars ),
  /external/doclava/src/com/google/doclava/
PageMetadata.java 470 * exceeding max_chars are truncated at the first word boundary
479 int max_chars = 250; local
491 if (str.length() > max_chars) {
492 marker = bi.following(max_chars);
    [all...]
  /external/tcpdump/
tcpdump.c 667 MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars)
690 if (cnt == 0 && max_chars == 0)
693 if (snprintf(buffer, PATH_MAX + 1, "%s%0*d", filename, max_chars, cnt) > PATH_MAX)
    [all...]
  /external/pcre/dist2/src/
pcre2_jit_compile.c     [all...]

Completed in 378 milliseconds