Searched refs:options (Results 1 - 25 of 1021) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Dstream_flags_common.h26 is_backward_size_valid(const lzma_stream_flags *options) argument
28 return options->backward_size >= LZMA_BACKWARD_SIZE_MIN
29 && options->backward_size <= LZMA_BACKWARD_SIZE_MAX
30 && (options->backward_size & 3) == 0;
H A Dfilter_decoder.h21 const lzma_filter *options);
H A Dstream_flags_decoder.c17 stream_flags_decode(lzma_stream_flags *options, const uint8_t *in) argument
23 options->version = 0;
24 options->check = in[1] & 0x0F;
31 lzma_stream_header_decode(lzma_stream_flags *options, const uint8_t *in)
46 if (stream_flags_decode(options, in + sizeof(lzma_header_magic)))
53 options->backward_size = LZMA_VLI_UNKNOWN;
60 lzma_stream_footer_decode(lzma_stream_flags *options, const uint8_t *in)
74 if (stream_flags_decode(options, in + sizeof(uint32_t) * 2))
78 options->backward_size = read32le(in + sizeof(uint32_t));
79 options
[all...]
H A Dstream_flags_encoder.c17 stream_flags_encode(const lzma_stream_flags *options, uint8_t *out) argument
19 if ((unsigned int)(options->check) > LZMA_CHECK_ID_MAX)
23 out[1] = options->check;
30 lzma_stream_header_encode(const lzma_stream_flags *options, uint8_t *out)
35 if (options->version != 0)
42 if (stream_flags_encode(options, out + sizeof(lzma_header_magic)))
57 lzma_stream_footer_encode(const lzma_stream_flags *options, uint8_t *out)
62 if (options->version != 0)
66 if (!is_backward_size_valid(options))
69 write32le(out + 4, options
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/delta/
H A Ddelta_common.h18 extern uint64_t lzma_delta_coder_memusage(const void *options);
/freebsd-11-stable/gnu/usr.bin/grep/tests/
H A Dempty.sh9 for options in '-E' '-E -w' '-F -x' '-G -w -x'; do
12 echo "" | ${GREP} $options -e '' > /dev/null 2>&1
14 echo "Status: Wrong status code, test \#1 failed ($options)"
19 echo "abcd" | ${GREP} $options -f /dev/null > /dev/null 2>&1
21 echo "Status: Wrong status code, test \#2 failed ($options)"
26 echo "abcd" | ${GREP} $options -f /dev/null -e "abcd" > /dev/null 2>&1
28 echo "Status: Wrong status code, test \#3 failed ($options)"
/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_presets.c18 lzma_lzma_preset(lzma_options_lzma *options, uint32_t preset)
27 options->preset_dict = NULL;
28 options->preset_dict_size = 0;
30 options->lc = LZMA_LC_DEFAULT;
31 options->lp = LZMA_LP_DEFAULT;
32 options->pb = LZMA_PB_DEFAULT;
36 options->dict_size = UINT32_C(1) << dict_pow2[level];
39 options->mode = LZMA_MODE_FAST;
40 options->mf = level == 0 ? LZMA_MF_HC3 : LZMA_MF_HC4;
41 options
[all...]
H A Dlzma_decoder.h25 extern uint64_t lzma_lzma_decoder_memusage(const void *options);
28 void **options, const lzma_allocator *allocator,
37 lzma_options_lzma *options, uint8_t byte);
49 extern uint64_t lzma_lzma_decoder_memusage_nocheck(const void *options);
H A Dlzma2_encoder.h37 extern uint64_t lzma_lzma2_encoder_memusage(const void *options);
39 extern lzma_ret lzma_lzma2_props_encode(const void *options, uint8_t *out);
41 extern uint64_t lzma_lzma2_block_size(const void *options);
H A Dlzma_encoder.h28 extern uint64_t lzma_lzma_encoder_memusage(const void *options);
30 extern lzma_ret lzma_lzma_props_encode(const void *options, uint8_t *out);
35 const lzma_options_lzma *options, uint8_t *byte);
43 const lzma_options_lzma *options, lzma_lz_options *lz_options);
48 lzma_lzma1_encoder *coder, const lzma_options_lzma *options);
/freebsd-11-stable/tools/regression/atm/
H A DRunTest.sh7 # Just check the legality of the options and pass them along
23 options=""
31 -b) options="$options $i $2" ; shift; shift;;
32 -q) options="$options $i" ; shift;;
37 (cd proto_sscop ; sh ./RunTest.sh -u $options)
38 (cd proto_sscfu ; sh ./RunTest.sh -u $options)
39 (cd proto_uni ; sh ./RunTest.sh -u $options)
40 (cd proto_cc ; sh ./RunTest.sh -u $options)
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/simple/
H A Dsimple_encoder.h19 extern lzma_ret lzma_simple_props_size(uint32_t *size, const void *options);
21 extern lzma_ret lzma_simple_props_encode(const void *options, uint8_t *out);
H A Dsimple_encoder.c17 lzma_simple_props_size(uint32_t *size, const void *options) argument
19 const lzma_options_bcj *const opt = options;
26 lzma_simple_props_encode(const void *options, uint8_t *out) argument
28 const lzma_options_bcj *const opt = options;
31 // options unless the start offset is non-zero.
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCxxStringTypes.h20 const TypeSummaryOptions &options); // char8_t*
24 const TypeSummaryOptions &options); // char16_t* and unichar*
28 const TypeSummaryOptions &options); // char32_t*
31 const TypeSummaryOptions &options); // wchar_t*
34 const TypeSummaryOptions &options); // char8_t
38 const TypeSummaryOptions &options); // char16_t and unichar
41 const TypeSummaryOptions &options); // char32_t
44 const TypeSummaryOptions &options); // wchar_t
H A DCxxStringTypes.cpp45 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj);
46 options.SetLocation(valobj_addr);
47 options.SetProcessSP(process_sp);
48 options.SetStream(&stream);
49 options.SetPrefixToken("u8");
52 StringPrinter::StringElementType::UTF8>(options)) {
70 StringPrinter::ReadStringAndDumpToStreamOptions options(valobj);
71 options.SetLocation(valobj_addr);
72 options.SetProcessSP(process_sp);
73 options
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCF.h19 const TypeSummaryOptions &options);
22 const TypeSummaryOptions &options);
25 const TypeSummaryOptions &options);
28 const TypeSummaryOptions &options);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/gwp_asan/optional/
H A Dbacktrace.h12 #include "gwp_asan/options.h"
15 namespace options { namespace in namespace:gwp_asan
25 } // namespace options
/freebsd-11-stable/contrib/mdocml/
H A Dtest-getsubopt.c28 char *options = buf; local
32 return ! (getsubopt(&options, tokens, &value) == 0
33 && value == buf+2 && options == buf+3);
/freebsd-11-stable/usr.bin/vgrind/
H A Dvgrind.sh36 options=""
49 options="$options -f"
65 options="$options $1 $2"
85 options="$options $1"
104 $vf $options -h "$head" $files
106 $vf $options $files
110 $vf $options
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dssh.c158 * General data structure for command line options and options configurable
161 Options options; variable
236 * NB. this function must operate with a options having undefined members.
250 hints.ai_family = options.address_family == -1 ?
251 AF_UNSPEC : options.address_family;
277 * NB. this function must operate with a options having undefined members.
290 hints.ai_family = options.address_family == -1 ?
291 AF_UNSPEC : options.address_family;
330 * NB. this function must operate with a options havin
[all...]
H A Dreadconf.c75 # 1. command line options
120 # Defaults for various options
136 const char *host, const char *original_host, Options *options,
138 static int process_config_line_depth(Options *options, struct passwd *pw,
186 /* Deprecated options */
194 /* Unsupported options */
199 /* Sometimes-unsupported options */
327 * Adds a local TCP/IP port forward to options. Never returns if there is an
332 add_local_forward(Options *options, const struct Forward *newfwd) argument
342 for (i = 0; i < options
365 add_remote_forward(Options *options, const struct Forward *newfwd) argument
391 clear_forwardings(Options *options) argument
421 add_certificate_file(Options *options, const char *path, int userprovided) argument
445 add_identity_file(Options *options, const char *dir, const char *filename, int userprovided) argument
559 match_cfg_line(Options *options, char **condition, struct passwd *pw, const char *host_arg, const char *original_host, int post_canon, const char *filename, int linenum) argument
825 process_config_line(Options *options, struct passwd *pw, const char *host, const char *original_host, char *line, const char *filename, int linenum, int *activep, int flags) argument
835 process_config_line_depth(Options *options, struct passwd *pw, const char *host, const char *original_host, char *line, const char *filename, int linenum, int *activep, int flags, int depth) argument
1734 read_config_file(const char *filename, struct passwd *pw, const char *host, const char *original_host, Options *options, int flags) argument
1745 read_config_file_depth(const char *filename, struct passwd *pw, const char *host, const char *original_host, Options *options, int flags, int *activep, int depth) argument
1808 initialize_options(Options * options) argument
1917 fill_default_options_for_canonicalization(Options *options) argument
1932 fill_default_options(Options * options) argument
[all...]
H A Dservconf.c71 /* Initializes the server options to their default values. */
74 initialize_server_options(ServerOptions *options) argument
76 memset(options, 0, sizeof(*options));
78 /* Portable-specific options */
79 options->use_pam = -1;
82 options->num_ports = 0;
83 options->ports_from_cmdline = 0;
84 options->queued_listen_addrs = NULL;
85 options
195 fill_default_server_options(ServerOptions *options) argument
634 add_listen_addr(ServerOptions *options, char *addr, int port) argument
646 add_one_listen_addr(ServerOptions *options, char *addr, int port) argument
672 queue_listen_addr(ServerOptions *options, char *addr, int port) argument
690 process_queued_listen_addrs(ServerOptions *options) argument
972 process_server_config_line(ServerOptions *options, char *line, const char *filename, int linenum, int *activep, struct connection_info *connectinfo) argument
1923 parse_server_match_config(ServerOptions *options, struct connection_info *connectinfo) argument
2076 parse_server_config(ServerOptions *options, const char *filename, Buffer *conf, struct connection_info *connectinfo) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DAnanas.cpp33 Args.AddAllArgValues(CmdArgs, options::OPT_Wa_COMMA, options::OPT_Xassembler);
55 Args.ClaimAllArgs(options::OPT_g_Group);
57 Args.ClaimAllArgs(options::OPT_emit_llvm);
58 // and for "clang -w foo.o -o foo". Other warning options are already
60 Args.ClaimAllArgs(options::OPT_w);
65 if (Args.hasArg(options::OPT_static)) {
68 if (Args.hasArg(options::OPT_rdynamic))
70 if (Args.hasArg(options::OPT_shared)) {
73 Args.AddAllArgs(CmdArgs, options
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/Arch/
H A DX86.cpp25 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) {
39 if (const Arg *A = Args.getLastArgNoClaim(options::OPT__SLASH_arch)) {
113 if (const Arg *A = Args.getLastArg(clang::driver::options::OPT_march_EQ)) {
150 auto SpectreOpt = clang::driver::options::ID::OPT_INVALID;
151 if (Args.hasArgNoClaim(options::OPT_mretpoline, options::OPT_mno_retpoline,
152 options::OPT_mspeculative_load_hardening,
153 options::OPT_mno_speculative_load_hardening)) {
154 if (Args.hasFlag(options::OPT_mretpoline, options
[all...]
/freebsd-11-stable/contrib/amd/scripts/
H A Dautomount2amd.in11 # dir [ -options ] machine:/path [ # optional comment ]
52 ($dir, $options, $machine, $path, $rest) = ($1, $2, $3, $4, $5);
55 if ($options =~ m/-/) {
56 $options =~ s/\s//g;
57 $options =~ s/^-//g;
58 printf( " -addopts:=$options \\\n");

Completed in 161 milliseconds

1234567891011>>