HomeSort by: relevance | last modified time | path
    Searched defs:stored (Results 1 - 3 of 3) sorted by relevancy

  /src/common/dist/zlib/contrib/puff/
puff.c 21 * works whether integers are stored big endian or little endian.
121 * - Bits are stored in bytes from the least significant bit to the most
148 * Process a stored block.
152 * - After the two-bit stored block type (00), the stored block length and
153 * stored bytes are byte-aligned for fast copying. Therefore any leftover
158 * - The second inverted copy of the stored block length does not have to be
161 * - A stored block can have zero length. This is sometimes used to byte-align
164 local int stored(struct state *s) function in typeref:typename:local int
166 unsigned len; /* length of stored block *
    [all...]
  /src/common/dist/zlib/examples/
gzlog.c 40 - compressed data ending initially with empty stored block
41 - uncompressed data filling out originally empty stored block and
42 subsequent stored blocks as needed (16K max each)
49 stored block and determine where to append the data in the foo.add file, as
95 recovery if interrupted. Multi-byte values are stored little endian
99 for large files is actually the length modulo 2^32.) The stored block
110 - Pointer to first stored block length -- this points to the two-byte length
111 of the first stored block, which is followed by the two-byte, one's
112 complement of that length. The stored block length is preceded by the
113 three-bit header of the stored block, which is the actual start of th
296 uint stored; \/* bytes currently in last stored block *\/ member in struct:log
    [all...]
  /src/lib/libc/time/
localtime.c 609 register int stored; local in function:tzloadbody
687 for (stored = 4; stored <= 8; stored *= 2) {
689 bool skip_datablock = stored == 4 && version;
711 = (timecnt * stored /* ats */
715 + leapcnt * (stored + 4) /* lsinfos */
738 = stored == 4 ? detzcode(p) : detzcode64(p);
752 p += stored;
789 int_fast64_t tr = stored == 4 ? detzcode(p) : detzcode64(p)
    [all...]

Completed in 13 milliseconds