Home
last modified time | relevance | path

Searched refs:blockLen (Results 1 – 8 of 8) sorted by relevance

/external/brotli/research/
Ddurchschlag.cc454 TextIdx blockLen = static_cast<TextIdx>(block_len); in durchschlagGenerateExclusive() local
455 if (blockLen != block_len) { in durchschlagGenerateExclusive()
465 if (blockLen < sliceLen) { in durchschlagGenerateExclusive()
469 if (targetSize < blockLen || total < blockLen) { in durchschlagGenerateExclusive()
475 TextIdx span = blockLen - sliceLen + 1; in durchschlagGenerateExclusive()
491 if (dictSize > targetSize - blockLen) { in durchschlagGenerateExclusive()
541 addRange(&ranges, candidate, candidate + blockLen); in durchschlagGenerateExclusive()
560 TextIdx blockLen = static_cast<TextIdx>(block_len); in durchschlagGenerateCollaborative() local
561 if (blockLen != block_len) { in durchschlagGenerateCollaborative()
571 if (blockLen < sliceLen) { in durchschlagGenerateCollaborative()
[all …]
Dbrotlidump.py1833 blockLen = 0
1835 while blockLen<self.MLEN:
1850 blockLen += litLen
1852 if blockLen>=self.MLEN: return
1884 blockLen += copyLen
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
DBase64Coder.java104 int blockLen = (lineLen * 3) / 4; in encodeLines() local
105 if (blockLen <= 0) in encodeLines()
107 int lines = (iLen + blockLen - 1) / blockLen; in encodeLines()
112 int l = Math.min(iLen - ip, blockLen); in encodeLines()
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
Drijndael-api-fst.h59 int blockLen; /* block length */ member
72 int blockLen; /* Sample: Handles non-128 bit block sizes (if available) */ member
/external/webrtc/webrtc/modules/audio_processing/ns/
Dns_core.c90 self->blockLen = 80; in WebRtcNs_InitCore()
94 self->blockLen = 160; in WebRtcNs_InitCore()
1069 UpdateBuffer(speechFrame, self->blockLen, self->anaLen, self->analyzeBuf); in WebRtcNs_AnalyzeCore()
1226 UpdateBuffer(speechFrame[0], self->blockLen, self->anaLen, self->dataBuf); in WebRtcNs_ProcessCore()
1232 self->blockLen, in WebRtcNs_ProcessCore()
1243 for (i = self->windShift; i < self->blockLen + self->windShift; i++) { in WebRtcNs_ProcessCore()
1247 UpdateBuffer(NULL, self->blockLen, self->anaLen, self->syntBuf); in WebRtcNs_ProcessCore()
1249 for (i = 0; i < self->blockLen; ++i) in WebRtcNs_ProcessCore()
1256 for (j = 0; j < self->blockLen; ++j) { in WebRtcNs_ProcessCore()
1352 for (i = self->windShift; i < self->blockLen + self->windShift; i++) { in WebRtcNs_ProcessCore()
[all …]
Dns_core.h54 size_t blockLen; member
/external/webrtc/webrtc/modules/audio_coding/neteq/test/
DRTPencode.cc117 uint16_t* blockLen,
1764 uint16_t* blockLen, in makeRedundantHeader() argument
1779 if (blockLen[i] > 0) { in makeRedundantHeader()
1788 rtpPointer[2] = ((offset & 0x3F) << 2) | ((blockLen[i] >> 8) & 0x03); in makeRedundantHeader()
1789 rtpPointer[3] = blockLen[i] & 0xFF; in makeRedundantHeader()
/external/icu/icu4c/source/i18n/
Dregexcmp.cpp3661 int64_t blockLen = maxMatchLength(loc+4, loopEndLoc-1); // Recursive call. in maxMatchLength() local
3662 int64_t updatedLen = (int64_t)currentLen + blockLen * maxLoopCount; in maxMatchLength()