HomeSort by relevance Sort by last modified time
    Searched refs:inflateResult (Results 1 - 3 of 3) sorted by null

  /external/libvncserver/libvncclient/
zlib.c 40 int inflateResult;
77 inflateResult = inflateInit( &client->decompStream );
79 if ( inflateResult != Z_OK ) {
82 inflateResult,
91 inflateResult = Z_OK;
97 ( inflateResult == Z_OK )) {
114 inflateResult = inflate( &client->decompStream, Z_SYNC_FLUSH );
117 if ( inflateResult == Z_NEED_DICT ) {
121 if ( inflateResult < 0 ) {
124 inflateResult,
    [all...]
ultra.c 39 int inflateResult=0;
89 inflateResult = lzo1x_decompress(
99 if ( inflateResult == LZO_E_OK )
106 inflateResult);
120 int inflateResult=0;
171 inflateResult = lzo1x_decompress(
174 if ( inflateResult != LZO_E_OK )
177 inflateResult);
zrle.c 88 int inflateResult;
126 inflateResult = inflateInit( &client->decompStream );
128 if ( inflateResult != Z_OK ) {
131 inflateResult,
140 inflateResult = Z_OK;
146 ( inflateResult == Z_OK )) {
163 inflateResult = inflate( &client->decompStream, Z_SYNC_FLUSH );
166 if ( inflateResult == Z_NEED_DICT ) {
170 if ( inflateResult < 0 ) {
173 inflateResult,
    [all...]

Completed in 80 milliseconds