HomeSort by: relevance | last modified time | path
    Searched defs:compr (Results 1 - 13 of 13) sorted by relevancy

  /src/external/gpl3/binutils/dist/zlib/
example.c 37 void test_compress OF((Byte *compr, uLong comprLen,
41 void test_deflate OF((Byte *compr, uLong comprLen));
42 void test_inflate OF((Byte *compr, uLong comprLen,
44 void test_large_deflate OF((Byte *compr, uLong comprLen,
46 void test_large_inflate OF((Byte *compr, uLong comprLen,
48 void test_flush OF((Byte *compr, uLong *comprLen));
49 void test_sync OF((Byte *compr, uLong comprLen,
51 void test_dict_deflate OF((Byte *compr, uLong comprLen));
52 void test_dict_inflate OF((Byte *compr, uLong comprLen,
59 void test_compress(compr, comprLen, uncompr, uncomprLen
518 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/
example.c 37 void test_compress OF((Byte *compr, uLong comprLen,
41 void test_deflate OF((Byte *compr, uLong comprLen));
42 void test_inflate OF((Byte *compr, uLong comprLen,
44 void test_large_deflate OF((Byte *compr, uLong comprLen,
46 void test_large_inflate OF((Byte *compr, uLong comprLen,
48 void test_flush OF((Byte *compr, uLong *comprLen));
49 void test_sync OF((Byte *compr, uLong comprLen,
51 void test_dict_deflate OF((Byte *compr, uLong comprLen));
52 void test_dict_inflate OF((Byte *compr, uLong comprLen,
59 void test_compress(compr, comprLen, uncompr, uncomprLen
518 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/gdb/dist/zlib/
example.c 37 void test_compress OF((Byte *compr, uLong comprLen,
41 void test_deflate OF((Byte *compr, uLong comprLen));
42 void test_inflate OF((Byte *compr, uLong comprLen,
44 void test_large_deflate OF((Byte *compr, uLong comprLen,
46 void test_large_inflate OF((Byte *compr, uLong comprLen,
48 void test_flush OF((Byte *compr, uLong *comprLen));
49 void test_sync OF((Byte *compr, uLong comprLen,
51 void test_dict_deflate OF((Byte *compr, uLong comprLen));
52 void test_dict_inflate OF((Byte *compr, uLong comprLen,
59 void test_compress(compr, comprLen, uncompr, uncomprLen
518 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/
example.c 37 void test_compress OF((Byte *compr, uLong comprLen,
41 void test_deflate OF((Byte *compr, uLong comprLen));
42 void test_inflate OF((Byte *compr, uLong comprLen,
44 void test_large_deflate OF((Byte *compr, uLong comprLen,
46 void test_large_inflate OF((Byte *compr, uLong comprLen,
48 void test_flush OF((Byte *compr, uLong *comprLen));
49 void test_sync OF((Byte *compr, uLong comprLen,
51 void test_dict_deflate OF((Byte *compr, uLong comprLen));
52 void test_dict_inflate OF((Byte *compr, uLong comprLen,
59 void test_compress(compr, comprLen, uncompr, uncomprLen
518 Byte *compr, *uncompr; local
    [all...]
  /src/common/dist/zlib/test/
example.c 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
65 err = compress(compr, &comprLen, (const Bytef*)hello, len);
70 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
166 static void test_deflate(Byte *compr, uLong comprLen) {
179 c_stream.next_out = compr;
201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
212 d_stream.next_in = compr;
240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
252 c_stream.next_out = compr;
269 c_stream.next_in = compr;
492 Byte *compr, *uncompr; local
    [all...]
  /src/external/bsd/zstd/dist/zlibWrapper/examples/
example.c 59 void test_deflate _Z_OF((Byte *compr, uLong comprLen));
60 void test_inflate _Z_OF((Byte *compr, uLong comprLen,
62 void test_large_deflate _Z_OF((Byte *compr, uLong comprLen,
64 void test_large_inflate _Z_OF((Byte *compr, uLong comprLen,
66 void test_flush _Z_OF((Byte *compr, uLong *comprLen));
67 void test_sync _Z_OF((Byte *compr, uLong comprLen,
69 void test_dict_deflate _Z_OF((Byte *compr, uLong comprLen));
70 void test_dict_inflate _Z_OF((Byte *compr, uLong comprLen,
103 void test_compress _Z_OF((Byte *compr, uLong comprLen,
111 void test_compress(Byte *compr, uLong comprLen, Byte *uncompr
543 Byte *compr, *uncompr; local
    [all...]
example_original.c 54 void test_deflate _Z_OF((Byte *compr, uLong comprLen));
55 void test_inflate _Z_OF((Byte *compr, uLong comprLen,
57 void test_large_deflate _Z_OF((Byte *compr, uLong comprLen,
59 void test_large_inflate _Z_OF((Byte *compr, uLong comprLen,
61 void test_flush _Z_OF((Byte *compr, uLong *comprLen));
62 void test_sync _Z_OF((Byte *compr, uLong comprLen,
64 void test_dict_deflate _Z_OF((Byte *compr, uLong comprLen));
65 void test_dict_inflate _Z_OF((Byte *compr, uLong comprLen,
97 void test_compress _Z_OF((Byte *compr, uLong comprLen,
105 void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, uLong uncomprLen
547 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/binutils/dist/zlib/test/
example.c 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
65 err = compress(compr, &comprLen, (const Bytef*)hello, len);
70 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
166 static void test_deflate(Byte *compr, uLong comprLen) {
179 c_stream.next_out = compr;
201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
212 d_stream.next_in = compr;
240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
252 c_stream.next_out = compr;
269 c_stream.next_in = compr;
492 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/test/
example.c 37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLen,
47 void test_dict_deflate OF((Byte *compr, uLong comprLen));
48 void test_dict_inflate OF((Byte *compr, uLong comprLen,
80 void test_compress OF((Byte *compr, uLong comprLen,
88 void test_compress(compr, comprLen, uncompr, uncomprLen
548 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/gdb.old/dist/zlib/test/
example.c 37 void test_deflate OF((Byte *compr, uLong comprLen));
38 void test_inflate OF((Byte *compr, uLong comprLen,
40 void test_large_deflate OF((Byte *compr, uLong comprLen,
42 void test_large_inflate OF((Byte *compr, uLong comprLen,
44 void test_flush OF((Byte *compr, uLong *comprLen));
45 void test_sync OF((Byte *compr, uLong comprLen,
47 void test_dict_deflate OF((Byte *compr, uLong comprLen));
48 void test_dict_inflate OF((Byte *compr, uLong comprLen,
80 void test_compress OF((Byte *compr, uLong comprLen,
88 void test_compress(compr, comprLen, uncompr, uncomprLen
548 Byte *compr, *uncompr; local
    [all...]
  /src/external/gpl3/gdb/dist/zlib/test/
example.c 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
65 err = compress(compr, &comprLen, (const Bytef*)hello, len);
70 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
166 static void test_deflate(Byte *compr, uLong comprLen) {
179 c_stream.next_out = compr;
201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
212 d_stream.next_in = compr;
240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
252 c_stream.next_out = compr;
269 c_stream.next_in = compr;
492 Byte *compr, *uncompr; local
    [all...]
  /src/external/bsd/file/dist/src/
compress.c 190 } compr[] = { variable in typeref:struct:__anon6640
227 file_private size_t ncompr = __arraycount(compr);
294 if (nbytes < CAST(size_t, abs(compr[i].maglen)))
296 if (compr[i].maglen < 0) {
297 zm = (*compr[i].u.func)(buf);
299 zm = memcmp(buf, compr[i].u.magic,
300 CAST(size_t, compr[i].maglen)) == 0;
1017 return compr[method].argv[0];
1112 args = RCAST(char *const *, RCAST(intptr_t, compr[method].argv));
1118 DPRINTF("Executing %s\n", compr[method].argv[0])
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce110/
amdgpu_dce110_hw_sequencer.c 1855 struct compressor *compr = dc->fbc_compressor; local
1861 compr->compr_surface_address.quad_part = dc->ctx->fbc_gpu_addr;
1863 compr->funcs->surface_address_and_pitch(compr, &params);
1864 compr->funcs->set_fbc_invalidation_triggers(compr, 1);
1866 compr->funcs->enable_fbc(compr, &params);

Completed in 16 milliseconds