Home
last modified time | relevance | path

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

12

/external/zlib/src/
Ddeflate.h104 ulg pending_buf_size; /* size of pending_buf */
106 ulg pending; /* nb of bytes in the pending buffer */
109 ulg gzindex; /* where in extra, name, or comment */
129 ulg window_size;
250 ulg opt_len; /* bit length of current block with optimal trees */
251 ulg static_len; /* bit length of current block with static trees */
256 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
257 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
269 ulg high_water;
302 ulg stored_len, int last));
[all …]
Dtrees.c193 s->bits_sent += (ulg)length;
523 s->opt_len += (ulg)f * (unsigned)(bits + xbits);
524 if (stree) s->static_len += (ulg)f * (unsigned)(stree[n].Len + xbits);
556 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
822 s->opt_len += 3*((ulg)max_blindex+1) + 5+5+4;
866 ulg stored_len; /* length of input block */
876 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
914 ulg stored_len; /* length of input block */
917 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1040 ulg out_length = (ulg)s->last_lit*8L;
[all …]
Ddeflate.c331 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
902 ulg beg = s->pending; /* start of bytes to update crc */
929 ulg beg = s->pending; /* start of bytes to update crc */
951 ulg beg = s->pending; /* start of bytes to update crc */
1197 s->window_size = (ulg)2L*s->w_size;
1281 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1399 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1492 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1571 ulg curr = s->strstart + (ulg)(s->lookahead);
1572 ulg init;
[all …]
Dzutil.c220 ulg bsize = (ulg)items*size; in zcalloc()
/external/python/cpython2/Modules/zlib/
Ddeflate.h104 ulg pending_buf_size; /* size of pending_buf */
106 ulg pending; /* nb of bytes in the pending buffer */
109 ulg gzindex; /* where in extra, name, or comment */
129 ulg window_size;
250 ulg opt_len; /* bit length of current block with optimal trees */
251 ulg static_len; /* bit length of current block with static trees */
256 ulg compressed_len; /* total bit length of compressed file mod 2^32 */
257 ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
269 ulg high_water;
302 ulg stored_len, int last));
[all …]
Dtrees.c193 s->bits_sent += (ulg)length;
523 s->opt_len += (ulg)f * (unsigned)(bits + xbits);
524 if (stree) s->static_len += (ulg)f * (unsigned)(stree[n].Len + xbits);
556 s->opt_len += ((ulg)bits - tree[m].Len) * tree[m].Freq;
822 s->opt_len += 3*((ulg)max_blindex+1) + 5+5+4;
866 ulg stored_len; /* length of input block */
876 s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L;
914 ulg stored_len; /* length of input block */
917 ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */
1040 ulg out_length = (ulg)s->last_lit*8L;
[all …]
Ddeflate.c331 s->pending_buf_size = (ulg)s->lit_bufsize * (sizeof(ush)+2L);
902 ulg beg = s->pending; /* start of bytes to update crc */
929 ulg beg = s->pending; /* start of bytes to update crc */
951 ulg beg = s->pending; /* start of bytes to update crc */
1197 s->window_size = (ulg)2L*s->w_size;
1281 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1399 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1492 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1571 ulg curr = s->strstart + (ulg)(s->lookahead);
1572 ulg init;
[all …]
Dzutil.c220 ulg bsize = (ulg)items*size; in zcalloc()
/external/u-boot/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);
1023 s->window_size = (ulg)2L*s->w_size;
1106 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1224 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1312 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1403 ulg curr = s->strstart + (ulg)(s->lookahead);
1404 ulg init;
1416 else if (s->high_water < (ulg)curr + WIN_INIT) {
1421 init = (ulg)curr + WIN_INIT - s->high_water;
1438 (ulg)((long)s->strstart - s->block_start), \
[all …]
Dzutil.h51 typedef unsigned long ulg; typedef
/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.c120 static int rpng_x_msb(ulg u32val);
136 static ulg image_width, image_height, image_rowbytes;
148 static ulg RMask, GMask, BMask;
441 ulg bg_pixel = 0L; in rpng_x_create_window()
442 ulg attrmask; in rpng_x_create_window()
621 bg_pixel = ((ulg)bg_red << RShift) | in rpng_x_create_window()
622 ((ulg)bg_green << GShift) | in rpng_x_create_window()
623 ((ulg)bg_blue << BShift); in rpng_x_create_window()
625 bg_pixel = ((((ulg)bg_red << 8) >> RShift) & RMask) | in rpng_x_create_window()
626 ((((ulg)bg_green << 8) >> GShift) & GMask) | in rpng_x_create_window()
[all …]
Drpng2-x.c186 static void rpng2_x_display_row (ulg row);
188 static void rpng2_x_redisplay_image (ulg startcol, ulg startrow,
189 ulg width, ulg height);
195 static int rpng2_x_msb (ulg u32val);
214 static ulg bg_rowbytes;
219 ulg usleep_duration = 0L;
297 static ulg RMask, GMask, BMask;
435 usleep_duration = (ulg)atol(*argv); in main()
725 usleep((ulg)usleep_usec); in main()
777 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.c173 static void rpng2_win_display_row(ulg row);
193 static ulg bg_rowbytes;
263 static ulg wimage_rowbytes;
644 ulg i; in rpng2_win_init()
645 ulg rowbytes = rpng2_info.rowbytes; in rpng2_win_init()
700 ulg i, j;
849 ulg i, row;
1076 static void rpng2_win_display_row(ulg row)
1083 ulg i;
1085 static ulg firstrow;
Dreadpng2.c190 int readpng2_decode_data(mainprog_info *mainprog_ptr, uch *rawbuf, ulg length) in readpng2_decode_data()
263 mainprog_ptr->width = (ulg)width; in readpng2_info_callback()
264 mainprog_ptr->height = (ulg)height; in readpng2_info_callback()
Drpng-win.c152 static ulg image_width, image_height, image_rowbytes;
157 static ulg wimage_rowbytes;
489 ulg i, j; in rpng_win_create_window()
590 ulg i, row, lastrow; in rpng_win_display_image()
Dwpng.c167 ulg rowbytes; in main()
705 ulg bytes; in main()
706 ulg image_bytes; in main()
710 wpng_info_height > ((ulg)(-1)/rowbytes) { in main()
745 ulg bytes; in main()
Dwritepng.h88 typedef unsigned long ulg; typedef
/external/freetype/src/gzip/
Dzutil.c86 ulg bsize = (ulg)items*size; in zcalloc()
Dzutil.h38 typedef unsigned long ulg; typedef

12