HomeSort by relevance Sort by last modified time
    Searched full:maxlen (Results 26 - 50 of 468) sorted by null

12 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsnlen.c 33 wcsnlen(const wchar_t *s, size_t maxlen)
37 for (len = 0; len < maxlen; len++, s++) {
  /bionic/libc/upstream-openbsd/lib/libc/string/
strndup.c 26 strndup(const char *str, size_t maxlen)
31 len = strnlen(str, maxlen);
  /external/libexif/libexif/
exif-utils.c 220 exif_convert_utf16_to_utf8 (char *out, const unsigned short *in, int maxlen)
222 if (maxlen <= 0) {
227 if (maxlen > 1) {
229 maxlen--;
234 if (maxlen > 2) {
237 maxlen -= 2;
242 if (maxlen > 3) {
246 maxlen -= 3;
  /external/libmpeg2/decoder/
impeg2d_vld.h 25 UWORD16 maxLen);
29 UWORD16 maxLen);
  /external/regex-re2/re2/testing/
string_generator.h 6 // maxlen letters using the set of letters in alpha.
22 StringGenerator(int maxlen, const vector<string>& alphabet);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_libc.cc 178 uptr internal_strlcat(char *dst, const char *src, uptr maxlen) {
180 const uptr dstlen = internal_strnlen(dst, maxlen);
181 if (dstlen == maxlen) return maxlen + srclen;
182 if (srclen < maxlen - dstlen) {
185 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
186 dst[maxlen - 1] = '\0';
200 uptr internal_strlcpy(char *dst, const char *src, uptr maxlen) {
202 if (srclen < maxlen) {
204 } else if (maxlen != 0)
    [all...]
  /external/libnl/lib/netfilter/
queue_obj.c 42 nl_dump(p, "maxlen=%u ", queue->queue_maxlen);
116 void nfnl_queue_set_maxlen(struct nfnl_queue *queue, uint32_t maxlen)
118 queue->queue_maxlen = maxlen;
177 diff |= NFNL_QUEUE_DIFF_VAL(MAXLEN, queue_maxlen);
189 __ADD(QUEUE_ATTR_MAXLEN, maxlen)
  /external/lzma/CPP/Common/
CommandLineParser.cpp 91 int maxLen = -1;
97 if ((int)switchLen <= maxLen || pos + switchLen > s.Len())
102 maxLen = switchLen;
106 if (maxLen < 0)
112 pos += maxLen;
CommandLineParser.h 30 // int MaxLen;
  /external/vboot_reference/futility/
misc.c 84 uint32_t maxlen = gbb->header_size; local
85 maxlen = max(maxlen,
87 maxlen = max(maxlen,
89 maxlen = max(maxlen,
91 maxlen = max(maxlen,
93 *maxlen_ptr = maxlen;
    [all...]
  /external/libopus/src/
repacketizer.c 103 unsigned char *data, opus_int32 maxlen, int self_delimited, int pad)
130 if (tot_size > maxlen)
139 if (tot_size > maxlen)
145 if (tot_size > maxlen)
151 if (count > 2 || (pad && tot_size < maxlen))
179 if (tot_size > maxlen)
185 if (tot_size > maxlen)
190 pad_amount = pad ? (maxlen-tot_size) : 0;
222 for (i=ptr-data;i<maxlen;i++)
228 opus_int32 opus_repacketizer_out_range(OpusRepacketizer *rp, int begin, int end, unsigned char *data, opus_int32 maxlen)
    [all...]
  /art/runtime/jdwp/
jdwp_expand_buf.cc 40 int maxLen;
52 newBuf->maxLen = kInitialStorage;
87 if (pBuf->curLen + newCount <= pBuf->maxLen) {
91 while (pBuf->curLen + newCount > pBuf->maxLen) {
92 pBuf->maxLen *= 2;
95 uint8_t* newPtr = reinterpret_cast<uint8_t*>(realloc(pBuf->storage, pBuf->maxLen));
97 LOG(FATAL) << "realloc(" << pBuf->maxLen << ") failed";
  /system/core/mkbootimg/
mkbootimg 79 if 'maxlen' not in kwargs:
80 raise ValueError('maxlen must be set')
81 self.maxlen = int(kwargs['maxlen'])
82 del kwargs['maxlen']
86 if len(values) > self.maxlen:
88 format(self.maxlen, len(values)))
136 'kernel command line', default='', action=ValidateStrLenAction, maxlen=1536)
148 maxlen=16)
  /external/skia/bin/
compare 57 maxlen = max(map(len, common)) variable
65 print '%*s\t%6s(%6s) -> %6s(%6s)\t%s' % (maxlen, key, humanize(am), humanize(asem),
68 print '%*s\t%6s -> %6s\t%s' % (maxlen, key, humanize(am), humanize(bm), str_ratio)
  /toolchain/binutils/binutils-2.25/libiberty/testsuite/
demangler-fuzzer.c 26 #define MAXLEN 253
53 char symbol[2 + MAXLEN + 1] = "_Z";
95 length = rand () % MAXLEN;
  /external/chromium-trace/catapult/third_party/Paste/paste/auth/
cookie.py 118 ``maxlen``
128 def __init__(self, secret = None, timeout = None, maxlen = None):
134 self.maxlen = maxlen or 4096
153 if len(cookie) > self.maxlen:
243 ``timeout``, and ``maxlen``.
255 signer=None, secret=None, timeout=None, maxlen=None):
257 signer = self.signer_class(secret, timeout, maxlen)
328 maxlen=4096):
376 ``maxlen``
    [all...]
  /external/webrtc/webrtc/common_audio/resampler/
resampler.cc 405 int16_t* samplesOut, size_t maxLen, size_t &outLen)
412 int16_t* out_left = (int16_t*)malloc(maxLen / 2 * sizeof(int16_t));
414 (int16_t*)malloc(maxLen / 2 * sizeof(int16_t));
428 res |= slave_left_->Push(left, lengthIn, out_left, maxLen / 2, actualOutLen_left);
429 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right);
468 if (maxLen < (lengthIn * 2))
483 if (maxLen < (lengthIn * 3))
499 if (maxLen < (lengthIn * 4))
519 if (maxLen < (lengthIn * 6))
549 if (maxLen < (lengthIn * 12))
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
Input.java 32 public int maxLen;
46 maxLen = 1;
61 maxLen = in.readInt();
82 dest.writeInt(maxLen);
  /packages/inputmethods/OpenWnn/res/xml/
debug_tool_engine.xml 21 <!-- For int predict(ComposingText text, int minLen, int maxLen) -->
22 <!-- param = "target<null or empty or text or comma>,minLen,maxLen,text" -->
81 <!-- For int predict(ComposingText text, int minLen, int maxLen) -->
82 <!-- param = "target<null or empty or text or comma>,minLen,maxLen,text" -->
  /external/icu/icu4c/source/samples/legacy/
newcol.cpp 68 extern "C" void test_current(UChar data[][5], uint32_t size, uint32_t maxlen, uint8_t keys[][32]) {
84 qsort(data, size, maxlen*sizeof(UChar), compare_current);
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NameUnicodeTransliterator.java 50 int maxLen = UCharacterName.INSTANCE.getMaxCharNameLength() + 1; // allow for temporary trailing space
52 StringBuffer name = new StringBuffer(maxLen);
98 // If we are too long then abort. maxLen includes
100 if (name.length() > maxLen) {
145 // maxLen includes temporary trailing space, so use '>='.
146 if (name.length() >= maxLen) {
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
NameUnicodeTransliterator.java 49 int maxLen = UCharacterName.INSTANCE.getMaxCharNameLength() + 1; // allow for temporary trailing space
51 StringBuffer name = new StringBuffer(maxLen);
97 // If we are too long then abort. maxLen includes
99 if (name.length() > maxLen) {
144 // maxLen includes temporary trailing space, so use '>='.
145 if (name.length() >= maxLen) {
  /external/iproute2/man/man3/
libnetlink.3 44 int addattr32(struct nlmsghdr *n, int maxlen, int type, __u32 data)
46 int addattr_l(struct nlmsghdr *n, int maxlen, int type, void *data, int alen)
48 int rta_addattr32(struct rtattr *rta, int maxlen, int type, __u32 data)
50 int rta_addattr_l(struct rtattr *rta, int maxlen, int type, void *data, int alen)
157 .B maxlen.
170 .B maxlen.
  /external/bzip2/
huffman.c 66 Int32 maxLen )
120 if (j > maxLen) tooLong = True;
130 maxLen, which up to and including version 1.0.2 was 20 bits,
131 which is extremely unlikely. In version 1.0.3 maxLen was
155 Int32 maxLen,
161 for (n = minLen; n <= maxLen; n++) {
175 Int32 maxLen,
181 for (i = minLen; i <= maxLen; i++)
193 for (i = minLen; i <= maxLen; i++) {
198 for (i = minLen + 1; i <= maxLen; i++
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lz/
BinTree.java 107 int maxLen = kStartMaxLen; // to avoid items for len < hashSize;
126 distances[offset++] = maxLen = 2;
131 distances[offset++] = maxLen = 3;
137 maxLen = kStartMaxLen;
152 distances[offset++] = maxLen = kNumHashDirectBytes;
174 if (maxLen < len) {
175 distances[offset++] = maxLen = len;

Completed in 865 milliseconds

12 3 4 5 6 7 8 91011>>