Home
last modified time | relevance | path

Searched refs:Integer_M32 (Results 1 – 5 of 5) sorted by relevance

/dports/archivers/zip-ada/zip-ada/zip_lib/
H A Dlz77.adb73 type Integer_M32 is range -2**(min_bits_32-1) .. 2**(min_bits_32-1) - 1; type
74 subtype Natural_M32 is Integer_M32 range 0..Integer_M32'Last;
450 WSIZE : constant Integer_M32:= Integer_M32(String_buffer_size);
481 MIN_MATCH: constant Integer_M32:= Integer_M32(Threshold) + 1; -- Deflate: 3
482 MAX_MATCH: constant Integer_M32:= Integer_M32(Look_Ahead); -- Deflate: 258
561 procedure Read_buf(from: Integer_M32; amount: unsigned; actual: out Integer_M32) is
701 procedure Longest_Match(current_match: in out Integer_M32; longest: out Integer_M32) is
703 scan : Integer_M32 := strstart; -- current string
704 match : Integer_M32; -- matched string
708 strend : constant Integer_M32:= strstart + MAX_MATCH;
[all …]
H A Dzip.ads467 type Integer_M32 is range -2**(min_bits_32-1) .. 2**(min_bits_32-1) - 1; type
468 subtype Natural_M32 is Integer_M32 range 0..Integer_M32'Last;
469 subtype Positive_M32 is Integer_M32 range 1..Integer_M32'Last;
H A Dzip-compress-deflate.adb443 subtype BL_code is Integer_M32 range 1..16;
454 bv(j):= Integer_M32 (h.lit_len(i).bit_length);
462 bv(j):= Integer_M32 (h.dis(i).bit_length);
548 "Distance (ev. x100, **2):" & sep & Integer_M32'Image(dist) & sep & sep &
549 "Threshold (ev. x100, **2):" & sep & Integer_M32'Image(thres) & sep & sep &
1446 while Integer_M32(slide_mid) + half_slider_size < Integer_M32(to) loop
1481 … exit Scan_LZ_data when Integer_M32(slide_mid) + min_step + half_slider_size >= Integer_M32(to);
/dports/graphics/generic_image_decoder/gid/src/
H A Dgid.ads194 type Integer_M32 is range -2**(min_bits-1) .. 2**(min_bits-1) - 1; type
199 subtype Natural_M32 is Integer_M32 range 0..Integer_M32'Last;
200 subtype Positive_M32 is Integer_M32 range 1..Integer_M32'Last;
H A Dgid-decoding_jpg.adb232 remaining: Integer_M32:= Integer_M32(data_length); -- data remaining in segment
236 counts: array(1..16) of Integer_M32;
238 currcnt, spread, remain_vlc: Integer_M32;
262 counts(i):= Integer_M32(b);