HomeSort by relevance Sort by last modified time
    Searched refs:maxlen (Results 51 - 75 of 259) sorted by null

1 23 4 5 6 7 8 91011

  /external/webp/src/enc/
backward_references.c 166 const uint32_t* const argb, int maxlen,
194 curr_length = FindMatchLength(argb + pos, argb_start, maxlen);
294 int maxlen = pix_count - i; local
295 if (maxlen > MAX_LENGTH) {
296 maxlen = MAX_LENGTH;
298 HashChainFindCopy(hash_chain, i, xsize, argb, maxlen,
310 int maxlen = pix_count - (i + 1); local
311 if (maxlen > MAX_LENGTH) {
312 maxlen = MAX_LENGTH;
314 HashChainFindCopy(hash_chain, i + 1, xsize, argb, maxlen,
525 int maxlen = shortmax ? 2 : MAX_LENGTH; local
653 int maxlen = chosen_path[ix]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 425 maxlen = firstlen
430 if len(line) < maxlen:
432 maxlen = restlen
445 maxlen = restlen
468 elif curlen + partlen > maxlen:
471 # If this part is longer than maxlen and we aren't already
474 if partlen > maxlen and ch != ' ':
475 subl = _split_ascii(part, maxlen, restlen,
482 maxlen = restlen
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
header.py 425 maxlen = firstlen
430 if len(line) < maxlen:
432 maxlen = restlen
445 maxlen = restlen
468 elif curlen + partlen > maxlen:
471 # If this part is longer than maxlen and we aren't already
474 if partlen > maxlen and ch != ' ':
475 subl = _split_ascii(part, maxlen, restlen,
482 maxlen = restlen
  /external/chromium_org/third_party/openssl/openssl/ssl/
d1_srtp.c 264 int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen)
282 if((2 + ct*2 + 1) > maxlen)
406 int ssl_add_serverhello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen)
410 if(maxlen < 5)
  /external/compiler-rt/lib/asan/
asan_intercepted_functions.h 105 uptr strnlen(const char *s, uptr maxlen);
  /external/dnsmasq/contrib/wrt/
dhcp_release.c 142 static int parse_hex(char *in, unsigned char *out, int maxlen, int *mac_type)
150 while (maxlen == -1 || i < maxlen)
154 maxlen = i;
  /external/openssl/ssl/
d1_srtp.c 264 int ssl_add_clienthello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen)
282 if((2 + ct*2 + 1) > maxlen)
406 int ssl_add_serverhello_use_srtp_ext(SSL *s, unsigned char *p, int *len, int maxlen)
410 if(maxlen < 5)
  /external/svox/pico/lib/
picobase.h 55 * the UTF8 string 'utf8str' of maximum length maxlen (in bytes)
57 * @param maxlen : max length (in bytes) accessible in utf8str
59 * up to the first '\0' or maxlen
64 const picoos_uint16 maxlen);
picorsrc.h 128 picoos_char * name, picoos_uint32 maxlen);
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
dhdioctl.h 98 uint maxlen; /* Maximum length of packets to send */ member in struct:dhd_pktgen
  /external/wpa_supplicant_8/hostapd/
main.c 53 int maxlen; local
57 maxlen = len + 100;
58 format = os_malloc(maxlen);
100 os_snprintf(format, maxlen, "%s: STA " MACSTR "%s%s: %s",
104 os_snprintf(format, maxlen, "%s:%s%s %s",
108 os_snprintf(format, maxlen, "STA " MACSTR "%s%s: %s",
112 os_snprintf(format, maxlen, "%s%s%s",
  /external/dropbear/
packet.c 98 unsigned int maxlen; local
122 maxlen = ses.readbuf->len - ses.readbuf->pos;
123 len = read(ses.sock, buf_getptr(ses.readbuf, maxlen), maxlen);
140 if ((unsigned int)len == maxlen) {
153 unsigned int maxlen; local
169 maxlen = blocksize - ses.readbuf->pos;
172 len = read(ses.sock, buf_getwriteptr(ses.readbuf, maxlen),
173 maxlen);
187 if ((unsigned int)len != maxlen) {
    [all...]
common-channel.c 395 int len, maxlen; local
399 maxlen = cbuf_readlen(cbuf);
402 len = write(fd, cbuf_readptr(cbuf, maxlen), maxlen);
581 size_t maxlen, size_pos; local
597 maxlen = MIN(channel->transwindow, channel->transmaxpacket);
600 maxlen = MIN(maxlen,
602 TRACE(("maxlen %d", maxlen))
    [all...]
  /external/liblzf/cs/
CLZF.cs 192 UInt32 maxlen = (UInt32)in_len - iidx - len;
193 maxlen = maxlen > MAX_REF ? MAX_REF : maxlen;
200 while (len < maxlen && in_data[reference+len] == in_data[iidx+len]);
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_stdinc.h 403 extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, size_t maxlen);
409 extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, size_t maxlen);
549 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
565 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen);
577 extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, const char *fmt, ...);
583 extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_stdinc.h 403 extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, size_t maxlen);
409 extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, size_t maxlen);
549 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
565 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen);
577 extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, const char *fmt, ...);
583 extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_stdinc.h 403 extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, size_t maxlen);
409 extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, size_t maxlen);
549 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
565 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen);
577 extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, const char *fmt, ...);
583 extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_stdinc.h 403 extern DECLSPEC size_t SDLCALL SDL_strlcpy(char *dst, const char *src, size_t maxlen);
409 extern DECLSPEC size_t SDLCALL SDL_strlcat(char *dst, const char *src, size_t maxlen);
549 extern DECLSPEC int SDLCALL SDL_strncmp(const char *str1, const char *str2, size_t maxlen);
565 extern DECLSPEC int SDLCALL SDL_strncasecmp(const char *str1, const char *str2, size_t maxlen);
577 extern DECLSPEC int SDLCALL SDL_snprintf(char *text, size_t maxlen, const char *fmt, ...);
583 extern DECLSPEC int SDLCALL SDL_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
  /system/core/libutils/
