HomeSort by: relevance | last modified time | path
    Searched refs:preset (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/public-domain/xz/dist/src/liblzma/common/
easy_decoder_memusage.c 16 lzma_easy_decoder_memusage(uint32_t preset)
19 if (lzma_easy_preset(&opt_easy, preset))
easy_encoder_memusage.c 16 lzma_easy_encoder_memusage(uint32_t preset)
19 if (lzma_easy_preset(&opt_easy, preset))
easy_encoder.c 16 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check)
19 if (lzma_easy_preset(&opt_easy, preset))
easy_preset.h 6 /// \brief Preset handling for easy encoder and decoder
32 /// Set *easy to the settings given by the preset. Returns true on error,
34 extern bool lzma_easy_preset(lzma_options_easy *easy, uint32_t preset);
easy_preset.c 6 /// \brief Preset handling for easy encoder and decoder
16 lzma_easy_preset(lzma_options_easy *opt_easy, uint32_t preset)
18 if (lzma_lzma_preset(&opt_easy->opt_lzma, preset))
easy_buffer_encoder.c 16 lzma_easy_buffer_encode(uint32_t preset, lzma_check check,
21 if (lzma_easy_preset(&opt_easy, preset))
string_conversion.c 188 /// (1) If .type equals OPTMAP_TYPE_LZMA_PRESET then LZMA1/2 preset string
322 uint32_t *preset)
327 return N_("Unsupported preset");
329 *preset = (uint32_t)(**str - '0');
335 *preset |= LZMA_PRESET_EXTREME;
339 return N_("Unsupported flag in the preset");
351 uint32_t preset; local
352 const char *errmsg = parse_lzma12_preset(str, str_end, &preset);
357 if (lzma_lzma_preset(opts, preset))
358 return N_("Unsupported preset");
914 uint32_t preset; local
    [all...]
stream_encoder_mt.c 972 // Use a preset.
973 if (lzma_easy_preset(opt_easy, options->preset))
  /src/external/public-domain/xz/dist/tests/
test_suffix.sh 50 if "$XZ" -zfk --suffix=".foo" -Fraw --lzma1=preset=0 "$SUFFIX_INPUT" ; then
66 if "$XZ" -zfk -Fraw --lzma1=preset=0 "$SUFFIX_INPUT" 2> /dev/null; then
72 if "$XZ" -df -Fraw --lzma1=preset=0 "$SUFFIX_INPUT.foo" 2> /dev/null; then
79 if "$XZ" -df --suffix=".foo" -Fraw --lzma1=preset=0 "$SUFFIX_INPUT.foo"; then
87 if "$XZ" -zfk --suffix=".foo" --lzma2=preset=0 "$SUFFIX_INPUT" ; then
113 if echo foo | "$XZ" -Fraw --lzma1=preset=0 > /dev/null ; then
129 if "$XZ" -Fraw --lzma1=preset=0 --files="$SUFFIX_INPUT_FILES" 2> /dev/null ; then
134 if "$XZ" -Fraw --lzma1=preset=0 --files0="$SUFFIX_INPUT_FILES0" 2> /dev/null ; then
140 if "$XZ" -zfk -Fraw --lzma1=preset=0 --suffix=.foo --files="$SUFFIX_INPUT_FILES" ; then
157 if "$XZ" -zfk -Fraw --lzma1=preset=0 --suffix=.foo --files0="$SUFFIX_INPUT_FILES0" ; the
    [all...]
  /src/external/public-domain/xz/dist/doc/examples/
