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/pffft/
Dpffastconv.c58 PFFASTCONV_Setup * pffastconv_new_setup( const float * filterCoeffs, int filterLen, int * blockLen,… in pffastconv_new_setup() argument
65 const int iOldBlkLen = *blockLen; in pffastconv_new_setup()
76 if ( *blockLen > Nfft ) { in pffastconv_new_setup()
77 Nfft = *blockLen; in pffastconv_new_setup()
80 *blockLen = Nfft; /* this is in (complex) samples */ in pffastconv_new_setup()
112 , filterLen, iOldBlkLen, *blockLen, Nfft - filterLen +1 ); in pffastconv_new_setup()
Dpffastconv.h129 …tup * pffastconv_new_setup( const float * filterCoeffs, int filterLen, int * blockLen, int flags );
/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/arm-trusted-firmware/include/drivers/brcm/emmc/
Demmc_csl_sdcmd.h147 int sd_cmd16(struct sd_handle *handle, uint32_t blockLen);
/external/icu/icu4c/source/i18n/
Dregexcmp.cpp3681 int64_t blockLen = maxMatchLength(loc+4, loopEndLoc-1); // Recursive call. in maxMatchLength() local
3682 int64_t updatedLen = (int64_t)currentLen + blockLen * maxLoopCount; in maxMatchLength()