HomeSort by relevance Sort by last modified time
    Searched full:blockstart (Results 1 - 24 of 24) sorted by null

  /prebuilts/go/darwin-x86/src/compress/flate/
deflate.go 84 blockStart int // window index where current tokens start
104 if d.blockStart >= windowSize {
105 d.blockStart -= windowSize
107 d.blockStart = math.MaxInt32
138 if d.blockStart <= index {
139 window = d.window[d.blockStart:index]
141 d.blockStart = index
449 d.blockStart, d.byteAvailable = 0, false
  /prebuilts/go/linux-x86/src/compress/flate/
deflate.go 84 blockStart int // window index where current tokens start
104 if d.blockStart >= windowSize {
105 d.blockStart -= windowSize
107 d.blockStart = math.MaxInt32
138 if d.blockStart <= index {
139 window = d.window[d.blockStart:index]
141 d.blockStart = index
449 d.blockStart, d.byteAvailable = 0, false
  /external/lz4/programs/
fuzzer.c 317 int dictSize, blockSize, blockStart;
323 blockStart = FUZ_rand(&randState) % (COMPRESSIBLE_NOISE_LENGTH - blockSize);
325 if (dictSize > blockStart) dictSize = blockStart;
326 block = ((char*)CNBuffer) + blockStart;
343 int dictSize, blockSize, blockStart, compressedSize, HCcompressedSize;
352 blockStart = FUZ_rand(&randState) % (COMPRESSIBLE_NOISE_LENGTH - blockSize);
354 if (dictSize > blockStart) dictSize = blockStart;
355 block = ((char*)CNBuffer) + blockStart;
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTree.java 394 int blockStart = -1;
401 if (blockStart == -1) {
405 blockStart = n;
415 if (nBegin >= blockStart && nEnd < endNode) {
425 ") exceeds (" + blockStart + " " + endNode + ")");
428 b.start_node = blockStart;
432 blockStart = -1;
437 if (blockStart != -1) {
439 b.start_node = blockStart;
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 372 * @param blockStart {@code true} iff this instruction starts a
375 private void addWorkIfNecessary(int offset, boolean blockStart) {
380 if (blockStart) {
  /external/zopfli/src/zopfli/
lz77.h 71 size_t blockstart; member in struct:ZopfliBlockState
lz77.c 167 size_t lmcpos = pos - s->blockstart;
212 size_t lmcpos = pos - s->blockstart;
deflate.c 599 s.blockstart = instart;
651 s.blockstart = instart;
779 s.blockstart = instart;
blocksplitter.c 297 s.blockstart = instart;
squeeze.c 536 s->blockstart = instart;
  /external/llvm/lib/CodeGen/
SplitKit.cpp 871 SlotIndex BlockStart, BlockEnd;
872 std::tie(BlockStart, BlockEnd) = LIS.getSlotIndexes()->getMBBRange(&*MBB);
875 if (Start != BlockStart) {
876 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
885 BlockStart = BlockEnd;
889 assert(Start <= BlockStart && "Expected live-in block");
890 while (BlockStart < End) {
893 if (BlockStart == ParentVNI->def) {
896 VNInfo *VNI = LR.extendInBlock(BlockStart, std::min(BlockEnd, End));
    [all...]
LiveIntervalAnalysis.cpp 378 SlotIndex BlockStart = Indexes.getMBBStartIdx(MBB);
381 if (VNInfo *ExtVNI = LR.extendInBlock(BlockStart, Idx)) {
385 if (!VNI->isPHIDef() || VNI->def != BlockStart ||
401 DEBUG(dbgs() << " live-in at " << BlockStart << '\n');
402 LR.addSegment(LiveRange::Segment(BlockStart, Idx, VNI));
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64/compress/
flate.a 44 type @"".compressor struct { ? @"".compressionLevel; @"".w *@"".huffmanBitWriter; @"".fill func(? *@"".compressor, ? []byte) (? int); @"".step func(? *@"".compressor); @"".sync bool; @"".chainHead int; @"".hashHead []int; @"".hashPrev []int; @"".hashOffset int; @"".index int; @"".window []byte; @"".windowEnd int; @"".blockStart int; @"".byteAvailable bool; @"".tokens []@"".token; @"".length int; @"".offset int; @"".hash int; @"".maxInsertIndex int; @"".err error }
    [all...]
zlib.a 53 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
gzip.a 124 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64/compress/
flate.a 44 type @"".compressor struct { ? @"".compressionLevel; @"".w *@"".huffmanBitWriter; @"".fill func(? *@"".compressor, ? []byte) (? int); @"".step func(? *@"".compressor); @"".sync bool; @"".chainHead int; @"".hashHead []int; @"".hashPrev []int; @"".hashOffset int; @"".index int; @"".window []byte; @"".windowEnd int; @"".blockStart int; @"".byteAvailable bool; @"".tokens []@"".token; @"".length int; @"".offset int; @"".hash int; @"".maxInsertIndex int; @"".err error }
    [all...]
zlib.a 53 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
gzip.a 124 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
  /prebuilts/go/darwin-x86/pkg/darwin_amd64_race/compress/
zlib.a 53 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
gzip.a 124 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
flate.a 44 type @"".compressor struct { ? @"".compressionLevel; @"".w *@"".huffmanBitWriter; @"".fill func(? *@"".compressor, ? []byte) (? int); @"".step func(? *@"".compressor); @"".sync bool; @"".chainHead int; @"".hashHead []int; @"".hashPrev []int; @"".hashOffset int; @"".index int; @"".window []byte; @"".windowEnd int; @"".blockStart int; @"".byteAvailable bool; @"".tokens []@"".token; @"".length int; @"".offset int; @"".hash int; @"".maxInsertIndex int; @"".err error }
    [all...]
  /prebuilts/go/linux-x86/pkg/linux_amd64_race/compress/
zlib.a 53 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
gzip.a 124 type @"compress/flate".compressor struct { @"compress/flate".? @"compress/flate".compressionLevel; @"compress/flate".w *@"compress/flate".huffmanBitWriter; @"compress/flate".fill func(? *@"compress/flate".compressor, ? []byte) (? int); @"compress/flate".step func(? *@"compress/flate".compressor); @"compress/flate".sync bool; @"compress/flate".chainHead int; @"compress/flate".hashHead []int; @"compress/flate".hashPrev []int; @"compress/flate".hashOffset int; @"compress/flate".index int; @"compress/flate".window []byte; @"compress/flate".windowEnd int; @"compress/flate".blockStart int; @"compress/flate".byteAvailable bool; @"compress/flate".tokens []@"compress/flate".token; @"compress/flate".length int; @"compress/flate".offset int; @"compress/flate".hash int; @"compress/flate".maxInsertIndex int; @"compress/flate".err error }
    [all...]
flate.a 44 type @"".compressor struct { ? @"".compressionLevel; @"".w *@"".huffmanBitWriter; @"".fill func(? *@"".compressor, ? []byte) (? int); @"".step func(? *@"".compressor); @"".sync bool; @"".chainHead int; @"".hashHead []int; @"".hashPrev []int; @"".hashOffset int; @"".index int; @"".window []byte; @"".windowEnd int; @"".blockStart int; @"".byteAvailable bool; @"".tokens []@"".token; @"".length int; @"".offset int; @"".hash int; @"".maxInsertIndex int; @"".err error }
    [all...]

Completed in 500 milliseconds