01_compress_easy.c 8 /// Usage: ./01_compress_easy PRESET < INFILE > OUTFILE
27 fprintf(stderr, "Usage: %s PRESET < INFILE > OUTFILE\n"
28 "PRESET is a number 0-9 and can optionally be "
29 "followed by 'e' to indicate extreme preset\n",
43 uint32_t preset = argv[1][0] - '0'; local
51 preset |= LZMA_PRESET_EXTREME;
54 return preset;
59 init_encoder(lzma_stream *strm, uint32_t preset)
61 // Initialize the encoder using a preset. Set the integrity to check
65 lzma_ret ret = lzma_easy_encoder(strm, preset, LZMA_CHECK_CRC64)
265 uint32_t preset = get_preset(argc, argv); local
    [all...]
04_compress_easy_mt.c 45 // Use the default preset (6) for LZMA2.
46 // To use a preset, filters must be set to NULL.
47 .preset = LZMA_PRESET_DEFAULT,
71 // high depending on the compression preset and the computer
94 // We are no longer using a plain preset so this error
  /src/external/gpl3/gcc/dist/gcc/config/loongarch/
loongarch-cpu.cc 127 auto &preset = loongarch_cpu_default_isa[tgt->cpu_arch]; local
151 preset.base = tmp;
179 if (native_cpu_arch != ARCH_NATIVE && tmp != preset.fpu)
180 warning (0, "floating-point unit %qs differs from PRID preset %qs",
182 loongarch_isa_ext_strings[preset.fpu]);
185 preset.fpu = tmp;
218 if (native_cpu_arch != ARCH_NATIVE && tmp != preset.simd)
219 warning (0, "SIMD extension %qs differs from PRID preset %qs",
221 loongarch_isa_ext_strings[preset.simd]);
225 preset.simd = tmp
    [all...]
  /src/external/public-domain/xz/dist/src/liblzma/lzma/
lzma_encoder_presets.c 17 lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset)
19 const uint32_t level = preset & LZMA_PRESET_LEVEL_MASK;
20 const uint32_t flags = preset & ~LZMA_PRESET_LEVEL_MASK;
  /src/external/public-domain/xz/dist/src/liblzma/api/lzma/
container.h 23 * \brief Default compression preset
25 * It's not straightforward to recommend a default preset, because in some
33 * \brief Mask for preset level
35 * This is useful only if you need to extract the level from the preset
42 * Preset flags
48 * \brief Extreme compression preset
50 * This flag modifies the preset to make the encoding significantly slower
56 * a little but only at the lowest preset levels (0-3).
143 * \brief Encoder only: Compression preset
145 * The preset is set just like with lzma_easy_encoder()
148 uint32_t preset; member in struct:__anon315
    [all...]
lzma12.h 256 * a preset dictionary. It is useful when compressing many
258 * each other. The preset dictionary should contain typical
260 * probable strings should be near the end of the preset dictionary.
265 * liblzma allow preset dictionary when decoding, thus if
266 * you create a .xz or .lzma file with preset dictionary, it
268 * future, the .xz format will likely get support for preset
274 * \brief Size of the preset dictionary
276 * Specifies the size of the preset dictionary. If the size is
282 * no preset dictionary is used (identical to only setting
542 * \brief Set a compression preset to lzma_options_lzma structur
    [all...]
  /src/sys/arch/luna68k/stand/boot/
bmc.c 81 #include <luna68k/stand/boot/preset.h>
  /src/external/public-domain/xz/dist/src/xz/
options.c 249 message_fatal(_("Unsupported LZMA1/LZMA2 preset: %s"),
264 uint32_t preset = (uint32_t)(valuestr[0] - '0'); local
270 preset |= LZMA_PRESET_EXTREME;
278 if (lzma_lzma_preset(options, preset))
338 { "preset", NULL, UINT64_MAX, 0 },
  /src/common/dist/zlib/contrib/pascal/
example.pas 447 * Test deflate with preset dictionary
481 * Test inflate with a preset dictionary
592 WriteLn('** Testing deflate and inflate with preset dictionary');
  /src/external/gpl3/binutils/dist/zlib/contrib/pascal/
example.pas 447 * Test deflate with preset dictionary
481 * Test inflate with a preset dictionary
592 WriteLn('** Testing deflate and inflate with preset dictionary');
  /src/external/gpl3/binutils.old/dist/zlib/contrib/pascal/
example.pas 447 * Test deflate with preset dictionary
481 * Test inflate with a preset dictionary
592 WriteLn('** Testing deflate and inflate with preset dictionary');
  /src/external/gpl3/gdb/dist/zlib/contrib/pascal/
example.pas 447 * Test deflate with preset dictionary
481 * Test inflate with a preset dictionary
592 WriteLn('** Testing deflate and inflate with preset dictionary');
  /src/external/gpl3/gdb.old/dist/zlib/contrib/pascal/
example.pas 447 * Test deflate with preset dictionary
481 * Test inflate with a preset dictionary
592 WriteLn('** Testing deflate and inflate with preset dictionary');
  /src/sys/arch/ia64/stand/common/
help.common 294 the preset default of 512. Must be a power of 2.
  /src/external/bsd/ntp/dist/ntpdc/
ntpdc_ops.c 73 static void preset (struct parse *, FILE *);
174 { "preset", preset, { NTP_ADD, OPT|NTP_ADD, OPT|NTP_ADD, OPT|NTP_ADD },
2152 * preset - reset stat counters for particular peers
2155 preset( function
  /src/external/bsd/ntp/dist/ntpq/
ntpq-opts.def 85 preset this option in a script will enable both older and

Completed in 47 milliseconds

1 2