Home
last modified time | relevance | path

Searched refs:pad_opt (Results 1 – 25 of 84) sorted by relevance

1234

/dports/devel/pegtl/PEGTL-3.0.0/src/test/pegtl/
H A Drule_pad_opt.cpp12 verify_analyze< pad_opt< eof, eof > >( __LINE__, __FILE__, false, true ); in unit_test()
13 verify_analyze< pad_opt< eof, any > >( __LINE__, __FILE__, false, false ); in unit_test()
14 verify_analyze< pad_opt< any, eof > >( __LINE__, __FILE__, false, true ); in unit_test()
15 verify_analyze< pad_opt< any, any > >( __LINE__, __FILE__, false, false ); in unit_test()
17 … verify_rule< pad_opt< one< 'a' >, space > >( __LINE__, __FILE__, "", result_type::success, 0 ); in unit_test()
18 … verify_rule< pad_opt< one< 'a' >, space > >( __LINE__, __FILE__, " ", result_type::success, 0 ); in unit_test()
19 … verify_rule< pad_opt< one< 'a' >, space > >( __LINE__, __FILE__, " ", result_type::success, 0 ); in unit_test()
20 … verify_rule< pad_opt< one< 'a' >, space > >( __LINE__, __FILE__, "b", result_type::success, 1 ); in unit_test()
21 … verify_rule< pad_opt< one< 'a' >, space > >( __LINE__, __FILE__, "ba", result_type::success, 2 ); in unit_test()
22 … verify_rule< pad_opt< one< 'a' >, space > >( __LINE__, __FILE__, "a", result_type::success, 0 ); in unit_test()
[all …]
H A Dcontrib_analyze.cpp211 struct tst : plus< pad_opt< alpha, digit > > {}; in unit_test()
/dports/net/mDNSResponder/mDNSResponder-1310.140.1/mDNSMacOSX/mdns_objects/
H A Dmdns_message.c379 dns_fixed_fields_opt1 * const pad_opt = (dns_fixed_fields_opt1 *)end; in _mdns_query_message_add_edns0_padding() local
380 const uint8_t * const pad_start = (const uint8_t *)&pad_opt[1]; in _mdns_query_message_add_edns0_padding()
381 dns_fixed_fields_opt1_set_type(pad_opt, kDNSRecordType_OPT); in _mdns_query_message_add_edns0_padding()
382 dns_fixed_fields_opt1_set_udp_payload_size(pad_opt, 512); in _mdns_query_message_add_edns0_padding()
383 dns_fixed_fields_opt1_set_rdlen(pad_opt, (uint16_t)(new_end - pad_opt->option_code)); in _mdns_query_message_add_edns0_padding()
384 dns_fixed_fields_opt1_set_option_code(pad_opt, kDNSEDNS0OptionCode_Padding); in _mdns_query_message_add_edns0_padding()
385 dns_fixed_fields_opt1_set_option_length(pad_opt, (uint16_t)(new_end - pad_start)); in _mdns_query_message_add_edns0_padding()
387 dns_fixed_fields_opt1_set_extended_flags(pad_opt, kDNSExtendedFlag_DNSSECOK); in _mdns_query_message_add_edns0_padding()
/dports/math/octave-forge-signal/signal-1.4.1/src/
H A Dmedfilt1.cc224 pad_opt_type pad_opt, sorted_window& sw) in medfilt1_vector() argument
227 (pad_opt == PAD_OPT_ZERO) ? (n - initial_fill) : 0); in medfilt1_vector()
230 if (pad_opt == PAD_OPT_ZERO) in medfilt1_vector()
259 if (pad_opt == PAD_OPT_ZERO) in medfilt1_vector()
309 pad_opt_type pad_opt = PAD_OPT_ZERO; variable
327 pad_opt = PAD_OPT_TRUNCATE;
447 initial_fill, pad_opt, sw);
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/internal/
H A Dpad_opt.hpp16 using pad_opt = seq< star< Pad >, opt< Rule, star< Pad > > >; typedef
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/internal/
H A Dpad_opt.hpp20 using pad_opt = seq< star< Pad >, opt< Rule, star< Pad > > >; typedef
/dports/math/vtk8/VTK-8.2.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/internal/
H A Dpad_opt.hpp20 using pad_opt = seq< star< Pad >, opt< Rule, star< Pad > > >; typedef
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/internal/
H A Dpad_opt.hpp20 using pad_opt = seq< star< Pad >, opt< Rule, star< Pad > > >; typedef
/dports/cad/opentimer/OpenTimer-18d28ff/ot/parser-spef/pegtl/pegtl/
H A Drules.hpp46 template< typename Rule, typename Pad > struct pad_opt : internal::pad_opt< Rule, Pad > {}; struct
/dports/math/vtk8/VTK-8.2.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/
H A Drules.hpp45 template< typename Rule, typename Pad > struct pad_opt : internal::pad_opt< Rule, Pad > {}; struct
/dports/math/vtk9/VTK-9.1.0/ThirdParty/pegtl/vtkpegtl/include/tao/pegtl/
H A Drules.hpp46 template< typename Rule, typename Pad > struct pad_opt : internal::pad_opt< Rule, Pad > {}; struct
/dports/devel/pegtl/PEGTL-3.0.0/include/tao/pegtl/
H A Drules.hpp45 template< typename Rule, typename Pad > struct pad_opt : internal::pad_opt< Rule, Pad > {}; struct
/dports/devel/pegtl/PEGTL-3.0.0/src/example/pegtl/
H A Dlua53.hpp201 …struct statement_return : tao::pegtl::seq< tao::pegtl::pad_opt< expr_list_must, sep >, tao::pegtl:…
215 …struct table_constructor : tao::pegtl::if_must< tao::pegtl::one< '{' >, tao::pegtl::pad_opt< table…
220 …struct function_body : tao::pegtl::seq< tao::pegtl::one< '(' >, tao::pegtl::pad_opt< parameter_lis…
225 …struct function_args_one : tao::pegtl::if_must< tao::pegtl::one< '(' >, tao::pegtl::pad_opt< expr_…
301 … expression, seps, tao::pegtl::one< ',' >, seps, expression, tao::pegtl::pad_opt< tao::pegtl::if_m…
/dports/lang/ocaml/ocaml-4.05.0/stdlib/
H A DcamlinternalFormat.ml62 let pad_of_pad_opt pad_opt = match pad_opt with
81 | Ignored_string pad_opt ->
83 | Ignored_caml_string pad_opt ->
85 | Ignored_int (iconv, pad_opt) ->
87 | Ignored_int32 (iconv, pad_opt) ->
90 | Ignored_nativeint (iconv, pad_opt) ->
93 | Ignored_int64 (iconv, pad_opt) ->
96 | Ignored_float (pad_opt, prec_opt) ->
101 | Ignored_format_arg (pad_opt, fmtty) ->
105 (Format_subst (pad_opt, fmtty, fmt))
[all …]
/dports/lang/ocaml-nox11/ocaml-4.05.0/stdlib/
H A DcamlinternalFormat.ml62 let pad_of_pad_opt pad_opt = match pad_opt with
81 | Ignored_string pad_opt ->
83 | Ignored_caml_string pad_opt ->
85 | Ignored_int (iconv, pad_opt) ->
87 | Ignored_int32 (iconv, pad_opt) ->
90 | Ignored_nativeint (iconv, pad_opt) ->
93 | Ignored_int64 (iconv, pad_opt) ->
96 | Ignored_float (pad_opt, prec_opt) ->
101 | Ignored_format_arg (pad_opt, fmtty) ->
105 (Format_subst (pad_opt, fmtty, fmt))
[all …]
/dports/lang/gcc6-aux/gcc-6-20180516/libgfortran/io/
H A Dopen.c95 static const st_option pad_opt[] = variable
717 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/lang/gcc48/gcc-4.8.5/libgfortran/io/
H A Dopen.c91 static const st_option pad_opt[] = variable
748 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libgfortran/io/
H A Dopen.c95 static const st_option pad_opt[] = variable
751 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/lang/gnat_util/gcc-6-20180516/libgfortran/io/
H A Dopen.c95 static const st_option pad_opt[] = variable
717 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/devel/mingw32-gcc/gcc-4.8.1/libgfortran/io/
H A Dopen.c91 static const st_option pad_opt[] = variable
748 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/lang/ocaml/ocaml-4.05.0/typing/
H A Dtypecore.ml3220 | Ignored_string pad_opt ->
3222 | Ignored_caml_string pad_opt ->
3224 | Ignored_int (iconv, pad_opt) ->
3226 | Ignored_int32 (iconv, pad_opt) ->
3228 | Ignored_nativeint (iconv, pad_opt) ->
3230 | Ignored_int64 (iconv, pad_opt) ->
3232 | Ignored_float (pad_opt, prec_opt) ->
3236 | Ignored_format_arg (pad_opt, fmtty) ->
3240 mk_int_opt pad_opt; mk_fmtty fmtty ]
3296 | Format_arg (pad_opt, fmtty, rest) ->
[all …]
/dports/lang/ocaml-nox11/ocaml-4.05.0/typing/
H A Dtypecore.ml3220 | Ignored_string pad_opt ->
3222 | Ignored_caml_string pad_opt ->
3224 | Ignored_int (iconv, pad_opt) ->
3226 | Ignored_int32 (iconv, pad_opt) ->
3228 | Ignored_nativeint (iconv, pad_opt) ->
3230 | Ignored_int64 (iconv, pad_opt) ->
3232 | Ignored_float (pad_opt, prec_opt) ->
3236 | Ignored_format_arg (pad_opt, fmtty) ->
3240 mk_int_opt pad_opt; mk_fmtty fmtty ]
3296 | Format_arg (pad_opt, fmtty, rest) ->
[all …]
/dports/lang/gcc8/gcc-8.5.0/libgfortran/io/
H A Dopen.c109 static const st_option pad_opt[] = variable
768 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/lang/gcc10/gcc-10.3.0/libgfortran/io/
H A Dopen.c110 static const st_option pad_opt[] = variable
774 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/libgfortran/io/
H A Dopen.c109 static const st_option pad_opt[] = variable
768 pad_opt, "Bad PAD parameter in OPEN statement"); in st_open()

1234