Home
last modified time | relevance | path

Searched refs:ulg (Results 1 – 25 of 35) sorted by relevance

12

/external/syslinux/com32/lib/zlib/
Ddeflate.h98 ulg pending_buf_size; /* size of pending_buf */
123 ulg window_size;
244 ulg opt_len; /* bit length of current block with optimal trees */
245 ulg static_len; /* bit length of current block with static trees */
250 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
251 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
263 ulg high_water;
296 ulg stored_len, int last));
299 ulg stored_len, int last));
Dtrees.c200 s->bits_sent += (ulg)length;
531 s->opt_len += (ulg)f * (bits + xbits);
532 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
874 ulg stored_len; /* length of input block */
879 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
928 ulg stored_len; /* length of input block */
931 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1052 ulg out_length = (ulg)s->last_lit*8L;
1053 ulg in_length = (ulg)((long)s->strstart - s->block_start);
1056 out_length += (ulg)s->dyn_dtree[dcode].Freq *
[all …]
Ddeflate.c291 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1025 s->window_size = (ulg)2L*s->w_size;
1108 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1226 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1314 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1405 ulg curr = s->strstart + (ulg)(s->lookahead);
1406 ulg init;
1418 else if (s->high_water < (ulg)curr + WIN_INIT) {
1423 init = (ulg)curr + WIN_INIT - s->high_water;
1440 (ulg)((long)s->strstart - s->block_start), \
[all …]
/external/libpng/contrib/gregbook/
Dreadpng2.h80 typedef unsigned long ulg; typedef
84 ulg width;
85 ulg height;
89 void (*mainprog_display_row)(ulg row_num);
114 int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length);
Dreadppm.c67 ulg width, height;
81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight) in readpng_init()
143 uch *readpng_get_image(double display_exponent, int *pChannels, ulg *pRowbytes) in readpng_get_image()
145 ulg rowbytes; in readpng_get_image()
Dreadpng.h74 typedef unsigned long ulg; typedef
81 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight);
86 ulg *pRowbytes);
Drpng-x.c119 static int rpng_x_msb(ulg u32val);
135 static ulg image_width, image_height, image_rowbytes;
147 static ulg RMask, GMask, BMask;
440 ulg bg_pixel = 0L; in rpng_x_create_window()
441 ulg attrmask; in rpng_x_create_window()
620 bg_pixel = ((ulg)bg_red << RShift) | in rpng_x_create_window()
621 ((ulg)bg_green << GShift) | in rpng_x_create_window()
622 ((ulg)bg_blue << BShift); in rpng_x_create_window()
624 bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) | in rpng_x_create_window()
625 ((((ulg)bg_green << 8) >> GShift) & GMask) | in rpng_x_create_window()
[all …]
Drpng2-x.c184 static void rpng2_x_display_row (ulg row);
186 static void rpng2_x_redisplay_image (ulg startcol, ulg startrow,
187 ulg width, ulg height);
193 static int rpng2_x_msb (ulg u32val);
212 static ulg bg_rowbytes;
217 ulg usleep_duration = 0L;
295 static ulg RMask, GMask, BMask;
433 usleep_duration = (ulg)atol(*argv); in main()
723 usleep((ulg)usleep_usec); in main()
775 ulg i; in rpng2_x_init()
[all …]
Dreadpng.c88 int readpng_init(FILE *infile, ulg *pWidth, ulg *pHeight) in readpng_init()
208 uch *readpng_get_image(double display_exponent, int *pChannels, ulg *pRowbytes) in readpng_get_image()
Drpng2-win.c174 static void rpng2_win_display_row(ulg row);
194 static ulg bg_rowbytes;
264 static ulg wimage_rowbytes;
645 ulg i; in rpng2_win_init()
646 ulg rowbytes = rpng2_info.rowbytes; in rpng2_win_init()
694 ulg i, j; in rpng2_win_create_window()
843 ulg i, row; in rpng2_win_load_bg_image()
1070 static void rpng2_win_display_row(ulg row) in rpng2_win_display_row()
1077 ulg i; in rpng2_win_display_row()
1079 static ulg firstrow; in rpng2_win_display_row()
Dreadpng2.c189 int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length) in readpng2_decode_data()
262 mainprog_ptr->width = (ulg)width; in readpng2_info_callback()
263 mainprog_ptr->height = (ulg)height; in readpng2_info_callback()
Drpng-win.c151 static ulg image_width, image_height, image_rowbytes;
156 static ulg wimage_rowbytes;
488 ulg i, j; in rpng_win_create_window()
583 ulg i, row, lastrow; in rpng_win_display_image()
/external/python/cpython2/Modules/zlib/
Ddeflate.h101 ulg pending_buf_size; /* size of pending_buf */
126 ulg window_size;
247 ulg opt_len; /* bit length of current block with optimal trees */
248 ulg static_len; /* bit length of current block with static trees */
253 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
254 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
266 ulg high_water;
299 ulg stored_len, int last));
303 ulg stored_len, int last));
Dtrees.c195 s->bits_sent += (ulg)length;
525 s->opt_len += (ulg)f * (bits + xbits);
526 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
868 ulg stored_len; /* length of input block */
873 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
910 ulg stored_len; /* length of input block */
913 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1036 ulg out_length = (ulg)s->last_lit*8L;
1037 ulg in_length = (ulg)((long)s->strstart - s->block_start);
1040 out_length += (ulg)s->dyn_dtree[dcode].Freq *
[all …]
Ddeflate.c303 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1109 s->window_size = (ulg)2L*s->w_size;
1193 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1311 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1401 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1504 ulg curr = s->strstart + (ulg)(s->lookahead);
1505 ulg init;
1517 else if (s->high_water < (ulg)curr + WIN_INIT) {
1522 init = (ulg)curr + WIN_INIT - s->high_water;
1530 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
[all …]
/external/zlib/src/
Ddeflate.h101 ulg pending_buf_size; /* size of pending_buf */
126 ulg window_size;
247 ulg opt_len; /* bit length of current block with optimal trees */
248 ulg static_len; /* bit length of current block with static trees */
253 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
254 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
266 ulg high_water;
299 ulg stored_len, int last));
303 ulg stored_len, int last));
Dtrees.c195 s->bits_sent += (ulg)length;
525 s->opt_len += (ulg)f * (bits + xbits);
526 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
868 ulg stored_len; /* length of input block */
873 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
910 ulg stored_len; /* length of input block */
913 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1036 ulg out_length = (ulg)s->last_lit*8L;
1037 ulg in_length = (ulg)((long)s->strstart - s->block_start);
1040 out_length += (ulg)s->dyn_dtree[dcode].Freq *
[all …]
Ddeflate.c303 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
1109 s->window_size = (ulg)2L*s->w_size;
1193 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1311 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1401 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1504 ulg curr = s->strstart + (ulg)(s->lookahead);
1505 ulg init;
1517 else if (s->high_water < (ulg)curr + WIN_INIT) {
1522 init = (ulg)curr + WIN_INIT - s->high_water;
1530 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,
[all …]
/external/pdfium/third_party/zlib_v128/
Ddeflate.h101 ulg pending_buf_size; /* size of pending_buf */
126 ulg window_size;
247 ulg opt_len; /* bit length of current block with optimal trees */
248 ulg static_len; /* bit length of current block with static trees */
253 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
254 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
266 ulg high_water;
299 ulg stored_len, int last));
303 ulg stored_len, int last));
Dtrees.c195 s->bits_sent += (ulg)length; in send_bits()
525 s->opt_len += (ulg)f * (bits + xbits); in gen_bitlen()
526 if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits); in gen_bitlen()
868 ulg stored_len, /* length of input block */ in _tr_stored_block()
873 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; in _tr_stored_block()
910 ulg stored_len, /* length of input block */
913 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1036 ulg out_length = (ulg)s->last_lit*8L;
1037 ulg in_length = (ulg)((long)s->strstart - s->block_start);
1040 out_length += (ulg)s->dyn_dtree[dcode].Freq *
[all …]
Ddeflate.c302 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L); in deflateInit2_()
1108 s->window_size = (ulg)2L*s->w_size; in lm_init()
1192 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); in longest_match()
1310 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); in longest_match()
1400 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
1503 ulg curr = s->strstart + (ulg)(s->lookahead); in fill_window()
1504 ulg init; in fill_window()
1516 else if (s->high_water < (ulg)curr + WIN_INIT) { in fill_window()
1521 init = (ulg)curr + WIN_INIT - s->high_water; in fill_window()
1529 Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD, in fill_window()
[all …]
Dzutil.c225 ulg bsize = (ulg)items*size;
/external/syslinux/memdisk/
Dunzip.c31 typedef uint32_t ulg; typedef
75 static ulg crc_32_tab[256];
96 static ulg bytes_out = 0; /* Number of bytes output */
98 static ulg output_size; /* Number of output bytes expected */
103 static ulg free_mem_ptr, free_mem_end_ptr;
158 ulg c = crc; /* temporary variable */ in flush_window()
173 bytes_out += (ulg) outcnt; in flush_window()
Dinflate.c210 STATIC ulg bb; /* bit buffer */
220 #define NEEDBITS(n) {while(k<(n)){b|=((ulg)NEXTBYTE())<<k;k+=8;}}
503 register ulg b; /* bit buffer */
597 register ulg b; /* bit buffer */ in inflate_stored()
708 register ulg b; /* bit buffer */ in inflate_dynamic()
859 register ulg b; /* bit buffer */
947 static ulg crc_32_tab[256];
948 static ulg crc; /* initialized in makecrc() so it'll reside in bss */
986 crc = (ulg) 0xffffffffL; /* shift register contents */ in makecrc()
/external/freetype/src/gzip/
Dzutil.c86 ulg bsize = (ulg)items*size; in zcalloc()

12