Home
last modified time | relevance | path

Searched full:preset (Results 1 – 25 of 241) sorted by relevance

12345678910

/freebsd-src/contrib/ntp/include/
H A Dgps.h45 #define PUMS 0x0056 /* Gen. preset register unit millisec */
46 #define PMS 0x0057 /* Gen. preset register units hundreds and tens ms */
47 #define PSEC 0x0058 /* Gen. preset register units tens and unit seconds */
48 #define PMIN 0x0059 /* Gen. preset register units tens and unit minutes */
49 #define PHRS 0x005A /* Gen. preset register units tens and unit hours */
50 #define PDYS1 0x005B /* Gen. preset register units tens and unit days */
51 #define PDYS2 0x005C /* Gen. preset register units hundreds days */
52 #define PYRS1 0x005D /* Gen. preset register units tens and unit years */
53 #define PYRS2 0x005E /* Gen. preset reg. units thousands and hundreds yrs */
/freebsd-src/contrib/xz/src/liblzma/api/lzma/
H A Dcontainer.h23 * \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 i
148 uint32_t preset; global() member
[all...]
H A Dlzma12.h256 * 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 structure
[all …]
H A Dfilter.h594 * The input string can be either a preset or a filter chain. Presets
598 * a preset string may start with a single dash "-".
647 * \param str User-supplied string describing a preset or
650 * that is the default preset in xz too.
697 * Note that even if the filter chain was specified using a preset,
698 * the resulting filter chain isn't reversed to a preset. So if you
/freebsd-src/sys/contrib/openzfs/config/
H A Duser-systemd.m44 [install systemd unit/preset files [[default: yes]]]),
15 [install systemd preset files in dir [[/usr/lib/systemd/system-preset]]]),
16 systemdpresetdir=$withval,systemdpresetdir=/usr/lib/systemd/system-preset)
/freebsd-src/contrib/xz/src/liblzma/common/
H A Dstring_conversion.c183 /// (1) If .type equals OPTMAP_TYPE_LZMA_PRESET then LZMA1/2 preset string
317 uint32_t *preset) in parse_lzma12_preset() argument
320 *preset = (uint32_t)(**str - '0'); in parse_lzma12_preset()
326 *preset |= LZMA_PRESET_EXTREME; in parse_lzma12_preset()
330 return "Unsupported preset flag"; in parse_lzma12_preset()
342 uint32_t preset; in set_lzma12_preset() local
343 const char *errmsg = parse_lzma12_preset(str, str_end, &preset); in set_lzma12_preset()
348 if (lzma_lzma_preset(opts, preset)) in set_lzma12_preset()
349 return "Unsupported preset"; in set_lzma12_preset()
374 .name = "preset",
[all …]
H A Deasy_preset.c6 /// \brief Preset handling for easy encoder and decoder
16 lzma_easy_preset(lzma_options_easy *opt_easy, uint32_t preset) in lzma_easy_preset() argument
18 if (lzma_lzma_preset(&opt_easy->opt_lzma, preset)) in lzma_easy_preset()
H A Deasy_preset.h6 /// \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);
H A Deasy_decoder_memusage.c16 lzma_easy_decoder_memusage(uint32_t preset) in lzma_easy_decoder_memusage() argument
19 if (lzma_easy_preset(&opt_easy, preset)) in lzma_easy_decoder_memusage()
H A Deasy_encoder_memusage.c16 lzma_easy_encoder_memusage(uint32_t preset) in lzma_easy_encoder_memusage() argument
19 if (lzma_easy_preset(&opt_easy, preset)) in lzma_easy_encoder_memusage()
H A Deasy_encoder.c16 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check) in lzma_easy_encoder() argument
19 if (lzma_easy_preset(&opt_easy, preset)) in lzma_easy_encoder()
H A Deasy_buffer_encoder.c16 lzma_easy_buffer_encode(uint32_t preset, lzma_check check, in lzma_easy_buffer_encode() argument
21 if (lzma_easy_preset(&opt_easy, preset)) in lzma_easy_buffer_encode()
/freebsd-src/contrib/xz/src/xz/
H A Dxz.1686 Select a compression preset level.
689 If multiple preset levels are specified,
692 a compression preset level clears the custom filter chain.
700 thus using a too high preset level might make it painful
759 Preset;DictSize;CompCPU;CompMem;DecMem
816 For example, four threads with preset
821 Use a slower variant of the selected compression preset level
826 but compressor memory usage increases a little at preset levels
847 Preset;DictSize;CompCPU;CompMem;DecMem
1325 preset options
[all …]
H A Doptions.c247 message_fatal(_("Unsupported LZMA1/LZMA2 preset: %s"), valuestr); in error_lzma_preset()
261 uint32_t preset = (uint32_t)(valuestr[0] - '0'); in set_lzma() local
267 preset |= LZMA_PRESET_EXTREME; in set_lzma()
275 if (lzma_lzma_preset(options, preset)) in set_lzma()
335 { "preset", NULL, UINT64_MAX, 0 }, in options_lzma()
H A Dcoder.c60 /// we are using a preset.
63 /// Number of the preset (0-9)
67 /// option. The filter chain is reset if a preset option (like -9) or an
102 // Setting a preset or using --filters makes us forget in forget_filter_chain()
149 // Setting a custom filter chain makes us forget the preset options. in coder_add_filter()
151 // where the custom filter chain resets the preset level back to in coder_add_filter()
353 // Options for LZMA1 or LZMA2 in case we are using a preset. in coder_set_compression_settings()
361 // We are using a preset. This is not a good idea in raw mode in coder_set_compression_settings()
368 message(V_WARNING, _("Using a preset in raw mode " in coder_set_compression_settings()
375 // Get the preset for LZMA1 or LZMA2. in coder_set_compression_settings()
/freebsd-src/sys/contrib/zlib/doc/
H A Drfc1950.txt154 support for a preset dictionary was introduced, and the
272 bit 5 FDICT (preset dictionary)
287 FDICT (Preset dictionary)
346 and ADLER32, but need not support preset dictionaries. When the
348 the compressor may use only preset dictionaries that are specified
350 preset dictionary feature, the compressor must not set the FDICT
361 identifier of a known preset dictionary. A decompressor may
364 decompressor must support all the preset dictionaries specified by
365 the other format. When the other format does not use the preset
457 8.1. Preset dictionaries
[all …]
/freebsd-src/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c17 lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset) in lzma_lzma_preset() argument
19 const uint32_t level = preset & LZMA_PRESET_LEVEL_MASK; in lzma_lzma_preset()
20 const uint32_t flags = preset & ~LZMA_PRESET_LEVEL_MASK; in lzma_lzma_preset()
/freebsd-src/sys/dev/al_eth/
H A Dal_init_eth_kr.c45 * change his state to preset.
68 DO_PRESET, /* issue PRESET to link partner */
228 /* First check for Init and Preset commands. */ in al_eth_coeff_req_handle()
229 if ((lpcoeff->preset != 0) || (lpcoeff->initialize) != 0) { in al_eth_coeff_req_handle()
235 * in case of preset c(0) should be set to maximum and both c(1) in al_eth_coeff_req_handle()
248 * in case preset and initialize are false need to perform per in al_eth_coeff_req_handle()
462 ldcoeff.preset = AL_TRUE; in al_eth_kr_lt_transmitter_task_run()
468 * Send PRESET and wait for updated for all in al_eth_kr_lt_transmitter_task_run()
473 else /* as long as the lp didn't response to the preset in al_eth_kr_lt_transmitter_task_run()
475 ldcoeff.preset = AL_TRUE; in al_eth_kr_lt_transmitter_task_run()
[all …]
/freebsd-src/share/man/man4/
H A Dacpi_video.456 Preset brightness level to be used in full power mode.
58 Preset brightness level to be used in economy mode.
/freebsd-src/sys/dev/acpica/
H A Dacpi_video.c663 "preset level for full power mode"); in acpi_video_vo_init()
670 "preset level for economy mode"); in acpi_video_vo_init()
890 int level, preset, err; in acpi_video_vo_bright_sysctl() local
903 preset = (power_profile_get_state() == POWER_PROFILE_ECONOMY) ? in acpi_video_vo_bright_sysctl()
907 level = preset; in acpi_video_vo_bright_sysctl()
920 vo_set_brightness(vo, (level == -1) ? preset : level); in acpi_video_vo_bright_sysctl()
931 int i, level, *preset, err; in acpi_video_vo_presets_sysctl() local
943 preset = (arg2 == POWER_PROFILE_ECONOMY) ? in acpi_video_vo_presets_sysctl()
945 level = *preset; in acpi_video_vo_presets_sysctl()
962 *preset in acpi_video_vo_presets_sysctl()
[all...]
/freebsd-src/contrib/ntp/sntp/m4/
H A Dos_cflags.m45 # allow ntp_os_cflags to be preset to skip this stuff
106 # allow ntp_os_ldflags to be preset to skip this stuff
/freebsd-src/sys/riscv/include/
H A Datomic.h202 "li %1, 1\n" /* Preset to fail */ in atomic_cmpset_32()
225 "li %1, 1\n" /* Preset to fail */ in atomic_fcmpset_32()
401 "li %1, 1\n" /* Preset to fail */ in atomic_fcmpset_64()
424 "li %1, 1\n" /* Preset to fail */
/freebsd-src/contrib/ntp/kernel/sys/
H A Dtt560_api.h116 * and position preset registers.
368 #define PRESET_POS_RDY_BIT 0 /* access the preset pos. rdy. bit */
373 #define PRESET_TIME_RDY_BIT 5 /* access the preset time ready bit */
/freebsd-src/contrib/ntp/ntpsnmpd/
H A Dinvoke-ntpsnmpd.texi68 The following option preset mechanisms are supported:
92 Any option that is not marked as @i{not presettable} may be preset by
/freebsd-src/sys/contrib/device-tree/Bindings/timer/
H A Dti,keystone-timer.txt10 when the counter reaches preset counter values.

12345678910