HomeSort by relevance Sort by last modified time
    Searched refs:lzw (Results 1 - 25 of 33) sorted by null

1 2

  /external/freetype/src/lzw/
ftlzw.c 46 #error "lzw code does not support PIC yet"
75 FT_LzwStateRec lzw; /* lzw decompressor state */ member in struct:FT_LZWFileRec_
112 FT_LzwState lzw = &zip->lzw; local
129 /* initialize internal lzw variable */
130 ft_lzwstate_init( lzw, source );
141 ft_lzwstate_done( &zip->lzw );
158 ft_lzwstate_reset( &zip->lzw );
172 FT_LzwState lzw = &zip->lzw local
    [all...]
rules.mk 2 # FreeType 2 LZW support configuration rules
9 # based on `src/lzw/rules.mk'
18 # LZW driver directory
20 LZW_DIR := $(SRC_DIR)/lzw
31 # LZW support sources (i.e., C files)
35 # LZW support headers
41 # LZW driver object(s)
49 # LZW support source file for single build
54 # LZW support - single object
60 # LZW support - multiple object
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4396a.go 19 // based on lzw.decoder
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4396a.go 19 // based on lzw.decoder
  /prebuilts/go/darwin-x86/src/compress/lzw/
reader.go 5 // Package lzw implements the Lempel-Ziv-Welch compressed data format,
9 // In particular, it implements LZW as used by the GIF and PDF file
13 // The TIFF file format uses a similar but incompatible version of the LZW
14 // algorithm. See the golang.org/x/image/tiff/lzw package for an
16 package lzw package
18 // TODO(nigeltao): check that PDF uses LZW in the same way as GIF,
28 // Order specifies the bit ordering in an LZW data stream.
198 d.err = errors.New("lzw: invalid code")
223 var errClosed = errors.New("lzw: reader/writer is closed")
247 d.err = errors.New("lzw: unknown order"
    [all...]
writer.go 5 package lzw package
47 // encoder is LZW compressor.
106 var errOutOfCodes = errors.New("lzw: out of codes")
144 e.err = errors.New("lzw: input byte too large for the litWidth")
249 return &errWriteCloser{errors.New("lzw: unknown order")}
252 return &errWriteCloser{fmt.Errorf("lzw: litWidth %d out of range", litWidth)}
writer_test.go 5 package lzw package
reader_test.go 5 package lzw package
76 // This example comes from http://compgroups.net/comp.lang.ruby/Decompressing-LZW-compression-from-PDF-file
  /prebuilts/go/linux-x86/src/compress/lzw/
reader.go 5 // Package lzw implements the Lempel-Ziv-Welch compressed data format,
9 // In particular, it implements LZW as used by the GIF and PDF file
13 // The TIFF file format uses a similar but incompatible version of the LZW
14 // algorithm. See the golang.org/x/image/tiff/lzw package for an
16 package lzw package
18 // TODO(nigeltao): check that PDF uses LZW in the same way as GIF,
28 // Order specifies the bit ordering in an LZW data stream.
198 d.err = errors.New("lzw: invalid code")
223 var errClosed = errors.New("lzw: reader/writer is closed")
247 d.err = errors.New("lzw: unknown order"
    [all...]
writer.go 5 package lzw package
47 // encoder is LZW compressor.
106 var errOutOfCodes = errors.New("lzw: out of codes")
144 e.err = errors.New("lzw: input byte too large for the litWidth")
249 return &errWriteCloser{errors.New("lzw: unknown order")}
252 return &errWriteCloser{fmt.Errorf("lzw: litWidth %d out of range", litWidth)}
writer_test.go 5 package lzw package
  /external/freetype/builds/amiga/
smakefile 101 ft2_$(CPU).lib: $(OBJBASE) $(OBJAFIT) $(OBJOTV) $(OBJPS) $(OBJRASTER) $(OBJSFNT) $(OBJCACHE) $(OBJFONTD) lzw.o gzip.o bzip2.o
102 oml $@ r $(OBJBASE) $(OBJAFIT) $(OBJOTV) $(OBJPS) $(OBJRASTER) $(OBJSFNT) $(OBJCACHE) $(OBJFONTD) lzw.o gzip.o bzip2.o
274 lzw.o: $(CORE)lzw/ftlzw.c
makefile.os4 249 lzw.ppc.o: FT:src/lzw/ftlzw.c
250 $(CC) -c $(CFLAGS) -o $@ /FT/src/lzw/ftlzw.c
297 libft2_ppc.a: $(BASE) $(AFIT) $(GXV) $(OTV) $(PS) $(RASTER) sfnt.ppc.o ftcache.ppc.o $(FONTD) gzip.ppc.o lzw.ppc.o
298 $(AR) r $@ $(BASE) $(AFIT) $(GXV) $(OTV) $(PS) $(RASTER) sfnt.ppc.o ftcache.ppc.o $(FONTD) gzip.ppc.o lzw.ppc.o
makefile 245 lzw.ppc.o: $(FTSRC)/lzw/ftlzw.c
293 libft2_ppc.a: $(BASEPPC) $(AFITPPC) $(GXVPPC) $(OTVPPC) $(PSPPC) $(RASTERPPC) sfnt.ppc.o ftcache.ppc.o $(FONTDPPC) gzip.ppc.o bzip2.ppc.o lzw.ppc.o
294 $(AR) $@ $(BASEPPC) $(AFITPPC) $(GXVPPC) $(OTVPPC) $(PSPPC) $(RASTERPPC) sfnt.ppc.o ftcache.ppc.o $(FONTDPPC) gzip.ppc.o bzip2.ppc.o lzw.ppc.o
  /prebuilts/go/darwin-x86/src/image/gif/
reader_test.go 9 "compress/lzw"
31 // lzw.NewReader wants a io.ByteReader, this ensures we're compatible.
34 // lzwEncode returns an LZW encoding (with 2-bit literals) of in.
37 w := lzw.NewWriter(b, lzw.LSB, 2)
49 // of an existing data sub-block (past the LZW End of Information code) or in
56 // containing the LZW end code.
73 // An extra byte after LZW data, but inside the same data sub-block.
75 // Two extra bytes after LZW data, but inside the same data sub-block.
77 // Extra data exists in the final sub-block with LZW data, AND there i
    [all...]
writer.go 10 "compress/lzw"
67 // writer given to the LZW encoder, which is thus immune to the
99 // blockWriter must be an io.Writer for lzw.NewWriter, but this is never
331 e.writeByte(uint8(litWidth)) // LZW Minimum Code Size.
335 lzww := lzw.NewWriter(bw, lzw.LSB, litWidth)
reader.go 12 "compress/lzw"
114 // LZW decoder, which is thus immune to the blocking. After the LZW decoder
118 // To avoid the allocation of a bufio.Reader for the lzw Reader, blockReader
159 // be called in practice. The compress/lzw package will only call ReadByte.
179 // following the end of LZW data, the very next sub-block must be the block
180 // terminator. If the very end of LZW data happened to fill one sub-block, at
194 // We reached the end of a sub block reading LZW data. We'll allow at
419 lzwr := lzw.NewReader(br, lzw.LSB, int(litWidth)
    [all...]
  /prebuilts/go/linux-x86/src/image/gif/
reader_test.go 9 "compress/lzw"
31 // lzw.NewReader wants a io.ByteReader, this ensures we're compatible.
34 // lzwEncode returns an LZW encoding (with 2-bit literals) of in.
37 w := lzw.NewWriter(b, lzw.LSB, 2)
49 // of an existing data sub-block (past the LZW End of Information code) or in
56 // containing the LZW end code.
73 // An extra byte after LZW data, but inside the same data sub-block.
75 // Two extra bytes after LZW data, but inside the same data sub-block.
77 // Extra data exists in the final sub-block with LZW data, AND there i
    [all...]
writer.go 10 "compress/lzw"
67 // writer given to the LZW encoder, which is thus immune to the
99 // blockWriter must be an io.Writer for lzw.NewWriter, but this is never
331 e.writeByte(uint8(litWidth)) // LZW Minimum Code Size.
335 lzww := lzw.NewWriter(bw, lzw.LSB, litWidth)
reader.go 12 "compress/lzw"
114 // LZW decoder, which is thus immune to the blocking. After the LZW decoder
118 // To avoid the allocation of a bufio.Reader for the lzw Reader, blockReader
159 // be called in practice. The compress/lzw package will only call ReadByte.
179 // following the end of LZW data, the very next sub-block must be the block
180 // terminator. If the very end of LZW data happened to fill one sub-block, at
194 // We reached the end of a sub block reading LZW data. We'll allow at
419 lzwr := lzw.NewReader(br, lzw.LSB, int(litWidth)
    [all...]
  /external/freetype/
vms_make.com 210 set default [-.lzw]
525 $ write sys$output "... [.src.lzw] directory"
526 $ create [.src.lzw]descrip.mms
527 $ open/append out [.src.lzw]descrip.mms
531 # FreeType 2 LZW support compilation rules for VMS
549 CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=($(LIBINCS)[--.include],[--.src.lzw])
    [all...]
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
gccgoinstallation_test.go 21 "compress/lzw",
  /prebuilts/go/darwin-x86/test/stress/
parsego.go 89 "compress/lzw",
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
gccgoinstallation_test.go 21 "compress/lzw",
  /prebuilts/go/linux-x86/test/stress/
parsego.go 89 "compress/lzw",

Completed in 533 milliseconds

1 2