OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:brLength
(Results
1 - 3
of
3
) sorted by null
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lz4/
BlockLZ4CompressorOutputStream.java
422
private int brOffset,
brLength
;
439
brLength
= block.getLength();
449
return literalLength() +
brLength
;
456
out.write(lengths(litLength,
brLength
));
465
if (
brLength
- MIN_BACK_REFERENCE_LENGTH >= BlockLZ4CompressorInputStream.BACK_REFERENCE_SIZE_MASK) {
466
writeLength(
brLength
- MIN_BACK_REFERENCE_LENGTH
479
private static int lengths(int litLength, int
brLength
) {
481
int br =
brLength
< 4 ? 0 : (
brLength
< 19 ?
brLength
- 4 : 15)
[
all
...]
/external/icu/icu4c/source/test/cintltst/
ucsdetst.c
474
int32_t bLength = 0,
brLength
= 0, cLength = UPRV_LENGTHOF(chars), crLength = UPRV_LENGTHOF(chars_reverse);
477
char *bytes_r = extractBytes(chars_reverse, crLength, "IBM424", &
brLength
);
496
ucsdet_setText(csd, bytes_r,
brLength
, &status);
552
int32_t bLength = 0,
brLength
= 0, cLength = UPRV_LENGTHOF(chars), crLength = UPRV_LENGTHOF(chars_reverse);
555
char *bytes_r = extractBytes(chars_reverse, crLength, "IBM420", &
brLength
);
574
ucsdet_setText(csd, bytes_r,
brLength
, &status);
/external/icu/icu4c/source/test/intltest/
csdetest.cpp
631
int32_t bLength = 0,
brLength
= 0;
637
char *bytes_r = extractBytes(s2, "IBM424",
brLength
);
663
ucsdet_setText(csd, bytes_r,
brLength
, &status);
721
int32_t bLength = 0,
brLength
= 0;
727
char *bytes_r = extractBytes(s2, "IBM420",
brLength
);
753
ucsdet_setText(csd, bytes_r,
brLength
, &status);
[
all
...]
Completed in 202 milliseconds