| /xsrc/external/mit/freetype/dist/src/gzip/ |
| H A D | ftgzip.c | 181 z_stream zstream; /* zlib input stream */ member in struct:FT_GZipFileRec_ 283 z_stream* zstream = &zip->zstream; local in function:ft_gzip_file_init 307 zstream->zalloc = (alloc_func)ft_gzip_alloc; 308 zstream->zfree = (free_func) ft_gzip_free; 309 zstream->opaque = stream->memory; 311 zstream->avail_in = 0; 312 zstream->next_in = zip->buffer; 314 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK || 315 !zstream 326 z_stream* zstream = &zip->zstream; local in function:ft_gzip_file_done 355 z_stream* zstream = &zip->zstream; local in function:ft_gzip_file_reset 377 z_stream* zstream = &zip->zstream; local in function:ft_gzip_file_fill_input 418 z_stream* zstream = &zip->zstream; local in function:ft_gzip_file_fill_output [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/ |
| H A D | error2aub.c | 60 struct z_stream_s zstream; local in function:zlib_inflate 64 memset(&zstream, 0, sizeof(zstream)); 66 zstream.next_in = (unsigned char *)*ptr; 67 zstream.avail_in = 4*len; 69 if (inflateInit(&zstream) != Z_OK) 73 zstream.next_out = out; 74 zstream.avail_out = out_size; 77 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 83 inflateEnd(&zstream); [all...] |
| H A D | aubinator_error_decode.c | 300 struct z_stream_s zstream; local in function:zlib_inflate 304 memset(&zstream, 0, sizeof(zstream)); 306 zstream.next_in = (unsigned char *)*ptr; 307 zstream.avail_in = 4*len; 309 if (inflateInit(&zstream) != Z_OK) 313 zstream.next_out = out; 314 zstream.avail_out = out_size; 317 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 323 inflateEnd(&zstream); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/ |
| H A D | error2aub.c | 47 struct z_stream_s zstream; local in function:zlib_inflate 51 memset(&zstream, 0, sizeof(zstream)); 53 zstream.next_in = (unsigned char *)*ptr; 54 zstream.avail_in = 4*len; 56 if (inflateInit(&zstream) != Z_OK) 60 zstream.next_out = out; 61 zstream.avail_out = out_size; 64 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 70 inflateEnd(&zstream); [all...] |
| H A D | aubinator_error_decode.c | 297 struct z_stream_s zstream; local in function:zlib_inflate 301 memset(&zstream, 0, sizeof(zstream)); 303 zstream.next_in = (unsigned char *)*ptr; 304 zstream.avail_in = 4*len; 306 if (inflateInit(&zstream) != Z_OK) 310 zstream.next_out = out; 311 zstream.avail_out = out_size; 314 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 320 inflateEnd(&zstream); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/broadcom/cle/ |
| H A D | v3d_decoder.c | 615 struct z_stream_s zstream; local in function:zlib_inflate 618 memset(&zstream, 0, sizeof(zstream)); 620 zstream.next_in = (unsigned char *)compressed_data; 621 zstream.avail_in = compressed_len; 623 if (inflateInit(&zstream) != Z_OK) 627 zstream.next_out = out; 628 zstream.avail_out = 4096; 631 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 637 inflateEnd(&zstream); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/cle/ |
| H A D | v3d_decoder.c | 604 struct z_stream_s zstream; local in function:zlib_inflate 607 memset(&zstream, 0, sizeof(zstream)); 609 zstream.next_in = (unsigned char *)compressed_data; 610 zstream.avail_in = compressed_len; 612 if (inflateInit(&zstream) != Z_OK) 616 zstream.next_out = out; 617 zstream.avail_out = 4096; 620 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 626 inflateEnd(&zstream); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/common/ |
| H A D | gen_decoder.c | 512 struct z_stream_s zstream; local in function:zlib_inflate 515 memset(&zstream, 0, sizeof(zstream)); 517 zstream.next_in = (unsigned char *)compressed_data; 518 zstream.avail_in = compressed_len; 520 if (inflateInit(&zstream) != Z_OK) 524 zstream.next_out = out; 525 zstream.avail_out = 4096; 528 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 534 inflateEnd(&zstream); [all...] |
| /xsrc/external/mit/MesaLib/dist/src/intel/common/ |
| H A D | intel_decoder.c | 514 struct z_stream_s zstream; local in function:zlib_inflate 517 memset(&zstream, 0, sizeof(zstream)); 519 zstream.next_in = (unsigned char *)compressed_data; 520 zstream.avail_in = compressed_len; 522 if (inflateInit(&zstream) != Z_OK) 526 zstream.next_out = out; 527 zstream.avail_out = 4096; 530 switch (inflate(&zstream, Z_SYNC_FLUSH)) { 536 inflateEnd(&zstream); [all...] |