/external/lzma/C/ |
D | LzFind.c | 324 UInt32 *distances, UInt32 maxLen) in Hc_GetMatchesSpec() argument 335 if (pb[maxLen] == cur[maxLen] && *pb == *cur) in Hc_GetMatchesSpec() 341 if (maxLen < len) in Hc_GetMatchesSpec() 343 *distances++ = maxLen = len; in Hc_GetMatchesSpec() 355 UInt32 *distances, UInt32 maxLen) in GetMatchesSpec1() argument 378 if (maxLen < len) in GetMatchesSpec1() 380 *distances++ = maxLen = len; in GetMatchesSpec1() 477 #define GET_MATCHES_FOOTER(offset, maxLen) \ argument 479 distances + offset, maxLen) - distances); MOVE_POS_RET; 508 UInt32 hash2Value, delta2, maxLen, offset; in Bt3_MatchFinder_GetMatches() local [all …]
|
/external/webrtc/src/common_audio/resampler/ |
D | resampler.cc | 432 int maxLen, int &outLen) in Push() argument 448 WebRtc_Word16* out_left = (WebRtc_Word16*)malloc(maxLen / 2 * sizeof(WebRtc_Word16)); in Push() 450 (WebRtc_Word16*)malloc(maxLen / 2 * sizeof(WebRtc_Word16)); in Push() 464 res |= slave_left_->Push(left, lengthIn, out_left, maxLen / 2, actualOutLen_left); in Push() 465 res |= slave_right_->Push(right, lengthIn, out_right, maxLen / 2, actualOutLen_right); in Push() 504 if (maxLen < (lengthIn * 2)) in Push() 519 if (maxLen < (lengthIn * 3)) in Push() 535 if (maxLen < (lengthIn * 4)) in Push() 555 if (maxLen < (lengthIn * 6)) in Push() 585 if (maxLen < (lengthIn * 12)) { in Push() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | name2uni.cpp | 114 int32_t maxLen = uprv_getMaxCharNameLength(); in handleTransliterate() local 115 if (maxLen == 0) { in handleTransliterate() 121 ++maxLen; // allow for temporary trailing space in handleTransliterate() 122 char* cbuf = (char*) uprv_malloc(maxLen); in handleTransliterate() 174 if (name.length() > maxLen) { in handleTransliterate() 191 name.extract(0, len, cbuf, maxLen, US_INV); in handleTransliterate() 228 if (name.length() >= maxLen) { in handleTransliterate()
|
D | uni2name.cpp | 76 int32_t maxLen = uprv_getMaxCharNameLength(); in handleTransliterate() local 77 if (maxLen == 0) { in handleTransliterate() 83 char* buf = (char*) uprv_malloc(maxLen); in handleTransliterate() 100 … if ((len = u_charName(c, U_EXTENDED_CHAR_NAME, buf, maxLen, &status)) >0 && !U_FAILURE(status)) { in handleTransliterate()
|
/external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/helper/ |
D | AbbreviatorTest.java | 106 int maxLen = rh.nextInt(MAX_RANDOM_MAX_LEN) + fixedLen; in testTheories() local 107 if (maxLen <= 1) { in testTheories() 111 int targetLen = (maxLen / 2) + rh.nextInt(maxLen / 2) + 1; in testTheories() 113 if (targetLen > maxLen) { in testTheories() 114 targetLen = maxLen; in testTheories() 116 String filename = rh.buildRandomFileName(averageLen, maxLen); in testTheories()
|
/external/bzip2/ |
D | huffman.c | 66 Int32 maxLen ) in BZ2_hbMakeCodeLengths() argument 120 if (j > maxLen) tooLong = True; in BZ2_hbMakeCodeLengths() 155 Int32 maxLen, in BZ2_hbAssignCodes() argument 161 for (n = minLen; n <= maxLen; n++) { in BZ2_hbAssignCodes() 175 Int32 maxLen, in BZ2_hbCreateDecodeTables() argument 181 for (i = minLen; i <= maxLen; i++) in BZ2_hbCreateDecodeTables() 193 for (i = minLen; i <= maxLen; i++) { in BZ2_hbCreateDecodeTables() 198 for (i = minLen + 1; i <= maxLen; i++) in BZ2_hbCreateDecodeTables()
|
D | compress.c | 242 Int32 nSelectors, alphaSize, minLen, maxLen, selCtr; in sendMTFValues() local 483 maxLen = 0; in sendMTFValues() 485 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in sendMTFValues() 488 AssertH ( !(maxLen > 17 /*20*/ ), 3004 ); in sendMTFValues() 491 minLen, maxLen, alphaSize ); in sendMTFValues()
|
D | decompress.c | 110 Int32 minLen, maxLen; in BZ2_decompress() local 334 maxLen = 0; in BZ2_decompress() 336 if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; in BZ2_decompress() 344 minLen, maxLen, alphaSize in BZ2_decompress()
|
/external/lzma/CPP/Common/ |
D | CommandLineParser.cpp | 105 int maxLen = kNoLen; in ParseString() local 109 if (switchLen <= maxLen || pos + switchLen > len) in ParseString() 118 maxLen = switchLen; in ParseString() 121 if (maxLen == kNoLen) in ParseString() 128 pos += maxLen; in ParseString() 177 int maxLen = switchForm.MaxLen; in ParseString() local 180 for (int i = minLen; i < maxLen && pos < len; i++, pos++) in ParseString()
|
/external/toybox/toys/other/ |
D | bzcat.c | 49 char minLen, maxLen; member 212 int minLen, maxLen, pp; in read_block_header() local 234 minLen = maxLen = length[0]; in read_block_header() 236 if(length[ii] > maxLen) maxLen = length[ii]; in read_block_header() 257 hufGroup->maxLen = maxLen; in read_block_header() 267 for (ii = minLen; ii <= maxLen; ii++) { in read_block_header() 281 for (ii = minLen; ii < maxLen; ii++) { in read_block_header() 287 limit[maxLen] = pp+temp[maxLen]-1; in read_block_header() 288 limit[maxLen+1] = INT_MAX; in read_block_header() 357 if (ii > hufGroup->maxLen || (unsigned)jj >= MAX_SYMBOLS) in read_huffman_data()
|
/external/lzma/CS/7zip/Common/ |
D | CommandLineParser.cs | 27 int minLen, int maxLen, string postCharSet) in SwitchForm() argument 33 MaxLen = maxLen; in SwitchForm() 84 int maxLen = kNoLen; in ParseString() 88 if (switchLen <= maxLen || pos + switchLen > len) in ParseString() 94 maxLen = switchLen; in ParseString() 97 if (maxLen == kNoLen) in ParseString() 104 pos += maxLen; in ParseString()
|
/external/boringssl/src/ssl/test/runner/ |
D | dtls.go | 124 maxLen := c.config.Bugs.MaxHandshakeRecordLength 125 if maxLen <= 0 { 126 maxLen = 1024 153 if fragLen > maxLen { 154 fragLen = maxLen 175 if fragLen > (maxLen+1)/2 { 177 fragLen = (maxLen + 1) / 2 267 maxLen := c.config.Bugs.MaxHandshakeRecordLength 268 if maxLen <= 0 { 269 maxLen = 1024
|
/external/deqp/execserver/ |
D | xsExecutionServer.cpp | 344 int maxLen = de::min<int>((int)m_sendRecvTmpBuf.size(), m_bufferIn.getNumFree()); in receive() local 346 if (maxLen > 0) in receive() 349 deSocketResult result = m_socket->receive(&m_sendRecvTmpBuf[0], maxLen, &numRecv); in receive() 375 int maxLen = de::min<int>((int)m_sendRecvTmpBuf.size(), m_bufferOut.getNumElements()); in send() local 377 if (maxLen > 0) in send() 379 m_bufferOut.peekBack(&m_sendRecvTmpBuf[0], maxLen); in send() 382 deSocketResult result = m_socket->send(&m_sendRecvTmpBuf[0], maxLen, &numSent); in send()
|
/external/lzma/Java/SevenZip/Compression/LZ/ |
D | BinTree.java | 136 int maxLen = kStartMaxLen; // to avoid items for len < hashSize; in GetMatches() local 160 distances[offset++] = maxLen = 2; in GetMatches() 168 distances[offset++] = maxLen = 3; in GetMatches() 175 maxLen = kStartMaxLen; in GetMatches() 194 distances[offset++] = maxLen = kNumHashDirectBytes; in GetMatches() 221 if (maxLen < len) in GetMatches() 223 distances[offset++] = maxLen = len; in GetMatches()
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | NameUnicodeTransliterator.java | 49 …int maxLen = UCharacterName.INSTANCE.getMaxCharNameLength() + 1; // allow for temporary trailing s… in handleTransliterate() local 51 StringBuffer name = new StringBuffer(maxLen); in handleTransliterate() 99 if (name.length() > maxLen) { in handleTransliterate() 145 if (name.length() >= maxLen) { in handleTransliterate()
|
/external/lzma/CS/7zip/Compress/LZ/ |
D | LzBinTree.cs | 136 UInt32 maxLen = kStartMaxLen; // to avoid items for len < hashSize; in GetMatches() 160 distances[offset++] = maxLen = 2; in GetMatches() 168 distances[offset++] = maxLen = 3; in GetMatches() 175 maxLen = kStartMaxLen; in GetMatches() 194 distances[offset++] = maxLen = kNumHashDirectBytes; in GetMatches() 221 if (maxLen < len) in GetMatches() 223 distances[offset++] = maxLen = len; in GetMatches()
|
/external/deqp/modules/gles2/functional/ |
D | es2fDebugMarkerTests.cpp | 75 void getSimpleRndString (vector<char>& dst, de::Random& rnd, int maxLen) in getSimpleRndString() argument 79 dst.resize(rnd.getInt(0, (int)maxLen)); in getSimpleRndString() 85 void getComplexRndString (vector<char>& dst, de::Random& rnd, int maxLen) in getComplexRndString() argument 87 dst.resize(rnd.getInt(0, (int)maxLen)); in getComplexRndString()
|
/external/libmpeg2/decoder/ |
D | impeg2d_vld.h | 25 UWORD16 maxLen); 29 UWORD16 maxLen);
|
D | impeg2d_vld.c | 509 WORD32 maxLen; in impeg2d_vld_decode() local 513 maxLen = MPEG2_DCT_DC_SIZE_LEN; in impeg2d_vld_decode() 517 maxLen += 1; in impeg2d_vld_decode() 524 UWORD32 maxLen_tmp = maxLen; in impeg2d_vld_decode() 529 IBITS_NXT(u4_buf,u4_buf_nxt,u4_offset,u4_bits,maxLen) in impeg2d_vld_decode() 542 FLUSH_BITS(u4_offset,u4_buf,u4_buf_nxt,(maxLen - maxLen_tmp),pu4_buf_aligned) in impeg2d_vld_decode()
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
D | StartupConfig.cpp | 126 const UINT8 maxLen = mBuffer[0]; in disableSecureElement() local 132 if (index > maxLen) in disableSecureElement()
|
/external/icu/icu4c/source/common/ |
D | uniset.cpp | 679 int32_t maxLen = forward ? limit-offset : offset-limit; in matches() local 680 if (matchLen == maxLen) { in matches() 736 int32_t maxLen; in matchRest() local 739 maxLen = limit - start; in matchRest() 740 if (maxLen > slen) maxLen = slen; in matchRest() 741 for (i = 1; i < maxLen; ++i) { in matchRest() 745 maxLen = start - limit; in matchRest() 746 if (maxLen > slen) maxLen = slen; in matchRest() 748 for (i = 1; i < maxLen; ++i) { in matchRest() 752 return maxLen; in matchRest()
|
/external/clang/utils/TableGen/ |
D | ClangSACheckersEmitter.cpp | 259 unsigned maxLen = 0; in EmitClangSACheckers() local 262 maxLen = std::max(maxLen, (unsigned)I->first.size()); in EmitClangSACheckers() 303 << std::string(maxLen-I->first.size()+1, ' '); in EmitClangSACheckers()
|
/external/webrtc/src/common_audio/resampler/include/ |
D | resampler.h | 81 int maxLen, int &outLen);
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeSet.java | 956 int maxLen = forward ? limit-offset[0] : offset[0]-limit; in matches() local 957 if (length == maxLen) { in matches() 1010 int maxLen; in matchRest() local 1013 maxLen = limit - start; in matchRest() 1014 if (maxLen > slen) maxLen = slen; in matchRest() 1015 for (int i = 1; i < maxLen; ++i) { in matchRest() 1019 maxLen = start - limit; in matchRest() 1020 if (maxLen > slen) maxLen = slen; in matchRest() 1022 for (int i = 1; i < maxLen; ++i) { in matchRest() 1026 return maxLen; in matchRest()
|
/external/icu/icu4c/source/test/perf/collationperf/ |
D | collperf.cpp | 781 int maxLen = 0; in doKeyHist() local 785 if (gFileLines[i].len > maxLen) maxLen = gFileLines[i].len; in doKeyHist() 789 int *accumulatedLen = new int[maxLen+1]; in doKeyHist() 790 int *numKeysOfSize = new int[maxLen+1]; in doKeyHist() 791 for (i=0; i<=maxLen; i++) { in doKeyHist() 805 for (i=1; i<=maxLen; i++) { in doKeyHist()
|