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

  /external/chromium_org/content/public/common/
url_utils.cc 41 void SetMaxURLChars(size_t max_chars) {
45 g_max_url_size = max_chars;
url_utils.h 39 CONTENT_EXPORT void SetMaxURLChars(size_t max_chars);
  /external/chromium_org/chrome/installer/mini_installer/
mini_string_test.cc 37 size_t max_chars = str.capacity() - 1; local
39 while ((str.length() + (arraysize(kTestString) - 1)) <= max_chars) {
  /external/srec/srec/crec/
srec_context.c 343 Interface->max_chars = num_chars + num_words_to_add * AVG_CHARS_PER_WORD;
344 Interface->chars = (char*) CALLOC_CLR(Interface->max_chars, sizeof(char), "srec.graph.wordmap.chars");
556 wmap->max_chars = (wmap->next_chars - wmap->chars);
635 wmap->max_chars = (wordID) offset;
679 if (wmap->next_chars + len >= wmap->chars + wmap->max_chars)
682 uintptr_t i,tmp_max_chars= wmap->max_chars * FST_GROW_FACTOR;
684 if(tmp_max_chars - wmap->max_chars < FST_GROW_MINCHARS)
692 memcpy(tmp_chars,wmap->chars,wmap->max_chars * sizeof(char));
698 wmap->max_chars = (wordID)tmp_max_chars;
717 PLogError("error: char overflow in wmap %d max %d\n", (int)(wmap->next_chars - wmap->chars), wmap->max_chars);
    [all...]
  /bootable/recovery/minadbd/
fdevent.c 332 size_t max_chars = FD_SETSIZE * 6 + 1; local
336 printed_out = snprintf(pb, max_chars, __VA_ARGS__); \
341 if (max_chars < (unsigned int)printed_out) { \
346 max_chars -= printed_out; \
  /external/srec/srec/include/
srec_context.h 57 asr_int32_t max_chars; member in struct:__anon34877
  /system/core/adb/
fdevent.c 323 size_t max_chars = FD_SETSIZE * 6 + 1; local
327 printed_out = snprintf(pb, max_chars, __VA_ARGS__); \
332 if (max_chars < (unsigned int)printed_out) { \
337 max_chars -= printed_out; \
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_decode.cpp 404 int max_chars = (src_len - 2) / 2; local
405 if (!max_chars) {
411 FX_LPWSTR dest_buf = result.GetBuffer(max_chars);
414 for (int i = 0; i < max_chars * 2; i += 2) {
418 while (i < max_chars * 2) {
  /external/doclava/src/com/google/doclava/
PageMetadata.java 390 * exceeding max_chars are truncated at the first word boundary
399 int max_chars = 250; local
411 if (str.length() > max_chars) {
412 marker = bi.following(max_chars);
  /external/tcpdump/
tcpdump.c 603 MakeFilename(char *buffer, char *orig_name, int cnt, int max_chars)
626 if (cnt == 0 && max_chars == 0)
629 if (snprintf(buffer, PATH_MAX + 1, "%s%0*d", filename, max_chars, cnt) > PATH_MAX)
    [all...]
  /external/chromium_org/third_party/freetype/src/pfr/
pfrload.c 147 FT_FRAME_USHORT( max_chars ),
  /external/freetype/src/pfr/
pfrload.c 147 FT_FRAME_USHORT( max_chars ),
  /external/srec/tools/test_g2g/
test_g2g.c 229 fst->olabels->max_chars,

Completed in 2004 milliseconds