Unicode.cpp 125 size_t strnlen32(const char32_t *s, size_t maxlen)
128 while ((maxlen > 0) && *ss) {
130 maxlen--;
280 size_t strnlen16(const char16_t *s, size_t maxlen)
284 /* Important: the maxlen test must precede the reference through ss;
286 while ((maxlen > 0) && *ss) {
288 maxlen--;
  /external/chromium_org/third_party/opus/src/include/
opus.h     [all...]
  /external/elfutils/libasm/
asm_align.c 158 if (asmscn->content->maxlen - asmscn->content->len >= len)
173 asmscn->content->maxlen = size;
  /external/elfutils/src/
size.c 411 int maxlen = 10; local
432 maxlen = MAX (maxlen,
441 maxlen, sgettext ("sysv|section"),
464 maxlen, elf_strptr (elf, shstrndx, shdr->sh_name),
473 printf ("%-*s %*" PRIx64 "\n\n\n", maxlen, sgettext ("sysv|Total"),
476 printf ("%-*s %*" PRId64 "\n\n\n", maxlen, sgettext ("sysv|Total"),
479 printf ("%-*s %*" PRIo64 "\n\n\n", maxlen, sgettext ("sysv|Total"),
  /external/grub/stage2/
char_io.c 272 real_get_cmdline (char *prompt, char *cmdline, int maxlen,
509 if (llen + l < maxlen)
545 if (maxlen > MAX_CMDLINE)
547 maxlen = MAX_CMDLINE;
776 /* Don't use this with a MAXLEN greater than 1600 or so! The problem
779 PROMPT, and space for error and status lines, etc. MAXLEN must be
785 get_cmdline (char *prompt, char *cmdline, int maxlen,
801 /* Make sure that MAXLEN is not too large. */
802 if (maxlen > MAX_CMDLINE)
803 maxlen = MAX_CMDLINE
    [all...]
  /external/clang/test/Analysis/
string-fail.c 42 size_t strnlen(const char *s, size_t maxlen);
  /external/dnsmasq/src/
util.c 368 /* in may equal out, when maxlen may be -1 (No max len). */
369 int parse_hex(char *in, unsigned char *out, int maxlen,
378 while (maxlen == -1 || i < maxlen)
382 maxlen = i;

Completed in 2550 milliseconds

1 23 4 5 6 7 8 91011