grpc 1.56.0 → 1.61.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Makefile +1296 -928
- data/include/grpc/event_engine/event_engine.h +84 -52
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +6 -0
- data/include/grpc/event_engine/internal/slice_cast.h +12 -0
- data/include/grpc/event_engine/memory_allocator.h +5 -3
- data/include/grpc/event_engine/slice.h +5 -0
- data/include/grpc/grpc_crl_provider.h +94 -0
- data/include/grpc/grpc_security.h +57 -1
- data/include/grpc/impl/call.h +29 -0
- data/include/grpc/impl/channel_arg_names.h +400 -0
- data/include/grpc/impl/grpc_types.h +1 -350
- data/include/grpc/impl/slice_type.h +1 -1
- data/include/grpc/module.modulemap +3 -0
- data/include/grpc/support/port_platform.h +103 -24
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +55 -15
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +20 -6
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +49 -46
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +18 -10
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +326 -0
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +143 -0
- data/src/core/ext/filters/client_channel/backend_metric.cc +2 -2
- data/src/core/ext/filters/client_channel/client_channel.cc +514 -82
- data/src/core/ext/filters/client_channel/client_channel.h +55 -14
- data/src/core/ext/filters/client_channel/client_channel_internal.h +2 -0
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +21 -8
- data/src/core/ext/filters/client_channel/connector.h +2 -3
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +0 -1
- data/src/core/ext/filters/client_channel/dynamic_filters.h +5 -3
- data/src/core/ext/filters/client_channel/global_subchannel_pool.cc +1 -1
- data/src/core/ext/filters/client_channel/http_proxy_mapper.cc +305 -0
- data/src/core/ext/filters/client_channel/http_proxy_mapper.h +53 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +60 -52
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +27 -12
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +32 -40
- data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.cc +187 -0
- data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.h +220 -0
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +0 -2
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +246 -231
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +20 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +4 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +4 -3
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +3 -1
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +90 -25
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +3 -5
- data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +27 -9
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +13 -6
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +257 -210
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +0 -21
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +898 -213
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +36 -0
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +19 -37
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +488 -492
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +3 -5
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +63 -101
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +416 -37
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +37 -58
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +893 -76
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +25 -51
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +507 -523
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +255 -185
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +16 -58
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +807 -308
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.h +2 -6
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +18 -81
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +5 -6
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +12 -15
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +105 -175
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +46 -33
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +11 -7
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +6 -0
- data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +112 -73
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +3 -4
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +76 -189
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +46 -27
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +2 -2
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +17 -13
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +1 -0
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +31 -19
- data/src/core/ext/filters/client_channel/resolver/xds/xds_dependency_manager.cc +1031 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_dependency_manager.h +277 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +474 -560
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver_attributes.h +62 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver_trace.cc +25 -0
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver_trace.h +30 -0
- data/src/core/ext/filters/client_channel/retry_filter.cc +40 -2499
- data/src/core/ext/filters/client_channel/retry_filter.h +92 -1
- data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2051 -0
- data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
- data/src/core/ext/filters/client_channel/retry_service_config.cc +1 -1
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +62 -70
- data/src/core/ext/filters/client_channel/subchannel.cc +47 -9
- data/src/core/ext/filters/client_channel/subchannel.h +20 -5
- data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
- data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +0 -1
- data/src/core/ext/filters/deadline/deadline_filter.cc +21 -24
- data/src/core/ext/filters/deadline/deadline_filter.h +0 -4
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +18 -13
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +13 -4
- data/src/core/ext/filters/http/client/http_client_filter.cc +30 -39
- data/src/core/ext/filters/http/client/http_client_filter.h +10 -5
- data/src/core/ext/filters/http/client_authority_filter.cc +23 -25
- data/src/core/ext/filters/http/client_authority_filter.h +12 -4
- data/src/core/ext/filters/http/http_filters_plugin.cc +58 -38
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +56 -84
- data/src/core/ext/filters/http/message_compress/compression_filter.h +54 -12
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +325 -0
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +139 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +55 -53
- data/src/core/ext/filters/http/server/http_server_filter.h +11 -4
- data/src/core/ext/filters/message_size/message_size_filter.cc +79 -108
- data/src/core/ext/filters/message_size/message_size_filter.h +35 -23
- data/src/core/ext/filters/rbac/rbac_filter.cc +46 -113
- data/src/core/ext/filters/rbac/rbac_filter.h +18 -29
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +4 -7
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +26 -13
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +179 -108
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +42 -14
- data/src/core/ext/gcp/metadata_query.cc +0 -1
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +1 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +5 -7
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +36 -36
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +1118 -1059
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +47 -4
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +12 -2
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +56 -88
- data/src/core/ext/transport/chttp2/transport/flow_control.h +85 -12
- data/src/core/ext/transport/chttp2/transport/frame.cc +506 -0
- data/src/core/ext/transport/chttp2/transport/frame.h +193 -22
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +4 -3
- data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +0 -2
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +23 -20
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +10 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -1
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +34 -82
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +5 -8
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -1
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +16 -22
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +7 -3
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +3 -4
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +184 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +351 -0
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +640 -547
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +160 -12
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +47 -33
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +19 -5
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +122 -32
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +142 -37
- data/src/core/ext/transport/chttp2/transport/internal.h +227 -165
- data/src/core/ext/transport/chttp2/transport/legacy_frame.h +43 -0
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +44 -0
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +67 -0
- data/src/core/ext/transport/chttp2/transport/parsing.cc +168 -60
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +90 -0
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +59 -0
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +108 -0
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +115 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +120 -0
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +88 -0
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +1 -1
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +60 -0
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +66 -0
- data/src/core/ext/transport/chttp2/transport/writing.cc +226 -178
- data/src/core/ext/transport/inproc/inproc_transport.cc +163 -1229
- data/src/core/ext/transport/inproc/inproc_transport.h +0 -4
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +1303 -0
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +30 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +725 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +149 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +827 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +180 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +733 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +157 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +2772 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +532 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +48 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +248 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +66 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +280 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +74 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +162 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +56 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +122 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +49 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +117 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +49 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +928 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +150 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +117 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +122 -0
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +58 -0
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +109 -0
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +1753 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +375 -0
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +45 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +3420 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +612 -0
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +49 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +526 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +125 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +3890 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +729 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +53 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +117 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +659 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +123 -0
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +1830 -0
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +395 -0
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +44 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +1041 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +224 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +37 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +129 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +2420 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +577 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +53 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +1130 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +225 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +110 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +116 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +53 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +250 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +68 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +1688 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +378 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +43 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +1938 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +315 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +144 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +2245 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +481 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +45 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +238 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +70 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +232 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +72 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +287 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +76 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +255 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +66 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +129 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +489 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +138 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +993 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +229 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +911 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +179 -0
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +101 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +1613 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +268 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +39 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +1447 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +260 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +327 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +86 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +197 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +77 -0
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +183 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +64 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +974 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +219 -0
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +37 -0
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +1183 -0
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +250 -0
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +39 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +1704 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +348 -0
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +40 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +857 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +133 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +9666 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +1667 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +87 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +341 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +97 -0
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +1515 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +325 -0
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +41 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +119 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +118 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +190 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +73 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +202 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +62 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +409 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +81 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +115 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +102 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +254 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +85 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +49 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +33 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +39 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +256 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +87 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +201 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +65 -0
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +2691 -0
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +555 -0
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +45 -0
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +134 -0
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +46 -0
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +428 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +116 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +656 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +141 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +266 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +87 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +462 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +101 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +194 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +72 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +3943 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +679 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +50 -0
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +101 -0
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +239 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +67 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +488 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +86 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +44 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +250 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +68 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +101 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +39 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +28 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +1469 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +262 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +361 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +108 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +1467 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +267 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +217 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +72 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +712 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +151 -0
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +73 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +38 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +2141 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +402 -0
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +43 -0
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +324 -0
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +84 -0
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +925 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +183 -0
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +131 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +312 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +86 -0
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +124 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +53 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +299 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +105 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +260 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +76 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +166 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +130 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +54 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +110 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +271 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +96 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +109 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +43 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +306 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +81 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +230 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +70 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +347 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +92 -0
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +525 -0
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +127 -0
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +506 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +139 -0
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +34 -0
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +227 -0
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +76 -0
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +38 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +26 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +29 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +148 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +46 -0
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +162 -0
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +64 -0
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +238 -0
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +84 -0
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +232 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +75 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +42 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +26 -0
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +29 -0
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +117 -0
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +49 -0
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +146 -0
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +57 -0
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +56 -0
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +38 -0
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +1743 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +369 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +42 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +1829 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +399 -0
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +43 -0
- data/src/core/ext/upb-gen/google/api/http.upb.h +496 -0
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +111 -0
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +165 -0
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +99 -0
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +46 -0
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +6397 -0
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +1357 -0
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +78 -0
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +99 -0
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +46 -0
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +69 -0
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +35 -0
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +422 -0
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +115 -0
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +99 -0
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +46 -0
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +508 -0
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +163 -0
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +165 -0
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +385 -0
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +106 -0
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +237 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +79 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +1658 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +342 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +41 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +197 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +69 -0
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +144 -0
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +58 -0
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +877 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +221 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +297 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +92 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +1333 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +243 -0
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +322 -0
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +118 -0
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +37 -0
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +125 -0
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +59 -0
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +55 -0
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +37 -0
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +131 -0
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +58 -0
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +109 -0
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/validate/validate.upb.h +6507 -0
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +943 -0
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +57 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +322 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +118 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +37 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +125 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +59 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +55 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +37 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +336 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +117 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +36 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +109 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +87 -0
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +45 -0
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +116 -0
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +53 -0
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +234 -0
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +78 -0
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +134 -0
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +62 -0
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +115 -0
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +144 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +55 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +331 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +84 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +146 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +59 -0
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +350 -0
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +126 -0
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +33 -0
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +161 -0
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +101 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +50 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +263 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +72 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +71 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +36 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +30 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +282 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +75 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +1107 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +265 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +39 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +726 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +157 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +35 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +159 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +58 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +304 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +79 -0
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +233 -0
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +79 -0
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +31 -0
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +235 -0
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +82 -0
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +114 -0
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +51 -0
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +30 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +83 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +127 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +101 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +276 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +125 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +42 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +48 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +141 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +37 -0
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +233 -0
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +110 -0
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +422 -0
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +130 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +97 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +566 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +150 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +137 -0
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +205 -0
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +105 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +131 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +270 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +150 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +167 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +236 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +244 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +75 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +310 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +110 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +54 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +69 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +48 -0
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +98 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +139 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +135 -0
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +231 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +80 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +189 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +100 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +70 -0
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +75 -0
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +124 -0
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +70 -0
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +141 -0
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +80 -0
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +222 -0
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +85 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +122 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +979 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +320 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +76 -0
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +198 -0
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +90 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +71 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +98 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +70 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +74 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +78 -0
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +401 -0
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +110 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +91 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +122 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +79 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +104 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +601 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +135 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +49 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +214 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +90 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +257 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +57 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +133 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +57 -0
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +199 -0
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +75 -0
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +154 -0
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +54 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +70 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +39 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +64 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +57 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +74 -0
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +77 -0
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +65 -0
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +84 -0
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +55 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +52 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +93 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +47 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +68 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +38 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +43 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +56 -0
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +39 -0
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +153 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +95 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +152 -0
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +100 -0
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +38 -0
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +33 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +488 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +190 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +34 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +31 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +34 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +75 -0
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +36 -0
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +66 -0
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +98 -0
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +75 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +61 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +33 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +38 -0
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +282 -0
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +145 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +62 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +46 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +34 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +30 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +63 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +50 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +39 -0
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +37 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +38 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +44 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +42 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +35 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +54 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +125 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +80 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +70 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +60 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +39 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +59 -0
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +35 -0
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +36 -0
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +35 -0
- data/src/core/ext/xds/certificate_provider_store.cc +2 -1
- data/src/core/ext/xds/certificate_provider_store.h +0 -5
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -1
- data/src/core/ext/xds/xds_api.cc +31 -19
- data/src/core/ext/xds/xds_api.h +2 -2
- data/src/core/ext/xds/xds_bootstrap.h +3 -0
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +33 -31
- data/src/core/ext/xds/xds_bootstrap_grpc.h +5 -13
- data/src/core/ext/xds/xds_certificate_provider.cc +88 -287
- data/src/core/ext/xds/xds_certificate_provider.h +44 -111
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +17 -28
- data/src/core/ext/xds/xds_channel_stack_modifier.h +3 -5
- data/src/core/ext/xds/xds_client.cc +425 -421
- data/src/core/ext/xds/xds_client.h +32 -23
- data/src/core/ext/xds/xds_client_grpc.cc +15 -7
- data/src/core/ext/xds/xds_client_grpc.h +16 -2
- data/src/core/ext/xds/xds_client_stats.h +10 -1
- data/src/core/ext/xds/xds_cluster.cc +159 -68
- data/src/core/ext/xds/xds_cluster.h +11 -5
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +9 -5
- data/src/core/ext/xds/xds_common_types.cc +14 -11
- data/src/core/ext/xds/xds_endpoint.cc +106 -70
- data/src/core/ext/xds/xds_endpoint.h +7 -4
- data/src/core/ext/xds/xds_health_status.cc +13 -18
- data/src/core/ext/xds/xds_health_status.h +10 -28
- data/src/core/ext/xds/xds_http_fault_filter.cc +1 -2
- data/src/core/ext/xds/xds_http_fault_filter.h +1 -2
- data/src/core/ext/xds/xds_http_filters.cc +1 -5
- data/src/core/ext/xds/xds_http_filters.h +2 -4
- data/src/core/ext/xds/xds_http_rbac_filter.cc +8 -11
- data/src/core/ext/xds/xds_http_rbac_filter.h +1 -2
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +2 -6
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -2
- data/src/core/ext/xds/xds_lb_policy_registry.cc +36 -0
- data/src/core/ext/xds/xds_listener.cc +29 -25
- data/src/core/ext/xds/xds_listener.h +13 -3
- data/src/core/ext/xds/xds_resource_type.h +1 -7
- data/src/core/ext/xds/xds_resource_type_impl.h +11 -11
- data/src/core/ext/xds/xds_route_config.cc +48 -34
- data/src/core/ext/xds/xds_route_config.h +2 -1
- data/src/core/ext/xds/xds_routing.cc +2 -2
- data/src/core/ext/xds/xds_server_config_fetcher.cc +110 -81
- data/src/core/ext/xds/xds_transport.h +3 -0
- data/src/core/ext/xds/xds_transport_grpc.cc +61 -54
- data/src/core/ext/xds/xds_transport_grpc.h +4 -0
- data/src/core/lib/address_utils/parse_address.cc +63 -1
- data/src/core/lib/address_utils/parse_address.h +8 -0
- data/src/core/lib/address_utils/sockaddr_utils.cc +46 -2
- data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
- data/src/core/lib/avl/avl.h +11 -173
- data/src/core/lib/backoff/random_early_detection.cc +4 -2
- data/src/core/lib/backoff/random_early_detection.h +7 -4
- data/src/core/lib/channel/call_tracer.cc +315 -1
- data/src/core/lib/channel/call_tracer.h +63 -4
- data/src/core/lib/channel/channel_args.cc +109 -84
- data/src/core/lib/channel/channel_args.h +105 -29
- data/src/core/lib/channel/channel_args_preconditioning.cc +0 -1
- data/src/core/lib/channel/channel_stack.cc +36 -1
- data/src/core/lib/channel/channel_stack.h +10 -10
- data/src/core/lib/channel/channel_stack_builder.h +4 -15
- data/src/core/lib/channel/channel_stack_builder_impl.cc +1 -19
- data/src/core/lib/channel/channel_stack_trace.cc +19 -0
- data/src/core/lib/channel/channel_stack_trace.h +24 -0
- data/src/core/lib/channel/channel_trace.cc +1 -1
- data/src/core/lib/channel/channelz_registry.h +4 -2
- data/src/core/lib/channel/connected_channel.cc +144 -83
- data/src/core/lib/channel/context.h +3 -0
- data/src/core/lib/channel/promise_based_filter.cc +19 -7
- data/src/core/lib/channel/promise_based_filter.h +1044 -3
- data/src/core/lib/channel/server_call_tracer_filter.cc +43 -42
- data/src/core/lib/channel/status_util.cc +0 -1
- data/src/core/lib/channel/tcp_tracer.h +140 -0
- data/src/core/lib/compression/compression_internal.cc +10 -7
- data/src/core/lib/config/config_vars.cc +0 -1
- data/src/core/lib/config/config_vars.h +1 -1
- data/src/core/lib/config/config_vars_non_generated.cc +0 -2
- data/src/core/lib/config/core_configuration.cc +2 -2
- data/src/core/lib/config/core_configuration.h +5 -4
- data/src/core/lib/debug/stats_data.cc +202 -35
- data/src/core/lib/debug/stats_data.h +102 -0
- data/src/core/lib/debug/trace.cc +1 -4
- data/src/core/lib/event_engine/ares_resolver.cc +747 -0
- data/src/core/lib/event_engine/ares_resolver.h +151 -0
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +13 -3
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +4 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +5 -2
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +3 -0
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +3 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +249 -0
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +120 -0
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +2 -0
- data/src/core/lib/event_engine/event_engine.cc +0 -14
- data/src/core/lib/event_engine/forkable.cc +65 -65
- data/src/core/lib/event_engine/forkable.h +46 -25
- data/src/core/lib/event_engine/grpc_polled_fd.h +92 -0
- data/src/core/lib/event_engine/handle_containers.h +0 -4
- data/src/core/lib/event_engine/nameser.h +102 -0
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +10 -14
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +2 -3
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +39 -24
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +12 -10
- data/src/core/lib/event_engine/posix_engine/event_poller.h +3 -1
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +23 -4
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +3 -1
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +205 -0
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +0 -2
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +132 -0
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +61 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +29 -16
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +3 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +113 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +36 -29
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +66 -27
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +5 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +15 -5
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +53 -7
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +13 -0
- data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +17 -27
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +0 -3
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +0 -1
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +55 -0
- data/src/core/lib/event_engine/shim.cc +4 -2
- data/src/core/lib/event_engine/slice_buffer.cc +0 -1
- data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -8
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
- data/src/core/lib/event_engine/thread_pool/thread_count.h +176 -0
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +19 -10
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +138 -100
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +22 -48
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +12 -21
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +8 -12
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +823 -0
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +75 -0
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +114 -0
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.h +51 -0
- data/src/core/lib/event_engine/windows/win_socket.cc +20 -13
- data/src/core/lib/event_engine/windows/win_socket.h +19 -7
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +75 -76
- data/src/core/lib/event_engine/windows/windows_endpoint.h +15 -12
- data/src/core/lib/event_engine/windows/windows_engine.cc +85 -39
- data/src/core/lib/event_engine/windows/windows_engine.h +24 -14
- data/src/core/lib/event_engine/windows/windows_listener.cc +2 -3
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +2 -0
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +4 -1
- data/src/core/lib/event_engine/work_queue/work_queue.h +4 -0
- data/src/core/lib/experiments/config.cc +96 -23
- data/src/core/lib/experiments/config.h +23 -8
- data/src/core/lib/experiments/experiments.cc +712 -60
- data/src/core/lib/experiments/experiments.h +335 -46
- data/src/core/lib/gpr/alloc.cc +1 -0
- data/src/core/lib/gprpp/debug_location.h +13 -0
- data/src/core/lib/gprpp/directory_reader.h +48 -0
- data/src/core/lib/gprpp/dual_ref_counted.h +45 -16
- data/src/core/lib/gprpp/fork.cc +8 -9
- data/src/core/lib/gprpp/fork.h +7 -6
- data/src/core/lib/gprpp/host_port.cc +0 -2
- data/src/core/lib/gprpp/if_list.h +4530 -0
- data/src/core/lib/gprpp/manual_constructor.h +1 -2
- data/src/core/lib/gprpp/match.h +1 -1
- data/src/core/lib/gprpp/no_destruct.h +1 -1
- data/src/core/lib/gprpp/orphanable.h +30 -3
- data/src/core/lib/gprpp/per_cpu.cc +2 -0
- data/src/core/lib/gprpp/per_cpu.h +36 -7
- data/src/core/lib/gprpp/posix/directory_reader.cc +82 -0
- data/src/core/lib/gprpp/posix/stat.cc +0 -1
- data/src/core/lib/gprpp/ref_counted.h +72 -29
- data/src/core/lib/gprpp/ref_counted_ptr.h +133 -27
- data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
- data/src/core/lib/gprpp/ref_counted_string.h +161 -0
- data/src/core/lib/gprpp/sorted_pack.h +3 -12
- data/src/core/lib/gprpp/status_helper.cc +1 -3
- data/src/core/lib/gprpp/status_helper.h +16 -15
- data/src/core/lib/gprpp/strerror.cc +0 -2
- data/src/core/lib/gprpp/time.cc +0 -1
- data/src/core/lib/gprpp/time.h +13 -1
- data/src/core/lib/gprpp/type_list.h +32 -0
- data/src/core/lib/gprpp/validation_errors.cc +0 -1
- data/src/core/lib/gprpp/windows/directory_reader.cc +80 -0
- data/src/core/lib/gprpp/work_serializer.cc +323 -12
- data/src/core/lib/gprpp/work_serializer.h +30 -9
- data/src/core/lib/gprpp/xxhash_inline.h +29 -0
- data/src/core/lib/http/format_request.cc +0 -1
- data/src/core/lib/http/httpcli.cc +0 -2
- data/src/core/lib/http/httpcli.h +6 -9
- data/src/core/lib/http/httpcli_security_connector.cc +1 -0
- data/src/core/lib/iomgr/buffer_list.cc +2 -0
- data/src/core/lib/iomgr/combiner.cc +24 -18
- data/src/core/lib/iomgr/combiner.h +8 -3
- data/src/core/lib/iomgr/error.cc +32 -2
- data/src/core/lib/iomgr/error.h +9 -10
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +5 -7
- data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +42 -26
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +16 -0
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +3 -2
- data/src/core/lib/iomgr/exec_ctx.cc +12 -0
- data/src/core/lib/iomgr/exec_ctx.h +66 -19
- data/src/core/lib/iomgr/polling_entity.cc +10 -0
- data/src/core/lib/iomgr/polling_entity.h +2 -0
- data/src/core/lib/iomgr/pollset.h +4 -5
- data/src/core/lib/iomgr/port.h +24 -0
- data/src/core/lib/iomgr/resolve_address.cc +13 -1
- data/src/core/lib/iomgr/resolve_address.h +17 -3
- data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +42 -0
- data/src/core/lib/iomgr/socket_utils_posix.cc +2 -0
- data/src/core/lib/iomgr/socket_utils_posix.h +6 -0
- data/src/core/lib/iomgr/tcp_client_posix.cc +8 -4
- data/src/core/lib/iomgr/tcp_posix.cc +48 -22
- data/src/core/lib/iomgr/tcp_server_posix.cc +37 -14
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +12 -0
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +26 -2
- data/src/core/lib/iomgr/tcp_windows.cc +1 -3
- data/src/core/lib/iomgr/timer_manager.cc +7 -1
- data/src/core/lib/iomgr/timer_manager.h +2 -0
- data/src/core/lib/iomgr/vsock.cc +59 -0
- data/src/core/lib/iomgr/vsock.h +38 -0
- data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
- data/src/core/lib/json/json_object_loader.h +0 -1
- data/src/core/lib/json/json_reader.cc +0 -1
- data/src/core/lib/load_balancing/delegating_helper.h +116 -0
- data/src/core/lib/load_balancing/lb_policy.h +38 -14
- data/src/core/lib/load_balancing/lb_policy_registry.cc +0 -1
- data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
- data/src/core/lib/matchers/matchers.cc +0 -1
- data/src/core/lib/promise/activity.cc +17 -3
- data/src/core/lib/promise/activity.h +5 -4
- data/src/core/lib/promise/all_ok.h +80 -0
- data/src/core/lib/promise/arena_promise.h +5 -1
- data/src/core/lib/promise/cancel_callback.h +0 -2
- data/src/core/lib/promise/context.h +0 -1
- data/src/core/lib/promise/detail/basic_seq.h +1 -372
- data/src/core/lib/promise/detail/join_state.h +2077 -0
- data/src/core/lib/promise/detail/promise_like.h +8 -1
- data/src/core/lib/promise/detail/seq_state.h +5801 -0
- data/src/core/lib/promise/detail/status.h +42 -5
- data/src/core/lib/promise/for_each.h +13 -3
- data/src/core/lib/promise/if.h +4 -1
- data/src/core/lib/promise/interceptor_list.h +0 -1
- data/src/core/lib/promise/latch.h +7 -5
- data/src/core/lib/promise/loop.h +9 -6
- data/src/core/lib/promise/map.h +0 -1
- data/src/core/lib/promise/party.cc +33 -33
- data/src/core/lib/promise/party.h +143 -8
- data/src/core/lib/promise/pipe.h +28 -27
- data/src/core/lib/promise/poll.h +43 -19
- data/src/core/lib/promise/prioritized_race.h +0 -1
- data/src/core/lib/promise/promise.h +4 -1
- data/src/core/lib/promise/race.h +0 -1
- data/src/core/lib/promise/seq.h +124 -8
- data/src/core/lib/promise/sleep.h +5 -10
- data/src/core/lib/promise/status_flag.h +196 -0
- data/src/core/lib/promise/try_join.h +71 -21
- data/src/core/lib/promise/try_seq.h +161 -7
- data/src/core/lib/resolver/endpoint_addresses.cc +147 -0
- data/src/core/lib/resolver/endpoint_addresses.h +164 -0
- data/src/core/lib/resolver/resolver.h +4 -3
- data/src/core/lib/resolver/resolver_factory.h +3 -2
- data/src/core/lib/resolver/resolver_registry.cc +0 -2
- data/src/core/lib/resolver/server_address.h +5 -109
- data/src/core/lib/resource_quota/api.cc +1 -0
- data/src/core/lib/resource_quota/arena.cc +2 -0
- data/src/core/lib/resource_quota/arena.h +44 -10
- data/src/core/lib/resource_quota/memory_quota.cc +128 -21
- data/src/core/lib/resource_quota/memory_quota.h +13 -13
- data/src/core/lib/resource_quota/resource_quota.h +1 -0
- data/src/core/lib/security/authorization/audit_logging.cc +0 -1
- data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +15 -12
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +14 -5
- data/src/core/lib/security/authorization/matchers.cc +0 -1
- data/src/core/lib/security/authorization/rbac_policy.cc +0 -2
- data/src/core/lib/security/authorization/rbac_policy.h +1 -1
- data/src/core/lib/security/authorization/stdout_logger.cc +0 -1
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +0 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +2 -2
- data/src/core/lib/security/credentials/composite/composite_credentials.h +4 -2
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +4 -1
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -2
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +68 -23
- data/src/core/lib/security/credentials/external/external_account_credentials.h +10 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +4 -0
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +5 -3
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +4 -0
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
- data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +1 -1
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +0 -1
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +0 -2
- data/src/core/lib/security/credentials/jwt/json_token.cc +17 -0
- data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +0 -1
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +43 -2
- data/src/core/lib/security/credentials/local/local_credentials.cc +0 -2
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +0 -1
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +2 -2
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +116 -10
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +0 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +86 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +0 -55
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +0 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +2 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +41 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +28 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +255 -0
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +129 -0
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +27 -2
- data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
- data/src/core/lib/security/credentials/tls/tls_utils.cc +2 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +22 -29
- data/src/core/lib/security/credentials/xds/xds_credentials.h +2 -4
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +1 -0
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -1
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +7 -59
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -1
- data/src/core/lib/security/security_connector/ssl_utils.cc +11 -3
- data/src/core/lib/security/security_connector/ssl_utils.h +5 -1
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +8 -19
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +2 -2
- data/src/core/lib/security/transport/auth_filters.h +71 -4
- data/src/core/lib/security/transport/client_auth_filter.cc +9 -9
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +244 -0
- data/src/core/lib/security/transport/secure_endpoint.cc +3 -6
- data/src/core/lib/security/transport/security_handshaker.cc +2 -3
- data/src/core/lib/security/transport/server_auth_filter.cc +70 -92
- data/src/core/lib/service_config/service_config_call_data.h +5 -0
- data/src/core/lib/slice/slice.h +27 -0
- data/src/core/lib/slice/slice_buffer.cc +15 -0
- data/src/core/lib/slice/slice_buffer.h +19 -4
- data/src/core/lib/slice/slice_refcount.h +1 -1
- data/src/core/lib/surface/builtins.cc +6 -25
- data/src/core/lib/surface/call.cc +852 -247
- data/src/core/lib/surface/call.h +30 -13
- data/src/core/lib/surface/call_log_batch.cc +0 -2
- data/src/core/lib/surface/call_trace.cc +42 -2
- data/src/core/lib/surface/channel.cc +12 -10
- data/src/core/lib/surface/channel.h +2 -8
- data/src/core/lib/surface/channel_init.cc +367 -14
- data/src/core/lib/surface/channel_init.h +177 -28
- data/src/core/lib/surface/completion_queue.cc +4 -1
- data/src/core/lib/surface/event_string.cc +0 -1
- data/src/core/lib/surface/init.cc +21 -47
- data/src/core/lib/surface/lame_client.cc +8 -1
- data/src/core/lib/surface/server.cc +519 -300
- data/src/core/lib/surface/server.h +68 -44
- data/src/core/lib/surface/validate_metadata.cc +37 -22
- data/src/core/lib/surface/validate_metadata.h +13 -3
- data/src/core/lib/surface/version.cc +2 -2
- data/src/core/lib/surface/wait_for_cq_end_op.h +94 -0
- data/src/core/lib/transport/batch_builder.cc +7 -9
- data/src/core/lib/transport/batch_builder.h +1 -3
- data/src/core/lib/transport/bdp_estimator.cc +2 -2
- data/src/core/lib/transport/bdp_estimator.h +2 -2
- data/src/core/lib/transport/call_final_info.cc +38 -0
- data/src/core/lib/transport/call_final_info.h +54 -0
- data/src/core/lib/transport/connectivity_state.cc +3 -4
- data/src/core/lib/transport/connectivity_state.h +4 -0
- data/src/core/lib/transport/error_utils.cc +0 -2
- data/src/core/lib/transport/handshaker.cc +0 -2
- data/src/core/lib/transport/metadata_batch.cc +12 -7
- data/src/core/lib/transport/metadata_batch.h +122 -50
- data/src/core/lib/transport/parsed_metadata.h +32 -20
- data/src/core/lib/transport/simple_slice_based_metadata.h +8 -2
- data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -1
- data/src/core/lib/transport/timeout_encoding.h +2 -2
- data/src/core/lib/transport/transport.cc +80 -67
- data/src/core/lib/transport/transport.h +504 -91
- data/src/core/lib/transport/transport_fwd.h +3 -1
- data/src/core/lib/transport/transport_op_string.cc +0 -2
- data/src/core/lib/uri/uri_parser.cc +0 -1
- data/src/core/plugin_registry/grpc_plugin_registry.cc +5 -0
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +0 -3
- data/src/core/tsi/alts/crypt/aes_gcm.cc +142 -89
- data/src/core/tsi/alts/crypt/gsec.h +387 -319
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +11 -7
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +1 -1
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +5 -7
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +1 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -13
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +26 -25
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +9 -1
- data/src/core/tsi/ssl_transport_security.cc +233 -69
- data/src/core/tsi/ssl_transport_security.h +36 -2
- data/src/ruby/bin/math_pb.rb +24 -18
- data/src/ruby/ext/grpc/extconf.rb +73 -10
- data/src/ruby/ext/grpc/rb_call.c +62 -39
- data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_channel.c +109 -84
- data/src/ruby/ext/grpc/rb_channel.h +1 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +21 -3
- data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
- data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
- data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
- data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
- data/src/ruby/ext/grpc/rb_grpc.c +192 -31
- data/src/ruby/ext/grpc/rb_grpc.h +8 -4
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +10 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +15 -0
- data/src/ruby/ext/grpc/rb_server.c +62 -45
- data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
- data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
- data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +33 -111
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
- data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +22 -0
- data/src/ruby/pb/test/client.rb +16 -0
- data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
- data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
- data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
- data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
- data/third_party/abseil-cpp/absl/base/casts.h +8 -8
- data/third_party/abseil-cpp/absl/base/config.h +89 -106
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
- data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
- data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
- data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
- data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
- data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
- data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
- data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +1 -1
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +2 -2
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +16 -15
- data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +1 -1
- data/third_party/abseil-cpp/absl/flags/marshalling.cc +43 -2
- data/third_party/abseil-cpp/absl/flags/marshalling.h +5 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
- data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
- data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
- data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
- data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
- data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
- data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +185 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
- data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
- data/third_party/abseil-cpp/absl/status/status.cc +11 -7
- data/third_party/abseil-cpp/absl/status/status.h +11 -2
- data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
- data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
- data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
- data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
- data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
- data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
- data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
- data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +15 -13
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
- data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
- data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
- data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
- data/third_party/abseil-cpp/absl/strings/match.h +19 -0
- data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
- data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
- data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
- data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
- data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
- data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
- data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
- data/third_party/abseil-cpp/absl/time/time.cc +9 -2
- data/third_party/abseil-cpp/absl/time/time.h +115 -15
- data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
- data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
- data/third_party/abseil-cpp/absl/types/optional.h +15 -13
- data/third_party/abseil-cpp/absl/types/span.h +1 -2
- data/third_party/boringssl-with-bazel/err_data.c +554 -553
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +34 -1
- data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +11 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/bio/errno.c +92 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +5 -49
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +18 -13
- data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +11 -2
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +31 -192
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +8 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_fuchsia.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_win.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +0 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +0 -2
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +49 -46
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_64_adx.c +18 -0
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2809 -7417
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +27 -5
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +5 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +20 -0
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +110 -72
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +24 -28
- data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +4 -6
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +23 -21
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +35 -12
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +3 -7
- data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +34 -72
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +12 -5
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +12 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +17 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +51 -15
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +37 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +9 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +180 -404
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +24 -57
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +33 -71
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +18 -17
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +5 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +15 -18
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +9 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +11 -27
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +8 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +4 -4
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +9 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/hkdf.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +40 -26
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +21 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +38 -19
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +2 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +55 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +33 -52
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +42 -24
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +4 -7
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +211 -100
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +5 -4
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +7 -8
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +25 -46
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +52 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +34 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +38 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
- data/third_party/boringssl-with-bazel/src/crypto/refcount.c +59 -0
- data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +152 -72
- data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
- data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +6 -35
- data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +5 -26
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +14 -18
- data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +54 -143
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +8 -19
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +1 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +2 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +8 -12
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +19 -20
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +11 -15
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +2 -3
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +4 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +4 -119
- data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +5 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -116
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +11 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +0 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +5 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +4 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +0 -21
- data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +28 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +19 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +11 -7
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +6 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +13 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +0 -61
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +22 -20
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +131 -81
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +236 -213
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +201 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -29
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +4 -8
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +3 -2
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +9 -65
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +20 -20
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +4 -11
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +26 -20
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +4 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +37 -30
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +127 -26
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +2 -3
- data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
- data/third_party/upb/upb/base/descriptor_constants.h +7 -27
- data/third_party/upb/upb/base/internal/log2.h +38 -0
- data/third_party/upb/upb/base/status.c +6 -26
- data/third_party/upb/upb/base/status.h +6 -26
- data/third_party/upb/upb/base/status.hpp +50 -0
- data/third_party/upb/upb/base/string_view.h +11 -28
- data/third_party/upb/upb/generated_code_support.h +33 -0
- data/third_party/upb/upb/hash/common.c +12 -44
- data/third_party/upb/upb/hash/common.h +16 -41
- data/third_party/upb/upb/hash/int_table.h +6 -26
- data/third_party/upb/upb/hash/str_table.h +7 -26
- data/third_party/upb/upb/json/decode.c +31 -28
- data/third_party/upb/upb/json/decode.h +32 -29
- data/third_party/upb/upb/json/encode.c +31 -28
- data/third_party/upb/upb/json/encode.h +35 -32
- data/third_party/upb/upb/lex/atoi.c +6 -26
- data/third_party/upb/upb/lex/atoi.h +8 -26
- data/third_party/upb/upb/lex/round_trip.c +6 -26
- data/third_party/upb/upb/lex/round_trip.h +6 -26
- data/third_party/upb/upb/lex/strtod.c +6 -26
- data/third_party/upb/upb/lex/strtod.h +6 -26
- data/third_party/upb/upb/lex/unicode.c +6 -26
- data/third_party/upb/upb/lex/unicode.h +8 -26
- data/third_party/upb/upb/mem/alloc.c +6 -26
- data/third_party/upb/upb/mem/alloc.h +6 -26
- data/third_party/upb/upb/mem/arena.c +30 -29
- data/third_party/upb/upb/mem/arena.h +16 -44
- data/third_party/upb/upb/mem/arena.hpp +54 -0
- data/third_party/upb/upb/mem/internal/arena.h +94 -0
- data/third_party/upb/upb/message/accessors.c +34 -31
- data/third_party/upb/upb/message/accessors.h +58 -57
- data/third_party/upb/upb/message/array.c +154 -0
- data/third_party/upb/upb/message/array.h +98 -0
- data/third_party/upb/upb/message/internal/accessors.h +367 -0
- data/third_party/upb/upb/message/internal/array.h +138 -0
- data/third_party/upb/upb/message/internal/extension.h +63 -0
- data/third_party/upb/upb/message/internal/map.h +173 -0
- data/third_party/upb/upb/message/internal/map_entry.h +66 -0
- data/third_party/upb/upb/message/internal/map_sorter.h +112 -0
- data/third_party/upb/upb/message/internal/message.h +106 -0
- data/third_party/upb/upb/message/internal/types.h +23 -0
- data/third_party/upb/upb/message/map.c +145 -0
- data/third_party/upb/upb/message/map.h +147 -0
- data/third_party/upb/upb/message/map_gencode_util.h +81 -0
- data/third_party/upb/upb/message/map_sorter.c +170 -0
- data/third_party/upb/upb/message/message.c +8 -34
- data/third_party/upb/upb/message/message.h +10 -27
- data/third_party/upb/upb/message/tagged_ptr.h +69 -0
- data/third_party/upb/upb/message/types.h +15 -0
- data/third_party/upb/upb/message/value.h +46 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.c +130 -0
- data/third_party/upb/upb/mini_descriptor/build_enum.h +42 -0
- data/third_party/upb/upb/mini_descriptor/decode.c +870 -0
- data/third_party/upb/upb/mini_descriptor/decode.h +120 -0
- data/third_party/upb/upb/mini_descriptor/internal/base92.c +26 -0
- data/third_party/upb/upb/mini_descriptor/internal/base92.h +63 -0
- data/third_party/upb/upb/mini_descriptor/internal/decoder.h +53 -0
- data/third_party/upb/upb/mini_descriptor/internal/encode.c +323 -0
- data/third_party/upb/upb/mini_descriptor/internal/encode.h +92 -0
- data/third_party/upb/upb/mini_descriptor/internal/encode.hpp +118 -0
- data/third_party/upb/upb/mini_descriptor/internal/modifiers.h +32 -0
- data/third_party/upb/upb/mini_descriptor/internal/wire_constants.h +72 -0
- data/third_party/upb/upb/mini_descriptor/link.c +122 -0
- data/third_party/upb/upb/mini_descriptor/link.h +84 -0
- data/third_party/upb/upb/mini_table/enum.h +38 -0
- data/third_party/upb/upb/mini_table/extension.h +15 -0
- data/third_party/upb/upb/mini_table/extension_registry.c +7 -27
- data/third_party/upb/upb/mini_table/extension_registry.h +9 -28
- data/third_party/upb/upb/mini_table/field.h +98 -0
- data/third_party/upb/upb/mini_table/file.h +15 -0
- data/third_party/upb/upb/mini_table/internal/enum.h +58 -0
- data/third_party/upb/upb/mini_table/internal/extension.h +27 -0
- data/third_party/upb/upb/mini_table/internal/field.h +114 -0
- data/third_party/upb/upb/mini_table/internal/file.h +29 -0
- data/third_party/upb/upb/mini_table/internal/message.c +19 -0
- data/third_party/upb/upb/mini_table/internal/message.h +88 -0
- data/third_party/upb/upb/mini_table/internal/sub.h +18 -0
- data/third_party/upb/upb/mini_table/message.c +77 -0
- data/third_party/upb/upb/mini_table/message.h +85 -0
- data/third_party/upb/upb/mini_table/sub.h +15 -0
- data/third_party/upb/upb/port/atomic.h +8 -26
- data/third_party/upb/upb/port/def.inc +28 -29
- data/third_party/upb/upb/port/undef.inc +8 -26
- data/third_party/upb/upb/port/vsnprintf_compat.h +6 -26
- data/third_party/upb/upb/reflection/common.h +11 -27
- data/third_party/upb/upb/reflection/def.h +8 -26
- data/third_party/upb/upb/reflection/def.hpp +26 -31
- data/third_party/upb/upb/reflection/def_pool.c +16 -35
- data/third_party/upb/upb/reflection/def_pool.h +17 -38
- data/third_party/upb/upb/reflection/def_type.c +6 -26
- data/third_party/upb/upb/reflection/def_type.h +6 -27
- data/third_party/upb/upb/reflection/desc_state.c +7 -27
- data/third_party/upb/upb/reflection/enum_def.c +19 -37
- data/third_party/upb/upb/reflection/enum_def.h +13 -33
- data/third_party/upb/upb/reflection/enum_reserved_range.c +9 -30
- data/third_party/upb/upb/reflection/enum_reserved_range.h +6 -26
- data/third_party/upb/upb/reflection/enum_value_def.c +13 -32
- data/third_party/upb/upb/reflection/enum_value_def.h +8 -28
- data/third_party/upb/upb/reflection/extension_range.c +9 -28
- data/third_party/upb/upb/reflection/extension_range.h +6 -26
- data/third_party/upb/upb/reflection/field_def.c +70 -52
- data/third_party/upb/upb/reflection/field_def.h +25 -42
- data/third_party/upb/upb/reflection/file_def.c +23 -48
- data/third_party/upb/upb/reflection/file_def.h +10 -30
- data/third_party/upb/upb/reflection/internal/def_builder.c +339 -0
- data/third_party/upb/upb/reflection/internal/def_builder.h +137 -0
- data/third_party/upb/upb/reflection/internal/def_pool.h +57 -0
- data/third_party/upb/upb/reflection/internal/desc_state.h +44 -0
- data/third_party/upb/upb/reflection/internal/enum_def.h +36 -0
- data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +35 -0
- data/third_party/upb/upb/reflection/internal/enum_value_def.h +37 -0
- data/third_party/upb/upb/reflection/internal/extension_range.h +34 -0
- data/third_party/upb/upb/reflection/internal/field_def.h +56 -0
- data/third_party/upb/upb/reflection/internal/file_def.h +37 -0
- data/third_party/upb/upb/reflection/internal/message_def.h +43 -0
- data/third_party/upb/upb/reflection/internal/message_reserved_range.h +35 -0
- data/third_party/upb/upb/reflection/internal/method_def.h +33 -0
- data/third_party/upb/upb/reflection/internal/oneof_def.h +37 -0
- data/third_party/upb/upb/reflection/internal/service_def.h +33 -0
- data/third_party/upb/upb/reflection/internal/strdup2.c +33 -0
- data/third_party/upb/upb/reflection/internal/strdup2.h +32 -0
- data/third_party/upb/upb/reflection/message.c +10 -30
- data/third_party/upb/upb/reflection/message.h +27 -40
- data/third_party/upb/upb/reflection/message.hpp +5 -23
- data/third_party/upb/upb/reflection/message_def.c +73 -55
- data/third_party/upb/upb/reflection/message_def.h +25 -43
- data/third_party/upb/upb/reflection/message_reserved_range.c +8 -28
- data/third_party/upb/upb/reflection/message_reserved_range.h +6 -26
- data/third_party/upb/upb/reflection/method_def.c +10 -29
- data/third_party/upb/upb/reflection/method_def.h +6 -26
- data/third_party/upb/upb/reflection/oneof_def.c +15 -33
- data/third_party/upb/upb/reflection/oneof_def.h +11 -30
- data/third_party/upb/upb/reflection/service_def.c +12 -31
- data/third_party/upb/upb/reflection/service_def.h +6 -26
- data/third_party/upb/upb/text/encode.c +8 -28
- data/third_party/upb/upb/text/encode.h +6 -26
- data/third_party/upb/upb/wire/decode.c +106 -68
- data/third_party/upb/upb/wire/decode.h +50 -26
- data/third_party/upb/upb/wire/decode_fast.c +10 -28
- data/third_party/upb/upb/wire/decode_fast.h +6 -26
- data/third_party/upb/upb/wire/encode.c +52 -46
- data/third_party/upb/upb/wire/encode.h +14 -30
- data/third_party/upb/upb/wire/eps_copy_input_stream.c +6 -26
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +6 -26
- data/third_party/upb/upb/wire/internal/constants.h +27 -0
- data/third_party/upb/upb/wire/internal/decode.h +143 -0
- data/third_party/upb/upb/wire/internal/swap.h +45 -0
- data/third_party/upb/upb/wire/reader.c +6 -26
- data/third_party/upb/upb/wire/reader.h +8 -28
- data/third_party/upb/upb/wire/types.h +6 -26
- data/third_party/zlib/adler32.c +5 -27
- data/third_party/zlib/compress.c +5 -16
- data/third_party/zlib/crc32.c +86 -162
- data/third_party/zlib/deflate.c +233 -336
- data/third_party/zlib/deflate.h +8 -8
- data/third_party/zlib/gzguts.h +11 -12
- data/third_party/zlib/infback.c +7 -23
- data/third_party/zlib/inffast.c +1 -4
- data/third_party/zlib/inffast.h +1 -1
- data/third_party/zlib/inflate.c +30 -99
- data/third_party/zlib/inftrees.c +6 -11
- data/third_party/zlib/inftrees.h +3 -3
- data/third_party/zlib/trees.c +224 -302
- data/third_party/zlib/uncompr.c +4 -12
- data/third_party/zlib/zconf.h +6 -2
- data/third_party/zlib/zlib.h +191 -188
- data/third_party/zlib/zutil.c +16 -44
- data/third_party/zlib/zutil.h +10 -10
- metadata +979 -741
- data/src/core/ext/filters/client_channel/http_proxy.cc +0 -233
- data/src/core/ext/filters/client_channel/http_proxy.h +0 -52
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +0 -1226
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +0 -45
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
- data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +0 -152
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +0 -735
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +0 -183
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +0 -835
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +0 -160
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +0 -743
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +0 -535
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +0 -2796
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +0 -69
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +0 -256
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +0 -77
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +0 -287
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +0 -59
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +0 -168
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +0 -52
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +0 -128
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +0 -52
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +0 -123
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +0 -153
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +0 -935
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +0 -57
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +0 -122
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +0 -63
- data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +0 -134
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +0 -60
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +0 -118
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +0 -357
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +0 -1629
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +0 -572
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +0 -3257
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +0 -128
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +0 -532
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +0 -732
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +0 -3926
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +0 -57
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +0 -122
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +0 -126
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +0 -664
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +0 -398
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +0 -1849
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +0 -227
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +0 -1054
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +0 -58
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +0 -134
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +0 -580
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +0 -2448
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +0 -235
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +0 -1180
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +0 -54
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +0 -115
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +0 -56
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +0 -122
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +0 -71
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +0 -256
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +0 -376
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +0 -1678
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +0 -314
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +0 -1886
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +0 -58
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +0 -149
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +0 -465
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +0 -2222
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +0 -73
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +0 -245
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +0 -75
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +0 -239
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +0 -79
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +0 -293
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +0 -69
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +0 -260
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +0 -57
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +0 -136
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +0 -141
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +0 -498
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +0 -207
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +0 -875
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +0 -182
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +0 -920
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +0 -53
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +0 -107
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +0 -269
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +0 -1600
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +0 -263
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +0 -1459
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +0 -89
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +0 -331
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +0 -80
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +0 -204
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +0 -66
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +0 -166
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +0 -222
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +0 -988
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +0 -229
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +0 -1017
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +0 -351
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +0 -1717
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +0 -136
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +0 -867
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +0 -1646
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +0 -9598
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +0 -100
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +0 -347
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +0 -328
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +0 -1530
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +0 -54
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +0 -123
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +0 -58
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +0 -122
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +0 -76
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +0 -196
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +0 -65
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +0 -205
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +0 -84
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +0 -413
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +0 -55
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +0 -122
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +0 -54
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +0 -107
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +0 -88
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +0 -259
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +0 -36
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +0 -48
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +0 -90
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +0 -261
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +0 -68
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +0 -204
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +0 -49
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +0 -139
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +0 -119
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +0 -437
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +0 -125
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +0 -635
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +0 -90
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +0 -271
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +0 -79
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +0 -358
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +0 -75
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +0 -201
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +0 -656
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +0 -3850
- data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +0 -53
- data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +0 -107
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +0 -69
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +0 -246
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +0 -138
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +0 -499
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +0 -71
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +0 -257
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +0 -53
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +0 -107
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +0 -31
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +0 -43
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +0 -265
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +0 -1479
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +0 -111
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +0 -369
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +0 -270
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +0 -1482
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +0 -75
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +0 -224
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +0 -41
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +0 -78
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +0 -405
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +0 -2161
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +0 -87
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +0 -331
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +0 -185
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +0 -923
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +0 -57
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +0 -137
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +0 -89
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +0 -321
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +0 -56
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +0 -130
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +0 -108
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +0 -309
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +0 -79
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +0 -266
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +0 -58
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +0 -172
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +0 -57
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +0 -135
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +0 -54
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +0 -115
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +0 -99
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +0 -277
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +0 -46
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +0 -117
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +0 -84
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +0 -312
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +0 -73
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +0 -236
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +0 -95
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +0 -354
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +0 -130
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +0 -536
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +0 -142
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +0 -516
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +0 -79
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +0 -234
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +0 -29
- data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +0 -44
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +0 -49
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +0 -153
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +0 -67
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +0 -168
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +0 -87
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +0 -246
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +0 -78
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +0 -237
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +0 -29
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +0 -48
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +0 -52
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +0 -123
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +0 -60
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +0 -151
- data/src/core/ext/upb-generated/google/api/annotations.upb.c +0 -43
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +0 -63
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +0 -372
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +0 -1764
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +0 -402
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +0 -1849
- data/src/core/ext/upb-generated/google/api/http.upb.c +0 -114
- data/src/core/ext/upb-generated/google/api/http.upb.h +0 -507
- data/src/core/ext/upb-generated/google/api/httpbody.upb.c +0 -55
- data/src/core/ext/upb-generated/google/api/httpbody.upb.h +0 -173
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +0 -49
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +0 -108
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +0 -1172
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +0 -5656
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +0 -49
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +0 -108
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +0 -38
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +0 -78
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +0 -118
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +0 -434
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +0 -49
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +0 -108
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +0 -166
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +0 -525
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +0 -55
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +0 -173
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +0 -109
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +0 -397
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +0 -82
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +0 -246
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +0 -345
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +0 -1677
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +0 -72
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +0 -207
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +0 -61
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +0 -154
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +0 -224
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +0 -893
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +0 -95
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +0 -308
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +0 -246
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +0 -1349
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +0 -129
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +0 -341
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +0 -64
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +0 -133
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +0 -41
- data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +0 -63
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +0 -63
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +0 -140
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +0 -60
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +0 -118
- data/src/core/ext/upb-generated/validate/validate.upb.c +0 -950
- data/src/core/ext/upb-generated/validate/validate.upb.h +0 -6544
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +0 -129
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +0 -341
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +0 -64
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +0 -133
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +0 -41
- data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +0 -63
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +0 -126
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +0 -352
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +0 -60
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +0 -118
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +0 -48
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +0 -93
- data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +0 -56
- data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +0 -122
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +0 -81
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +0 -241
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +0 -65
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +0 -142
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +0 -55
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +0 -122
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +0 -58
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +0 -151
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +0 -87
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +0 -338
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +0 -62
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +0 -152
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +0 -129
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +0 -360
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +0 -55
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +0 -168
- data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +0 -53
- data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +0 -107
- data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +0 -75
- data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +0 -270
- data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +0 -39
- data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +0 -78
- data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +0 -78
- data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +0 -289
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +0 -268
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +0 -1122
- data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +0 -160
- data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +0 -740
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +0 -61
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +0 -167
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +0 -82
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +0 -312
- data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +0 -82
- data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +0 -240
- data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +0 -85
- data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +0 -246
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +0 -54
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +0 -122
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +0 -84
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +0 -128
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +0 -51
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +0 -102
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +0 -277
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +0 -126
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +0 -43
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +0 -56
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +0 -49
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +0 -46
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +0 -46
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +0 -142
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +0 -51
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +0 -48
- data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +0 -38
- data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +0 -222
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +0 -106
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +0 -408
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +0 -121
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +0 -98
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +0 -567
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +0 -151
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +0 -51
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +0 -138
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +0 -206
- data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +0 -106
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +0 -132
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +0 -71
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +0 -54
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +0 -271
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +0 -151
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +0 -169
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +0 -71
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +0 -53
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +0 -47
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +0 -53
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +0 -235
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +0 -101
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +0 -234
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +0 -76
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +0 -53
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +0 -305
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +0 -111
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +0 -57
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +0 -55
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +0 -61
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +0 -70
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +0 -49
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +0 -99
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +0 -51
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +0 -133
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +0 -61
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +0 -136
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +0 -48
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +0 -227
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +0 -81
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +0 -190
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +0 -66
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +0 -101
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +0 -71
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +0 -69
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +0 -125
- data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +0 -71
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +0 -134
- data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +0 -76
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +0 -223
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +0 -86
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +0 -123
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +0 -972
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +0 -316
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +0 -77
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +0 -199
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +0 -91
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +0 -56
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +0 -57
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +0 -57
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +0 -72
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +0 -99
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +0 -45
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +0 -52
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +0 -71
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +0 -61
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +0 -75
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +0 -79
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +0 -50
- data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +0 -92
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +0 -117
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +0 -80
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +0 -89
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +0 -60
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +0 -580
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +0 -131
- data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +0 -50
- data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +0 -48
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +0 -215
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +0 -66
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +0 -91
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +0 -258
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +0 -66
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +0 -58
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +0 -58
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +0 -200
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +0 -101
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +0 -76
- data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +0 -152
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +0 -46
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +0 -56
- data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +0 -51
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +0 -48
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +0 -55
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +0 -61
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +0 -54
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +0 -52
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +0 -51
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +0 -71
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +0 -40
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +0 -65
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +0 -58
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +0 -75
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +0 -78
- data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +0 -66
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +0 -85
- data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +0 -56
- data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +0 -53
- data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +0 -94
- data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +0 -54
- data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +0 -48
- data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +0 -69
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +0 -39
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +0 -44
- data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +0 -57
- data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +0 -40
- data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +0 -154
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +0 -96
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +0 -153
- data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +0 -101
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +0 -52
- data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +0 -39
- data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +0 -34
- data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +0 -387
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +0 -171
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +0 -35
- data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +0 -32
- data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +0 -54
- data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +0 -51
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +0 -35
- data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +0 -45
- data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +0 -76
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +0 -37
- data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +0 -67
- data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +0 -51
- data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +0 -99
- data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +0 -76
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +0 -62
- data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +0 -47
- data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +0 -34
- data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +0 -46
- data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +0 -39
- data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +0 -283
- data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +0 -146
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +0 -63
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +0 -47
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +0 -35
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +0 -31
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +0 -64
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +0 -51
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +0 -40
- data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +0 -38
- data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +0 -45
- data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +0 -56
- data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +0 -39
- data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +0 -41
- data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +0 -45
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +0 -61
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +0 -46
- data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +0 -43
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +0 -51
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +0 -36
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +0 -36
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +0 -55
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +0 -126
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +0 -81
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +0 -71
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +0 -61
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +0 -40
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +0 -52
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +0 -60
- data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +0 -41
- data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +0 -36
- data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +0 -46
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +0 -37
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +0 -36
- data/src/core/lib/event_engine/memory_allocator.cc +0 -74
- data/src/core/lib/event_engine/thread_pool/original_thread_pool.cc +0 -256
- data/src/core/lib/event_engine/thread_pool/original_thread_pool.h +0 -137
- data/src/core/lib/promise/detail/basic_join.h +0 -197
- data/src/core/lib/promise/detail/switch.h +0 -1455
- data/src/core/lib/resolver/server_address.cc +0 -174
- data/src/core/lib/transport/pid_controller.cc +0 -51
- data/src/core/lib/transport/pid_controller.h +0 -116
- data/src/core/lib/transport/transport_impl.h +0 -102
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
- data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_freebsd.c +0 -62
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm.c +0 -38
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_openbsd.c +0 -31
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fuchsia.c +0 -34
- data/third_party/boringssl-with-bazel/src/crypto/refcount_c11.c +0 -65
- data/third_party/boringssl-with-bazel/src/crypto/refcount_no_threads.c +0 -42
- data/third_party/boringssl-with-bazel/src/crypto/refcount_win.c +0 -89
- data/third_party/re2/util/benchmark.h +0 -156
- data/third_party/re2/util/flags.h +0 -26
- data/third_party/re2/util/malloc_counter.h +0 -19
- data/third_party/re2/util/pcre.cc +0 -1025
- data/third_party/re2/util/pcre.h +0 -681
- data/third_party/re2/util/test.h +0 -50
- data/third_party/upb/upb/alloc.h +0 -36
- data/third_party/upb/upb/arena.h +0 -36
- data/third_party/upb/upb/array.h +0 -36
- data/third_party/upb/upb/base/log2.h +0 -57
- data/third_party/upb/upb/collections/array.c +0 -145
- data/third_party/upb/upb/collections/array.h +0 -85
- data/third_party/upb/upb/collections/array_internal.h +0 -135
- data/third_party/upb/upb/collections/map.c +0 -135
- data/third_party/upb/upb/collections/map.h +0 -135
- data/third_party/upb/upb/collections/map_gencode_util.h +0 -78
- data/third_party/upb/upb/collections/map_internal.h +0 -170
- data/third_party/upb/upb/collections/map_sorter.c +0 -166
- data/third_party/upb/upb/collections/map_sorter_internal.h +0 -109
- data/third_party/upb/upb/collections/message_value.h +0 -65
- data/third_party/upb/upb/decode.h +0 -36
- data/third_party/upb/upb/def.h +0 -36
- data/third_party/upb/upb/def.hpp +0 -33
- data/third_party/upb/upb/encode.h +0 -36
- data/third_party/upb/upb/extension_registry.h +0 -35
- data/third_party/upb/upb/json_decode.h +0 -36
- data/third_party/upb/upb/json_encode.h +0 -36
- data/third_party/upb/upb/map.h +0 -36
- data/third_party/upb/upb/mem/arena_internal.h +0 -114
- data/third_party/upb/upb/message/accessors_internal.h +0 -325
- data/third_party/upb/upb/message/extension_internal.h +0 -83
- data/third_party/upb/upb/message/internal.h +0 -135
- data/third_party/upb/upb/mini_table/common.c +0 -128
- data/third_party/upb/upb/mini_table/common.h +0 -170
- data/third_party/upb/upb/mini_table/common_internal.h +0 -111
- data/third_party/upb/upb/mini_table/decode.c +0 -1127
- data/third_party/upb/upb/mini_table/decode.h +0 -179
- data/third_party/upb/upb/mini_table/encode.c +0 -300
- data/third_party/upb/upb/mini_table/encode_internal.h +0 -111
- data/third_party/upb/upb/mini_table/encode_internal.hpp +0 -136
- data/third_party/upb/upb/mini_table/enum_internal.h +0 -88
- data/third_party/upb/upb/mini_table/extension_internal.h +0 -47
- data/third_party/upb/upb/mini_table/field_internal.h +0 -192
- data/third_party/upb/upb/mini_table/file_internal.h +0 -47
- data/third_party/upb/upb/mini_table/message_internal.h +0 -136
- data/third_party/upb/upb/mini_table/sub_internal.h +0 -38
- data/third_party/upb/upb/mini_table/types.h +0 -40
- data/third_party/upb/upb/mini_table.h +0 -36
- data/third_party/upb/upb/msg.h +0 -36
- data/third_party/upb/upb/reflection/def_builder.c +0 -357
- data/third_party/upb/upb/reflection/def_builder_internal.h +0 -157
- data/third_party/upb/upb/reflection/def_pool_internal.h +0 -77
- data/third_party/upb/upb/reflection/desc_state_internal.h +0 -64
- data/third_party/upb/upb/reflection/enum_def_internal.h +0 -56
- data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +0 -55
- data/third_party/upb/upb/reflection/enum_value_def_internal.h +0 -57
- data/third_party/upb/upb/reflection/extension_range_internal.h +0 -54
- data/third_party/upb/upb/reflection/field_def_internal.h +0 -76
- data/third_party/upb/upb/reflection/file_def_internal.h +0 -57
- data/third_party/upb/upb/reflection/message_def_internal.h +0 -63
- data/third_party/upb/upb/reflection/message_reserved_range_internal.h +0 -55
- data/third_party/upb/upb/reflection/method_def_internal.h +0 -53
- data/third_party/upb/upb/reflection/oneof_def_internal.h +0 -57
- data/third_party/upb/upb/reflection/service_def_internal.h +0 -53
- data/third_party/upb/upb/reflection.h +0 -36
- data/third_party/upb/upb/reflection.hpp +0 -33
- data/third_party/upb/upb/status.h +0 -36
- data/third_party/upb/upb/string_view.h +0 -36
- data/third_party/upb/upb/text_encode.h +0 -36
- data/third_party/upb/upb/upb.h +0 -39
- data/third_party/upb/upb/upb.hpp +0 -107
- data/third_party/upb/upb/wire/common.h +0 -44
- data/third_party/upb/upb/wire/common_internal.h +0 -50
- data/third_party/upb/upb/wire/decode_internal.h +0 -163
- data/third_party/upb/upb/wire/swap_internal.h +0 -63
- data/third_party/zlib/gzclose.c +0 -25
- data/third_party/zlib/gzlib.c +0 -639
- data/third_party/zlib/gzread.c +0 -650
- data/third_party/zlib/gzwrite.c +0 -677
@@ -12,7 +12,6 @@
|
|
12
12
|
// See the License for the specific language governing permissions and
|
13
13
|
// limitations under the License.
|
14
14
|
|
15
|
-
////////////////////////////////////////////////////////////////////////////////
|
16
15
|
// This file is autogenerated: see
|
17
16
|
// tools/codegen/core/gen_huffman_decompressor.cc
|
18
17
|
|
@@ -22,7 +21,6 @@
|
|
22
21
|
|
23
22
|
#include <cstddef>
|
24
23
|
#include <cstdint>
|
25
|
-
// GEOMETRY: 8,7,8,5
|
26
24
|
namespace grpc_core {
|
27
25
|
class HuffDecoderCommon {
|
28
26
|
protected:
|
@@ -40,51 +38,53 @@ class HuffDecoderCommon {
|
|
40
38
|
static inline uint64_t GetEmit4(size_t i, size_t emit) {
|
41
39
|
return table4_emit_[i >> 6][emit];
|
42
40
|
}
|
43
|
-
static inline uint64_t
|
44
|
-
return
|
41
|
+
static inline uint64_t GetOp5(size_t i) {
|
42
|
+
return table5_ops_[i >> 7][i & 0x7f];
|
45
43
|
}
|
46
|
-
static inline uint64_t
|
47
|
-
return
|
44
|
+
static inline uint64_t GetEmit5(size_t i, size_t emit) {
|
45
|
+
return table5_emit_[i >> 7][emit];
|
48
46
|
}
|
49
|
-
static inline uint64_t
|
50
|
-
return
|
47
|
+
static inline uint64_t GetOp6(size_t i) {
|
48
|
+
return table6_ops_[i >> 5][i & 0x1f];
|
51
49
|
}
|
52
|
-
static inline uint64_t
|
53
|
-
return
|
50
|
+
static inline uint64_t GetEmit6(size_t i, size_t emit) {
|
51
|
+
return table6_emit_[i >> 5][emit];
|
54
52
|
}
|
55
53
|
static inline uint64_t GetOp7(size_t i) {
|
56
|
-
return
|
57
|
-
? (((void)(i < 2 ? (i) : ((i - 2) + 1)), 2))
|
58
|
-
: (((i < 2 ? (i) : ((i - 2) + 1)) - 1) ? 0 : 1));
|
54
|
+
return table7_ops_[i >> 6][i & 0x3f];
|
59
55
|
}
|
60
|
-
static inline uint64_t GetEmit7(size_t, size_t emit) {
|
61
|
-
return
|
56
|
+
static inline uint64_t GetEmit7(size_t i, size_t emit) {
|
57
|
+
return table7_emit_[i >> 6][emit];
|
62
58
|
}
|
63
59
|
static inline uint64_t GetOp8(size_t i) {
|
64
|
-
return
|
60
|
+
return table8_inner_[i >> 6][table8_outer_[i >> 6][i & 0x3f]];
|
65
61
|
}
|
66
|
-
static inline uint64_t GetEmit8(size_t, size_t emit) {
|
67
|
-
return
|
62
|
+
static inline uint64_t GetEmit8(size_t i, size_t emit) {
|
63
|
+
return table8_emit_[i >> 6][emit];
|
68
64
|
}
|
69
65
|
static inline uint64_t GetOp9(size_t i) {
|
70
|
-
return
|
66
|
+
return table9_ops_[i >> 5][i & 0x1f];
|
71
67
|
}
|
72
|
-
static inline uint64_t GetEmit9(size_t, size_t emit) {
|
73
|
-
return
|
68
|
+
static inline uint64_t GetEmit9(size_t i, size_t emit) {
|
69
|
+
return table9_emit_[i >> 5][emit];
|
74
70
|
}
|
75
|
-
static inline uint64_t GetOp10(size_t i) {
|
76
|
-
|
77
|
-
return table10_0_emit_[emit];
|
71
|
+
static inline uint64_t GetOp10(size_t i) {
|
72
|
+
return table10_inner_[i >> 6][table10_outer_[i >> 6][i & 0x3f]];
|
78
73
|
}
|
79
|
-
static inline uint64_t
|
80
|
-
|
81
|
-
return table11_0_emit_[emit];
|
74
|
+
static inline uint64_t GetEmit10(size_t i, size_t emit) {
|
75
|
+
return table10_emit_[i >> 6][emit];
|
82
76
|
}
|
83
|
-
static inline uint64_t
|
84
|
-
return
|
77
|
+
static inline uint64_t GetOp11(size_t i) {
|
78
|
+
return table11_inner_[i >> 6][table11_outer_[i >> 6][i & 0x3f]];
|
85
79
|
}
|
86
|
-
static inline uint64_t
|
87
|
-
return
|
80
|
+
static inline uint64_t GetEmit11(size_t i, size_t emit) {
|
81
|
+
return table11_emit_[i >> 6][emit];
|
82
|
+
}
|
83
|
+
static inline uint64_t GetOp1(size_t i) {
|
84
|
+
return table1_inner_[i >> 6][table1_outer_[i >> 6][i & 0x3f]];
|
85
|
+
}
|
86
|
+
static inline uint64_t GetEmit1(size_t i, size_t emit) {
|
87
|
+
return table1_emit_[i >> 6][emit];
|
88
88
|
}
|
89
89
|
static inline uint64_t GetOp13(size_t i) {
|
90
90
|
return table13_0_inner_[(i < 3 ? (i) : ((i - 3) / 12 + 3))];
|
@@ -100,80 +100,117 @@ class HuffDecoderCommon {
|
|
100
100
|
static inline uint64_t GetEmit15(size_t, size_t emit) {
|
101
101
|
return table15_0_emit_[emit];
|
102
102
|
}
|
103
|
-
static inline uint64_t GetOp16(size_t i) { return table16_0_ops_[i]; }
|
104
|
-
static inline uint64_t GetEmit16(size_t, size_t emit) {
|
105
|
-
return table16_0_emit_[emit];
|
106
|
-
}
|
107
103
|
static inline uint64_t GetOp12(size_t i) {
|
108
104
|
return table12_0_inner_[table12_0_outer_[i]];
|
109
105
|
}
|
110
106
|
static inline uint64_t GetEmit12(size_t, size_t emit) {
|
111
107
|
return table12_0_emit_[emit];
|
112
108
|
}
|
113
|
-
static inline uint64_t
|
114
|
-
static inline uint64_t
|
115
|
-
return emit ?
|
109
|
+
static inline uint64_t GetOp16(size_t i) { return i ? 3 : 1; }
|
110
|
+
static inline uint64_t GetEmit16(size_t, size_t emit) {
|
111
|
+
return emit ? 135 : 1;
|
116
112
|
}
|
113
|
+
static inline uint64_t GetOp17(size_t i) { return i ? 3 : 1; }
|
114
|
+
static inline uint64_t GetEmit17(size_t, size_t emit) { return emit + 137; }
|
117
115
|
static inline uint64_t GetOp18(size_t i) { return i ? 3 : 1; }
|
118
|
-
static inline uint64_t GetEmit18(size_t, size_t emit) { return emit +
|
116
|
+
static inline uint64_t GetEmit18(size_t, size_t emit) { return emit + 139; }
|
119
117
|
static inline uint64_t GetOp19(size_t i) { return i ? 3 : 1; }
|
120
118
|
static inline uint64_t GetEmit19(size_t, size_t emit) {
|
121
|
-
return emit ?
|
119
|
+
return emit ? 143 : 141;
|
122
120
|
}
|
123
121
|
static inline uint64_t GetOp20(size_t i) { return i ? 3 : 1; }
|
124
122
|
static inline uint64_t GetEmit20(size_t, size_t emit) {
|
125
|
-
return emit ?
|
123
|
+
return emit ? 149 : 147;
|
126
124
|
}
|
127
125
|
static inline uint64_t GetOp21(size_t i) { return i ? 3 : 1; }
|
128
|
-
static inline uint64_t GetEmit21(size_t, size_t emit) {
|
129
|
-
return emit ? 225 : 215;
|
130
|
-
}
|
126
|
+
static inline uint64_t GetEmit21(size_t, size_t emit) { return emit + 150; }
|
131
127
|
static inline uint64_t GetOp22(size_t i) { return i ? 3 : 1; }
|
132
|
-
static inline uint64_t GetEmit22(size_t, size_t emit) {
|
133
|
-
|
128
|
+
static inline uint64_t GetEmit22(size_t, size_t emit) {
|
129
|
+
return emit ? 155 : 152;
|
130
|
+
}
|
131
|
+
static inline uint64_t GetOp23(size_t i) { return i ? 3 : 1; }
|
132
|
+
static inline uint64_t GetEmit23(size_t, size_t emit) { return emit + 157; }
|
133
|
+
static inline uint64_t GetOp24(size_t i) { return i ? 3 : 1; }
|
134
|
+
static inline uint64_t GetEmit24(size_t, size_t emit) { return emit + 165; }
|
135
|
+
static inline uint64_t GetOp25(size_t i) { return i ? 3 : 1; }
|
136
|
+
static inline uint64_t GetEmit25(size_t, size_t emit) {
|
137
|
+
return emit ? 174 : 168;
|
138
|
+
}
|
139
|
+
static inline uint64_t GetOp26(size_t i) { return i ? 3 : 1; }
|
140
|
+
static inline uint64_t GetEmit26(size_t, size_t emit) {
|
141
|
+
return emit ? 180 : 175;
|
142
|
+
}
|
143
|
+
static inline uint64_t GetOp27(size_t i) { return i ? 3 : 1; }
|
144
|
+
static inline uint64_t GetEmit27(size_t, size_t emit) { return emit + 182; }
|
145
|
+
static inline uint64_t GetOp28(size_t i) { return i ? 3 : 1; }
|
146
|
+
static inline uint64_t GetEmit28(size_t, size_t emit) {
|
147
|
+
return emit ? 191 : 188;
|
148
|
+
}
|
149
|
+
static inline uint64_t GetOp29(size_t i) { return i ? 3 : 1; }
|
150
|
+
static inline uint64_t GetEmit29(size_t, size_t emit) {
|
151
|
+
return emit ? 231 : 197;
|
152
|
+
}
|
153
|
+
static inline uint64_t GetOp30(size_t i) {
|
134
154
|
return (i < 2 ? (i ? 6 : 2) : ((i - 2) ? 14 : 10));
|
135
155
|
}
|
136
|
-
static inline uint64_t
|
137
|
-
return (emit < 2 ? (emit
|
156
|
+
static inline uint64_t GetEmit30(size_t, size_t emit) {
|
157
|
+
return (emit < 2 ? (emit + 144) : ((emit - 2) ? 159 : 148));
|
138
158
|
}
|
139
|
-
static inline uint64_t
|
140
|
-
|
141
|
-
return table24_0_emit_[emit];
|
159
|
+
static inline uint64_t GetOp31(size_t i) {
|
160
|
+
return (i < 2 ? (i ? 6 : 2) : ((i - 2) ? 14 : 10));
|
142
161
|
}
|
143
|
-
static inline uint64_t
|
144
|
-
|
145
|
-
return table25_0_emit_[emit];
|
162
|
+
static inline uint64_t GetEmit31(size_t, size_t emit) {
|
163
|
+
return (emit < 2 ? (emit ? 206 : 171) : ((emit - 2) ? 225 : 215));
|
146
164
|
}
|
147
|
-
static inline uint64_t
|
148
|
-
|
149
|
-
|
150
|
-
? (((void)(i < 1 ? (((void)i, 0)) : ((i - 1) / 14 + 1)), 2))
|
151
|
-
: (((i < 1 ? (((void)i, 0)) : ((i - 1) / 14 + 1)) - 1) ? 0 : 1));
|
165
|
+
static inline uint64_t GetOp33(size_t i) { return table33_0_inner_[i]; }
|
166
|
+
static inline uint64_t GetEmit33(size_t, size_t emit) {
|
167
|
+
return table33_0_emit_[emit];
|
152
168
|
}
|
153
|
-
static inline uint64_t
|
154
|
-
|
169
|
+
static inline uint64_t GetOp32(size_t i) { return table32_0_ops_[i]; }
|
170
|
+
static inline uint64_t GetEmit32(size_t, size_t emit) {
|
171
|
+
return table32_0_emit_[emit];
|
155
172
|
}
|
156
|
-
static inline uint64_t
|
157
|
-
|
173
|
+
static inline uint64_t GetOp35(size_t i) { return i; }
|
174
|
+
static inline uint64_t GetEmit35(size_t, size_t emit) {
|
175
|
+
return ((void)emit, 239);
|
158
176
|
}
|
159
|
-
static inline uint64_t
|
160
|
-
return
|
177
|
+
static inline uint64_t GetOp34(size_t i) {
|
178
|
+
return ((i < 1 ? (((void)i, 0)) : ((i - 1))) < 1
|
179
|
+
? (((void)(i < 1 ? (((void)i, 0)) : ((i - 1))), 1))
|
180
|
+
: (((i < 1 ? (((void)i, 0)) : ((i - 1))) - 1) ? 10 : 6));
|
161
181
|
}
|
162
|
-
static inline uint64_t
|
163
|
-
return (
|
182
|
+
static inline uint64_t GetEmit34(size_t, size_t emit) {
|
183
|
+
return (emit < 1 ? (((void)emit, 239)) : ((emit - 1) ? 142 : 9));
|
164
184
|
}
|
165
|
-
static inline uint64_t
|
166
|
-
return (
|
185
|
+
static inline uint64_t GetOp37(size_t i) {
|
186
|
+
return ((i < 2 ? (i) : (((void)(i - 2), 2))) < 1
|
187
|
+
? (((void)(i < 2 ? (i) : (((void)(i - 2), 2))), 0))
|
188
|
+
: (((i < 2 ? (i) : (((void)(i - 2), 2))) - 1) ? 1 : 2));
|
167
189
|
}
|
168
|
-
static inline uint64_t
|
169
|
-
static inline uint64_t
|
170
|
-
return
|
190
|
+
static inline uint64_t GetEmit37(size_t, size_t emit) { return emit + 236; }
|
191
|
+
static inline uint64_t GetOp36(size_t i) {
|
192
|
+
return table36_0_inner_[(i < 3 ? (i / 2 + 0) : ((i - 3) + 1))];
|
171
193
|
}
|
172
|
-
static inline uint64_t
|
173
|
-
return
|
194
|
+
static inline uint64_t GetEmit36(size_t, size_t emit) {
|
195
|
+
return table36_0_emit_[emit];
|
174
196
|
}
|
175
|
-
static inline uint64_t
|
176
|
-
|
197
|
+
static inline uint64_t GetOp39(size_t i) { return table39_0_ops_[i]; }
|
198
|
+
static inline uint64_t GetEmit39(size_t, size_t emit) {
|
199
|
+
return table39_0_emit_[emit];
|
200
|
+
}
|
201
|
+
static inline uint64_t GetOp40(size_t i) { return table40_0_ops_[i]; }
|
202
|
+
static inline uint64_t GetEmit40(size_t, size_t emit) {
|
203
|
+
return table40_0_emit_[emit];
|
204
|
+
}
|
205
|
+
static inline uint64_t GetOp41(size_t i) { return table41_0_ops_[i]; }
|
206
|
+
static inline uint64_t GetEmit41(size_t, size_t emit) {
|
207
|
+
return table40_0_emit_[emit];
|
208
|
+
}
|
209
|
+
static inline uint64_t GetOp38(size_t i) {
|
210
|
+
return table38_ops_[i >> 5][i & 0x1f];
|
211
|
+
}
|
212
|
+
static inline uint64_t GetEmit38(size_t i, size_t emit) {
|
213
|
+
return table38_emit_[i >> 5][emit];
|
177
214
|
}
|
178
215
|
|
179
216
|
private:
|
@@ -187,44 +224,1373 @@ class HuffDecoderCommon {
|
|
187
224
|
static const uint8_t table4_1_ops_[64];
|
188
225
|
static const uint8_t* const table4_emit_[2];
|
189
226
|
static const uint8_t* const table4_ops_[2];
|
190
|
-
static const uint8_t
|
191
|
-
static const
|
192
|
-
static const uint8_t
|
193
|
-
static const uint8_t
|
194
|
-
static const uint8_t
|
195
|
-
static const uint8_t
|
196
|
-
static const uint8_t
|
197
|
-
static const uint8_t
|
198
|
-
static const uint8_t
|
199
|
-
static const uint8_t
|
200
|
-
static const uint8_t
|
201
|
-
static const uint8_t
|
202
|
-
static const uint8_t
|
203
|
-
static const uint8_t
|
204
|
-
static const uint8_t
|
205
|
-
static const uint8_t
|
206
|
-
static const uint8_t
|
207
|
-
static const uint8_t
|
227
|
+
static const uint8_t table5_0_ops_[128];
|
228
|
+
static const uint8_t table5_1_emit_[52];
|
229
|
+
static const uint8_t table5_1_ops_[128];
|
230
|
+
static const uint8_t* const table5_emit_[2];
|
231
|
+
static const uint8_t* const table5_ops_[2];
|
232
|
+
static const uint8_t table6_0_emit_[2];
|
233
|
+
static const uint8_t table6_0_ops_[32];
|
234
|
+
static const uint8_t table6_1_emit_[2];
|
235
|
+
static const uint8_t table6_2_emit_[2];
|
236
|
+
static const uint8_t table6_3_emit_[2];
|
237
|
+
static const uint8_t table6_4_emit_[2];
|
238
|
+
static const uint8_t table6_5_emit_[4];
|
239
|
+
static const uint8_t table6_5_ops_[32];
|
240
|
+
static const uint8_t table6_6_emit_[4];
|
241
|
+
static const uint8_t table6_7_emit_[4];
|
242
|
+
static const uint8_t table6_8_emit_[4];
|
243
|
+
static const uint8_t table6_9_emit_[4];
|
244
|
+
static const uint8_t table6_10_emit_[4];
|
245
|
+
static const uint8_t table6_11_emit_[6];
|
246
|
+
static const uint8_t table6_11_ops_[32];
|
247
|
+
static const uint8_t table6_12_emit_[8];
|
248
|
+
static const uint8_t table6_12_ops_[32];
|
249
|
+
static const uint8_t table6_13_emit_[8];
|
250
|
+
static const uint8_t table6_14_emit_[8];
|
251
|
+
static const uint8_t table6_15_emit_[10];
|
252
|
+
static const uint8_t table6_15_ops_[32];
|
253
|
+
static const uint8_t* const table6_emit_[16];
|
254
|
+
static const uint8_t* const table6_ops_[16];
|
255
|
+
static const uint8_t table7_0_emit_[36];
|
256
|
+
static const uint8_t table7_0_ops_[64];
|
257
|
+
static const uint8_t table7_1_emit_[36];
|
258
|
+
static const uint8_t table7_1_ops_[64];
|
259
|
+
static const uint8_t table7_2_emit_[36];
|
260
|
+
static const uint8_t table7_2_ops_[64];
|
261
|
+
static const uint8_t table7_3_emit_[36];
|
262
|
+
static const uint8_t table7_3_ops_[64];
|
263
|
+
static const uint8_t table7_4_emit_[38];
|
264
|
+
static const uint8_t table7_4_ops_[64];
|
265
|
+
static const uint8_t table7_5_ops_[64];
|
266
|
+
static const uint8_t table7_11_ops_[64];
|
267
|
+
static const uint8_t table7_12_ops_[64];
|
268
|
+
static const uint8_t table7_15_emit_[15];
|
269
|
+
static const uint8_t table7_15_ops_[64];
|
270
|
+
static const uint8_t* const table7_emit_[16];
|
271
|
+
static const uint8_t* const table7_ops_[16];
|
272
|
+
static const uint8_t table8_0_emit_[71];
|
273
|
+
static const uint16_t table8_0_inner_[38];
|
274
|
+
static const uint8_t table8_0_outer_[64];
|
275
|
+
static const uint8_t table8_1_emit_[71];
|
276
|
+
static const uint16_t table8_1_inner_[38];
|
277
|
+
static const uint8_t table8_2_emit_[71];
|
278
|
+
static const uint16_t table8_2_inner_[38];
|
279
|
+
static const uint8_t table8_3_emit_[71];
|
280
|
+
static const uint16_t table8_3_inner_[38];
|
281
|
+
static const uint8_t table8_4_emit_[71];
|
282
|
+
static const uint16_t table8_4_inner_[38];
|
283
|
+
static const uint8_t table8_5_emit_[71];
|
284
|
+
static const uint16_t table8_5_inner_[38];
|
285
|
+
static const uint8_t table8_6_emit_[71];
|
286
|
+
static const uint16_t table8_6_inner_[38];
|
287
|
+
static const uint8_t table8_7_emit_[71];
|
288
|
+
static const uint16_t table8_7_inner_[38];
|
289
|
+
static const uint8_t table8_8_emit_[71];
|
290
|
+
static const uint16_t table8_8_inner_[38];
|
291
|
+
static const uint8_t table8_9_emit_[71];
|
292
|
+
static const uint16_t table8_9_inner_[38];
|
293
|
+
static const uint8_t table8_10_emit_[40];
|
294
|
+
static const uint16_t table8_10_inner_[23];
|
295
|
+
static const uint8_t table8_10_outer_[64];
|
296
|
+
static const uint8_t table8_11_emit_[40];
|
297
|
+
static const uint8_t table8_12_emit_[40];
|
298
|
+
static const uint8_t table8_13_emit_[40];
|
299
|
+
static const uint8_t table8_14_emit_[40];
|
300
|
+
static const uint8_t table8_15_emit_[40];
|
301
|
+
static const uint8_t table8_16_emit_[40];
|
302
|
+
static const uint8_t table8_17_emit_[40];
|
303
|
+
static const uint8_t table8_18_emit_[40];
|
304
|
+
static const uint8_t table8_19_emit_[40];
|
305
|
+
static const uint8_t table8_20_emit_[40];
|
306
|
+
static const uint8_t table8_21_emit_[40];
|
307
|
+
static const uint8_t table8_22_emit_[40];
|
308
|
+
static const uint8_t table8_23_emit_[4];
|
309
|
+
static const uint16_t table8_23_inner_[5];
|
310
|
+
static const uint8_t table8_23_outer_[64];
|
311
|
+
static const uint8_t table8_24_emit_[4];
|
312
|
+
static const uint8_t table8_25_emit_[4];
|
313
|
+
static const uint8_t table8_26_emit_[4];
|
314
|
+
static const uint8_t table8_27_emit_[4];
|
315
|
+
static const uint8_t table8_28_emit_[4];
|
316
|
+
static const uint8_t table8_29_emit_[4];
|
317
|
+
static const uint8_t table8_30_emit_[4];
|
318
|
+
static const uint8_t table8_31_emit_[14];
|
319
|
+
static const uint16_t table8_31_inner_[16];
|
320
|
+
static const uint8_t table8_31_outer_[64];
|
321
|
+
static const uint8_t* const table8_emit_[32];
|
322
|
+
static const uint16_t* const table8_inner_[32];
|
323
|
+
static const uint8_t* const table8_outer_[32];
|
324
|
+
static const uint8_t table9_0_emit_[15];
|
325
|
+
static const uint8_t table9_0_ops_[32];
|
326
|
+
static const uint8_t table9_1_emit_[28];
|
327
|
+
static const uint8_t table9_1_ops_[32];
|
328
|
+
static const uint8_t table9_2_emit_[36];
|
329
|
+
static const uint8_t table9_2_ops_[32];
|
330
|
+
static const uint8_t table9_3_emit_[56];
|
331
|
+
static const uint8_t table9_3_ops_[32];
|
332
|
+
static const uint8_t table9_4_emit_[15];
|
333
|
+
static const uint8_t table9_4_ops_[32];
|
334
|
+
static const uint8_t table9_5_emit_[28];
|
335
|
+
static const uint8_t table9_6_emit_[36];
|
336
|
+
static const uint8_t table9_7_emit_[56];
|
337
|
+
static const uint8_t table9_8_emit_[15];
|
338
|
+
static const uint8_t table9_8_ops_[32];
|
339
|
+
static const uint8_t table9_9_emit_[28];
|
340
|
+
static const uint8_t table9_10_emit_[36];
|
341
|
+
static const uint8_t table9_11_emit_[56];
|
342
|
+
static const uint8_t table9_12_emit_[15];
|
343
|
+
static const uint8_t table9_12_ops_[32];
|
344
|
+
static const uint8_t table9_13_emit_[28];
|
345
|
+
static const uint8_t table9_14_emit_[36];
|
346
|
+
static const uint8_t table9_15_emit_[56];
|
347
|
+
static const uint8_t table9_16_emit_[15];
|
348
|
+
static const uint8_t table9_16_ops_[32];
|
349
|
+
static const uint8_t table9_17_emit_[28];
|
350
|
+
static const uint8_t table9_18_emit_[36];
|
351
|
+
static const uint8_t table9_19_emit_[56];
|
352
|
+
static const uint8_t table9_20_emit_[15];
|
353
|
+
static const uint8_t table9_20_ops_[32];
|
354
|
+
static const uint8_t table9_21_emit_[28];
|
355
|
+
static const uint8_t table9_22_emit_[36];
|
356
|
+
static const uint8_t table9_23_emit_[56];
|
357
|
+
static const uint8_t table9_24_emit_[15];
|
358
|
+
static const uint8_t table9_24_ops_[32];
|
359
|
+
static const uint8_t table9_25_emit_[28];
|
360
|
+
static const uint8_t table9_26_emit_[36];
|
361
|
+
static const uint8_t table9_27_emit_[56];
|
362
|
+
static const uint8_t table9_28_emit_[16];
|
363
|
+
static const uint8_t table9_28_ops_[32];
|
364
|
+
static const uint8_t table9_29_emit_[28];
|
365
|
+
static const uint8_t table9_30_emit_[36];
|
366
|
+
static const uint8_t table9_31_emit_[56];
|
367
|
+
static const uint8_t table9_32_emit_[16];
|
368
|
+
static const uint8_t table9_33_emit_[27];
|
369
|
+
static const uint8_t table9_33_ops_[32];
|
370
|
+
static const uint8_t table9_34_emit_[36];
|
371
|
+
static const uint8_t table9_35_emit_[56];
|
372
|
+
static const uint8_t table9_36_emit_[16];
|
373
|
+
static const uint8_t table9_37_emit_[27];
|
374
|
+
static const uint8_t table9_37_ops_[32];
|
375
|
+
static const uint8_t table9_38_emit_[36];
|
376
|
+
static const uint8_t table9_39_emit_[56];
|
377
|
+
static const uint8_t table9_40_emit_[43];
|
378
|
+
static const uint8_t table9_40_ops_[32];
|
379
|
+
static const uint8_t table9_41_emit_[28];
|
380
|
+
static const uint8_t table9_41_ops_[32];
|
381
|
+
static const uint8_t table9_42_emit_[43];
|
382
|
+
static const uint8_t table9_42_ops_[32];
|
383
|
+
static const uint8_t table9_43_emit_[28];
|
384
|
+
static const uint8_t table9_44_emit_[43];
|
385
|
+
static const uint8_t table9_44_ops_[32];
|
386
|
+
static const uint8_t table9_45_emit_[28];
|
387
|
+
static const uint8_t table9_46_emit_[43];
|
388
|
+
static const uint8_t table9_46_ops_[32];
|
389
|
+
static const uint8_t table9_47_emit_[28];
|
390
|
+
static const uint8_t table9_48_emit_[43];
|
391
|
+
static const uint8_t table9_48_ops_[32];
|
392
|
+
static const uint8_t table9_49_emit_[28];
|
393
|
+
static const uint8_t table9_50_emit_[43];
|
394
|
+
static const uint8_t table9_50_ops_[32];
|
395
|
+
static const uint8_t table9_51_emit_[28];
|
396
|
+
static const uint8_t table9_52_emit_[43];
|
397
|
+
static const uint8_t table9_52_ops_[32];
|
398
|
+
static const uint8_t table9_53_emit_[28];
|
399
|
+
static const uint8_t table9_54_emit_[43];
|
400
|
+
static const uint8_t table9_54_ops_[32];
|
401
|
+
static const uint8_t table9_55_emit_[28];
|
402
|
+
static const uint8_t table9_56_emit_[43];
|
403
|
+
static const uint8_t table9_56_ops_[32];
|
404
|
+
static const uint8_t table9_57_emit_[28];
|
405
|
+
static const uint8_t table9_58_emit_[43];
|
406
|
+
static const uint8_t table9_58_ops_[32];
|
407
|
+
static const uint8_t table9_59_emit_[28];
|
408
|
+
static const uint8_t table9_60_emit_[43];
|
409
|
+
static const uint8_t table9_60_ops_[32];
|
410
|
+
static const uint8_t table9_61_emit_[28];
|
411
|
+
static const uint8_t table9_62_emit_[44];
|
412
|
+
static const uint8_t table9_62_ops_[32];
|
413
|
+
static const uint8_t table9_63_emit_[28];
|
414
|
+
static const uint8_t table9_64_emit_[44];
|
415
|
+
static const uint8_t table9_65_emit_[27];
|
416
|
+
static const uint8_t table9_65_ops_[32];
|
417
|
+
static const uint8_t table9_66_emit_[44];
|
418
|
+
static const uint8_t table9_67_emit_[27];
|
419
|
+
static const uint8_t table9_67_ops_[32];
|
420
|
+
static const uint8_t table9_68_emit_[44];
|
421
|
+
static const uint8_t table9_69_emit_[27];
|
422
|
+
static const uint8_t table9_69_ops_[32];
|
423
|
+
static const uint8_t table9_70_emit_[44];
|
424
|
+
static const uint8_t table9_71_emit_[27];
|
425
|
+
static const uint8_t table9_71_ops_[32];
|
426
|
+
static const uint8_t table9_72_emit_[44];
|
427
|
+
static const uint8_t table9_73_emit_[27];
|
428
|
+
static const uint8_t table9_73_ops_[32];
|
429
|
+
static const uint8_t table9_74_emit_[44];
|
430
|
+
static const uint8_t table9_75_emit_[27];
|
431
|
+
static const uint8_t table9_75_ops_[32];
|
432
|
+
static const uint8_t table9_76_emit_[44];
|
433
|
+
static const uint8_t table9_77_emit_[27];
|
434
|
+
static const uint8_t table9_77_ops_[32];
|
435
|
+
static const uint8_t table9_78_emit_[44];
|
436
|
+
static const uint8_t table9_79_emit_[27];
|
437
|
+
static const uint8_t table9_79_ops_[32];
|
438
|
+
static const uint8_t table9_80_emit_[44];
|
439
|
+
static const uint8_t table9_81_emit_[27];
|
440
|
+
static const uint8_t table9_81_ops_[32];
|
441
|
+
static const uint8_t table9_82_emit_[44];
|
442
|
+
static const uint8_t table9_83_emit_[27];
|
443
|
+
static const uint8_t table9_83_ops_[32];
|
444
|
+
static const uint8_t table9_84_emit_[44];
|
445
|
+
static const uint8_t table9_85_emit_[27];
|
446
|
+
static const uint8_t table9_85_ops_[32];
|
447
|
+
static const uint8_t table9_86_emit_[44];
|
448
|
+
static const uint8_t table9_87_emit_[27];
|
449
|
+
static const uint8_t table9_87_ops_[32];
|
450
|
+
static const uint8_t table9_88_emit_[44];
|
451
|
+
static const uint8_t table9_89_emit_[27];
|
452
|
+
static const uint8_t table9_89_ops_[32];
|
453
|
+
static const uint8_t table9_90_emit_[44];
|
454
|
+
static const uint8_t table9_91_emit_[28];
|
455
|
+
static const uint8_t table9_92_emit_[20];
|
456
|
+
static const uint8_t table9_92_ops_[32];
|
457
|
+
static const uint8_t table9_93_emit_[20];
|
458
|
+
static const uint8_t table9_94_emit_[20];
|
459
|
+
static const uint8_t table9_95_emit_[20];
|
460
|
+
static const uint8_t table9_96_emit_[20];
|
461
|
+
static const uint8_t table9_97_emit_[20];
|
462
|
+
static const uint8_t table9_98_emit_[20];
|
463
|
+
static const uint8_t table9_99_emit_[20];
|
464
|
+
static const uint8_t table9_100_emit_[20];
|
465
|
+
static const uint8_t table9_101_emit_[20];
|
466
|
+
static const uint8_t table9_102_emit_[20];
|
467
|
+
static const uint8_t table9_103_emit_[20];
|
468
|
+
static const uint8_t table9_104_emit_[20];
|
469
|
+
static const uint8_t table9_105_emit_[20];
|
470
|
+
static const uint8_t table9_106_emit_[20];
|
471
|
+
static const uint8_t table9_107_emit_[20];
|
472
|
+
static const uint8_t table9_108_emit_[20];
|
473
|
+
static const uint8_t table9_109_emit_[20];
|
474
|
+
static const uint8_t table9_110_emit_[20];
|
475
|
+
static const uint8_t table9_111_emit_[20];
|
476
|
+
static const uint8_t table9_112_emit_[20];
|
477
|
+
static const uint8_t table9_113_emit_[20];
|
478
|
+
static const uint8_t table9_114_emit_[20];
|
479
|
+
static const uint8_t table9_115_emit_[20];
|
480
|
+
static const uint8_t table9_116_emit_[20];
|
481
|
+
static const uint8_t table9_117_emit_[20];
|
482
|
+
static const uint8_t table9_118_emit_[20];
|
483
|
+
static const uint8_t table9_119_emit_[20];
|
484
|
+
static const uint8_t table9_120_emit_[20];
|
485
|
+
static const uint8_t table9_121_emit_[20];
|
486
|
+
static const uint8_t table9_122_emit_[20];
|
487
|
+
static const uint8_t table9_123_emit_[20];
|
488
|
+
static const uint8_t table9_124_emit_[2];
|
489
|
+
static const uint8_t table9_124_ops_[32];
|
490
|
+
static const uint8_t table9_125_emit_[2];
|
491
|
+
static const uint8_t table9_126_emit_[2];
|
492
|
+
static const uint8_t table9_127_emit_[10];
|
493
|
+
static const uint8_t table9_127_ops_[32];
|
494
|
+
static const uint8_t* const table9_emit_[128];
|
495
|
+
static const uint8_t* const table9_ops_[128];
|
496
|
+
static const uint16_t table10_0_inner_[9];
|
497
|
+
static const uint8_t table10_0_outer_[64];
|
498
|
+
static const uint16_t table10_1_inner_[15];
|
499
|
+
static const uint8_t table10_1_outer_[64];
|
500
|
+
static const uint16_t table10_2_inner_[19];
|
501
|
+
static const uint8_t table10_2_outer_[64];
|
502
|
+
static const uint8_t table10_3_emit_[68];
|
503
|
+
static const uint16_t table10_3_inner_[36];
|
504
|
+
static const uint8_t table10_3_outer_[64];
|
505
|
+
static const uint16_t table10_4_inner_[9];
|
506
|
+
static const uint8_t table10_7_emit_[68];
|
507
|
+
static const uint16_t table10_8_inner_[9];
|
508
|
+
static const uint8_t table10_11_emit_[68];
|
509
|
+
static const uint16_t table10_12_inner_[9];
|
510
|
+
static const uint8_t table10_15_emit_[68];
|
511
|
+
static const uint16_t table10_16_inner_[9];
|
512
|
+
static const uint8_t table10_19_emit_[68];
|
513
|
+
static const uint16_t table10_20_inner_[9];
|
514
|
+
static const uint8_t table10_23_emit_[68];
|
515
|
+
static const uint16_t table10_24_inner_[9];
|
516
|
+
static const uint8_t table10_27_emit_[68];
|
517
|
+
static const uint16_t table10_28_inner_[9];
|
518
|
+
static const uint8_t table10_31_emit_[68];
|
519
|
+
static const uint16_t table10_33_inner_[15];
|
520
|
+
static const uint8_t table10_35_emit_[68];
|
521
|
+
static const uint16_t table10_37_inner_[15];
|
522
|
+
static const uint8_t table10_39_emit_[68];
|
523
|
+
static const uint16_t table10_40_inner_[23];
|
524
|
+
static const uint8_t table10_40_outer_[64];
|
525
|
+
static const uint8_t table10_41_emit_[92];
|
526
|
+
static const uint16_t table10_41_inner_[48];
|
527
|
+
static const uint8_t table10_41_outer_[64];
|
528
|
+
static const uint16_t table10_42_inner_[23];
|
529
|
+
static const uint8_t table10_43_emit_[92];
|
530
|
+
static const uint16_t table10_44_inner_[23];
|
531
|
+
static const uint8_t table10_45_emit_[92];
|
532
|
+
static const uint16_t table10_46_inner_[23];
|
533
|
+
static const uint8_t table10_47_emit_[92];
|
534
|
+
static const uint16_t table10_48_inner_[23];
|
535
|
+
static const uint8_t table10_49_emit_[92];
|
536
|
+
static const uint16_t table10_50_inner_[23];
|
537
|
+
static const uint8_t table10_51_emit_[92];
|
538
|
+
static const uint16_t table10_52_inner_[23];
|
539
|
+
static const uint8_t table10_53_emit_[92];
|
540
|
+
static const uint16_t table10_54_inner_[23];
|
541
|
+
static const uint8_t table10_55_emit_[92];
|
542
|
+
static const uint16_t table10_56_inner_[23];
|
543
|
+
static const uint8_t table10_57_emit_[92];
|
544
|
+
static const uint16_t table10_58_inner_[23];
|
545
|
+
static const uint8_t table10_59_emit_[92];
|
546
|
+
static const uint16_t table10_60_inner_[23];
|
547
|
+
static const uint8_t table10_61_emit_[92];
|
548
|
+
static const uint16_t table10_62_inner_[23];
|
549
|
+
static const uint8_t table10_63_emit_[92];
|
550
|
+
static const uint8_t table10_65_emit_[91];
|
551
|
+
static const uint16_t table10_65_inner_[48];
|
552
|
+
static const uint8_t table10_67_emit_[91];
|
553
|
+
static const uint16_t table10_67_inner_[48];
|
554
|
+
static const uint8_t table10_69_emit_[91];
|
555
|
+
static const uint16_t table10_69_inner_[48];
|
556
|
+
static const uint8_t table10_71_emit_[91];
|
557
|
+
static const uint16_t table10_71_inner_[48];
|
558
|
+
static const uint8_t table10_73_emit_[91];
|
559
|
+
static const uint16_t table10_73_inner_[48];
|
560
|
+
static const uint8_t table10_75_emit_[91];
|
561
|
+
static const uint16_t table10_75_inner_[48];
|
562
|
+
static const uint8_t table10_77_emit_[91];
|
563
|
+
static const uint16_t table10_77_inner_[48];
|
564
|
+
static const uint8_t table10_79_emit_[91];
|
565
|
+
static const uint16_t table10_79_inner_[48];
|
566
|
+
static const uint8_t table10_81_emit_[91];
|
567
|
+
static const uint16_t table10_81_inner_[48];
|
568
|
+
static const uint8_t table10_83_emit_[91];
|
569
|
+
static const uint16_t table10_83_inner_[48];
|
570
|
+
static const uint8_t table10_85_emit_[91];
|
571
|
+
static const uint16_t table10_85_inner_[48];
|
572
|
+
static const uint8_t table10_87_emit_[91];
|
573
|
+
static const uint16_t table10_87_inner_[48];
|
574
|
+
static const uint8_t table10_89_emit_[91];
|
575
|
+
static const uint16_t table10_89_inner_[48];
|
576
|
+
static const uint8_t table10_91_emit_[91];
|
577
|
+
static const uint16_t table10_91_inner_[48];
|
578
|
+
static const uint8_t table10_92_emit_[72];
|
579
|
+
static const uint16_t table10_92_inner_[38];
|
580
|
+
static const uint8_t table10_93_emit_[72];
|
581
|
+
static const uint8_t table10_94_emit_[72];
|
582
|
+
static const uint8_t table10_95_emit_[72];
|
583
|
+
static const uint8_t table10_96_emit_[72];
|
584
|
+
static const uint8_t table10_97_emit_[72];
|
585
|
+
static const uint8_t table10_98_emit_[72];
|
586
|
+
static const uint8_t table10_99_emit_[72];
|
587
|
+
static const uint8_t table10_100_emit_[72];
|
588
|
+
static const uint8_t table10_101_emit_[72];
|
589
|
+
static const uint8_t table10_102_emit_[72];
|
590
|
+
static const uint8_t table10_103_emit_[72];
|
591
|
+
static const uint8_t table10_104_emit_[72];
|
592
|
+
static const uint8_t table10_105_emit_[72];
|
593
|
+
static const uint8_t table10_106_emit_[72];
|
594
|
+
static const uint8_t table10_107_emit_[72];
|
595
|
+
static const uint8_t table10_108_emit_[72];
|
596
|
+
static const uint8_t table10_109_emit_[72];
|
597
|
+
static const uint8_t table10_110_emit_[72];
|
598
|
+
static const uint8_t table10_111_emit_[72];
|
599
|
+
static const uint8_t table10_112_emit_[72];
|
600
|
+
static const uint8_t table10_113_emit_[72];
|
601
|
+
static const uint8_t table10_114_emit_[72];
|
602
|
+
static const uint8_t table10_115_emit_[72];
|
603
|
+
static const uint8_t table10_116_emit_[72];
|
604
|
+
static const uint8_t table10_117_emit_[72];
|
605
|
+
static const uint8_t table10_118_emit_[72];
|
606
|
+
static const uint8_t table10_119_emit_[72];
|
607
|
+
static const uint8_t table10_120_emit_[72];
|
608
|
+
static const uint8_t table10_121_emit_[72];
|
609
|
+
static const uint8_t table10_122_emit_[72];
|
610
|
+
static const uint8_t table10_123_emit_[72];
|
611
|
+
static const uint8_t table10_124_emit_[40];
|
612
|
+
static const uint8_t table10_125_emit_[40];
|
613
|
+
static const uint8_t table10_126_emit_[40];
|
614
|
+
static const uint8_t table10_127_emit_[16];
|
615
|
+
static const uint16_t table10_127_inner_[18];
|
616
|
+
static const uint8_t table10_127_outer_[64];
|
617
|
+
static const uint8_t* const table10_emit_[128];
|
618
|
+
static const uint16_t* const table10_inner_[128];
|
619
|
+
static const uint8_t* const table10_outer_[128];
|
620
|
+
static const uint8_t table11_0_emit_[7];
|
621
|
+
static const uint16_t table11_0_inner_[5];
|
622
|
+
static const uint8_t table11_1_emit_[8];
|
623
|
+
static const uint16_t table11_1_inner_[5];
|
624
|
+
static const uint8_t table11_2_emit_[12];
|
625
|
+
static const uint16_t table11_2_inner_[7];
|
626
|
+
static const uint8_t table11_2_outer_[64];
|
627
|
+
static const uint8_t table11_3_emit_[16];
|
628
|
+
static const uint8_t table11_4_emit_[16];
|
629
|
+
static const uint8_t table11_5_emit_[20];
|
630
|
+
static const uint16_t table11_5_inner_[11];
|
631
|
+
static const uint8_t table11_5_outer_[64];
|
632
|
+
static const uint8_t table11_6_emit_[32];
|
633
|
+
static const uint16_t table11_6_inner_[17];
|
634
|
+
static const uint8_t table11_6_outer_[64];
|
635
|
+
static const uint8_t table11_7_emit_[36];
|
636
|
+
static const uint16_t table11_7_inner_[20];
|
637
|
+
static const uint8_t table11_7_outer_[64];
|
638
|
+
static const uint8_t table11_8_emit_[7];
|
639
|
+
static const uint16_t table11_8_inner_[5];
|
640
|
+
static const uint8_t table11_9_emit_[8];
|
641
|
+
static const uint8_t table11_10_emit_[12];
|
642
|
+
static const uint8_t table11_11_emit_[16];
|
643
|
+
static const uint8_t table11_12_emit_[16];
|
644
|
+
static const uint8_t table11_13_emit_[20];
|
645
|
+
static const uint8_t table11_14_emit_[32];
|
646
|
+
static const uint8_t table11_15_emit_[36];
|
647
|
+
static const uint8_t table11_16_emit_[7];
|
648
|
+
static const uint16_t table11_16_inner_[5];
|
649
|
+
static const uint8_t table11_17_emit_[8];
|
650
|
+
static const uint8_t table11_18_emit_[12];
|
651
|
+
static const uint8_t table11_19_emit_[16];
|
652
|
+
static const uint8_t table11_20_emit_[16];
|
653
|
+
static const uint8_t table11_21_emit_[20];
|
654
|
+
static const uint8_t table11_22_emit_[32];
|
655
|
+
static const uint8_t table11_23_emit_[36];
|
656
|
+
static const uint8_t table11_24_emit_[8];
|
657
|
+
static const uint8_t table11_25_emit_[8];
|
658
|
+
static const uint8_t table11_26_emit_[12];
|
659
|
+
static const uint8_t table11_27_emit_[16];
|
660
|
+
static const uint8_t table11_28_emit_[16];
|
661
|
+
static const uint8_t table11_29_emit_[20];
|
662
|
+
static const uint8_t table11_30_emit_[32];
|
663
|
+
static const uint8_t table11_31_emit_[36];
|
664
|
+
static const uint8_t table11_32_emit_[8];
|
665
|
+
static const uint8_t table11_33_emit_[7];
|
666
|
+
static const uint8_t table11_34_emit_[12];
|
667
|
+
static const uint8_t table11_35_emit_[16];
|
668
|
+
static const uint8_t table11_36_emit_[16];
|
669
|
+
static const uint8_t table11_37_emit_[20];
|
670
|
+
static const uint8_t table11_38_emit_[32];
|
671
|
+
static const uint8_t table11_39_emit_[36];
|
672
|
+
static const uint8_t table11_40_emit_[8];
|
673
|
+
static const uint8_t table11_41_emit_[7];
|
674
|
+
static const uint8_t table11_42_emit_[12];
|
675
|
+
static const uint8_t table11_43_emit_[16];
|
676
|
+
static const uint8_t table11_44_emit_[16];
|
677
|
+
static const uint8_t table11_45_emit_[20];
|
678
|
+
static const uint8_t table11_46_emit_[32];
|
679
|
+
static const uint8_t table11_47_emit_[36];
|
680
|
+
static const uint8_t table11_48_emit_[8];
|
681
|
+
static const uint8_t table11_49_emit_[7];
|
682
|
+
static const uint8_t table11_50_emit_[12];
|
683
|
+
static const uint8_t table11_51_emit_[16];
|
684
|
+
static const uint8_t table11_52_emit_[16];
|
685
|
+
static const uint8_t table11_53_emit_[20];
|
686
|
+
static const uint8_t table11_54_emit_[32];
|
687
|
+
static const uint8_t table11_55_emit_[36];
|
688
|
+
static const uint8_t table11_56_emit_[8];
|
689
|
+
static const uint8_t table11_57_emit_[8];
|
690
|
+
static const uint8_t table11_58_emit_[12];
|
691
|
+
static const uint8_t table11_59_emit_[16];
|
692
|
+
static const uint8_t table11_60_emit_[16];
|
693
|
+
static const uint8_t table11_61_emit_[20];
|
694
|
+
static const uint8_t table11_62_emit_[32];
|
695
|
+
static const uint8_t table11_63_emit_[36];
|
696
|
+
static const uint8_t table11_64_emit_[8];
|
697
|
+
static const uint8_t table11_65_emit_[8];
|
698
|
+
static const uint8_t table11_66_emit_[11];
|
699
|
+
static const uint16_t table11_66_inner_[7];
|
700
|
+
static const uint8_t table11_67_emit_[16];
|
701
|
+
static const uint8_t table11_68_emit_[16];
|
702
|
+
static const uint8_t table11_69_emit_[20];
|
703
|
+
static const uint8_t table11_70_emit_[32];
|
704
|
+
static const uint8_t table11_71_emit_[36];
|
705
|
+
static const uint8_t table11_72_emit_[8];
|
706
|
+
static const uint8_t table11_73_emit_[8];
|
707
|
+
static const uint8_t table11_74_emit_[11];
|
708
|
+
static const uint16_t table11_74_inner_[7];
|
709
|
+
static const uint8_t table11_75_emit_[16];
|
710
|
+
static const uint8_t table11_76_emit_[16];
|
711
|
+
static const uint8_t table11_77_emit_[20];
|
712
|
+
static const uint8_t table11_78_emit_[32];
|
713
|
+
static const uint8_t table11_79_emit_[36];
|
714
|
+
static const uint8_t table11_80_emit_[16];
|
715
|
+
static const uint8_t table11_81_emit_[27];
|
716
|
+
static const uint16_t table11_81_inner_[15];
|
717
|
+
static const uint8_t table11_82_emit_[36];
|
718
|
+
static const uint8_t table11_83_emit_[68];
|
719
|
+
static const uint8_t table11_84_emit_[16];
|
720
|
+
static const uint8_t table11_85_emit_[27];
|
721
|
+
static const uint16_t table11_85_inner_[15];
|
722
|
+
static const uint8_t table11_86_emit_[36];
|
723
|
+
static const uint8_t table11_87_emit_[68];
|
724
|
+
static const uint8_t table11_88_emit_[16];
|
725
|
+
static const uint8_t table11_89_emit_[27];
|
726
|
+
static const uint16_t table11_89_inner_[15];
|
727
|
+
static const uint8_t table11_90_emit_[36];
|
728
|
+
static const uint8_t table11_91_emit_[68];
|
729
|
+
static const uint8_t table11_92_emit_[16];
|
730
|
+
static const uint8_t table11_93_emit_[27];
|
731
|
+
static const uint16_t table11_93_inner_[15];
|
732
|
+
static const uint8_t table11_94_emit_[36];
|
733
|
+
static const uint8_t table11_95_emit_[68];
|
734
|
+
static const uint8_t table11_96_emit_[16];
|
735
|
+
static const uint8_t table11_97_emit_[27];
|
736
|
+
static const uint16_t table11_97_inner_[15];
|
737
|
+
static const uint8_t table11_98_emit_[36];
|
738
|
+
static const uint8_t table11_99_emit_[68];
|
739
|
+
static const uint8_t table11_100_emit_[16];
|
740
|
+
static const uint8_t table11_101_emit_[27];
|
741
|
+
static const uint16_t table11_101_inner_[15];
|
742
|
+
static const uint8_t table11_102_emit_[36];
|
743
|
+
static const uint8_t table11_103_emit_[68];
|
744
|
+
static const uint8_t table11_104_emit_[16];
|
745
|
+
static const uint8_t table11_105_emit_[27];
|
746
|
+
static const uint16_t table11_105_inner_[15];
|
747
|
+
static const uint8_t table11_106_emit_[36];
|
748
|
+
static const uint8_t table11_107_emit_[68];
|
749
|
+
static const uint8_t table11_108_emit_[16];
|
750
|
+
static const uint8_t table11_109_emit_[27];
|
751
|
+
static const uint16_t table11_109_inner_[15];
|
752
|
+
static const uint8_t table11_110_emit_[36];
|
753
|
+
static const uint8_t table11_111_emit_[68];
|
754
|
+
static const uint8_t table11_112_emit_[16];
|
755
|
+
static const uint8_t table11_113_emit_[27];
|
756
|
+
static const uint16_t table11_113_inner_[15];
|
757
|
+
static const uint8_t table11_114_emit_[36];
|
758
|
+
static const uint8_t table11_115_emit_[68];
|
759
|
+
static const uint8_t table11_116_emit_[16];
|
760
|
+
static const uint8_t table11_117_emit_[27];
|
761
|
+
static const uint16_t table11_117_inner_[15];
|
762
|
+
static const uint8_t table11_118_emit_[36];
|
763
|
+
static const uint8_t table11_119_emit_[68];
|
764
|
+
static const uint8_t table11_120_emit_[16];
|
765
|
+
static const uint8_t table11_121_emit_[27];
|
766
|
+
static const uint16_t table11_121_inner_[15];
|
767
|
+
static const uint8_t table11_122_emit_[36];
|
768
|
+
static const uint8_t table11_123_emit_[68];
|
769
|
+
static const uint8_t table11_124_emit_[16];
|
770
|
+
static const uint8_t table11_125_emit_[28];
|
771
|
+
static const uint8_t table11_126_emit_[36];
|
772
|
+
static const uint8_t table11_127_emit_[68];
|
773
|
+
static const uint8_t table11_128_emit_[16];
|
774
|
+
static const uint8_t table11_129_emit_[28];
|
775
|
+
static const uint8_t table11_130_emit_[35];
|
776
|
+
static const uint16_t table11_130_inner_[19];
|
777
|
+
static const uint8_t table11_131_emit_[68];
|
778
|
+
static const uint8_t table11_132_emit_[16];
|
779
|
+
static const uint8_t table11_133_emit_[28];
|
780
|
+
static const uint8_t table11_134_emit_[35];
|
781
|
+
static const uint16_t table11_134_inner_[19];
|
782
|
+
static const uint8_t table11_135_emit_[68];
|
783
|
+
static const uint8_t table11_136_emit_[16];
|
784
|
+
static const uint8_t table11_137_emit_[28];
|
785
|
+
static const uint8_t table11_138_emit_[35];
|
786
|
+
static const uint16_t table11_138_inner_[19];
|
787
|
+
static const uint8_t table11_139_emit_[68];
|
788
|
+
static const uint8_t table11_140_emit_[16];
|
789
|
+
static const uint8_t table11_141_emit_[28];
|
790
|
+
static const uint8_t table11_142_emit_[35];
|
791
|
+
static const uint16_t table11_142_inner_[19];
|
792
|
+
static const uint8_t table11_143_emit_[68];
|
793
|
+
static const uint8_t table11_144_emit_[16];
|
794
|
+
static const uint8_t table11_145_emit_[28];
|
795
|
+
static const uint8_t table11_146_emit_[35];
|
796
|
+
static const uint16_t table11_146_inner_[19];
|
797
|
+
static const uint8_t table11_147_emit_[68];
|
798
|
+
static const uint8_t table11_148_emit_[16];
|
799
|
+
static const uint8_t table11_149_emit_[28];
|
800
|
+
static const uint8_t table11_150_emit_[35];
|
801
|
+
static const uint16_t table11_150_inner_[19];
|
802
|
+
static const uint8_t table11_151_emit_[68];
|
803
|
+
static const uint8_t table11_152_emit_[16];
|
804
|
+
static const uint8_t table11_153_emit_[28];
|
805
|
+
static const uint8_t table11_154_emit_[35];
|
806
|
+
static const uint16_t table11_154_inner_[19];
|
807
|
+
static const uint8_t table11_155_emit_[68];
|
808
|
+
static const uint8_t table11_156_emit_[16];
|
809
|
+
static const uint8_t table11_157_emit_[28];
|
810
|
+
static const uint8_t table11_158_emit_[35];
|
811
|
+
static const uint16_t table11_158_inner_[19];
|
812
|
+
static const uint8_t table11_159_emit_[68];
|
813
|
+
static const uint8_t table11_160_emit_[16];
|
814
|
+
static const uint8_t table11_161_emit_[28];
|
815
|
+
static const uint8_t table11_162_emit_[35];
|
816
|
+
static const uint16_t table11_162_inner_[19];
|
817
|
+
static const uint8_t table11_163_emit_[68];
|
818
|
+
static const uint8_t table11_164_emit_[16];
|
819
|
+
static const uint8_t table11_165_emit_[28];
|
820
|
+
static const uint8_t table11_166_emit_[35];
|
821
|
+
static const uint16_t table11_166_inner_[19];
|
822
|
+
static const uint8_t table11_167_emit_[68];
|
823
|
+
static const uint8_t table11_168_emit_[16];
|
824
|
+
static const uint8_t table11_169_emit_[28];
|
825
|
+
static const uint8_t table11_170_emit_[35];
|
826
|
+
static const uint16_t table11_170_inner_[19];
|
827
|
+
static const uint8_t table11_171_emit_[68];
|
828
|
+
static const uint8_t table11_172_emit_[16];
|
829
|
+
static const uint8_t table11_173_emit_[28];
|
830
|
+
static const uint8_t table11_174_emit_[35];
|
831
|
+
static const uint16_t table11_174_inner_[19];
|
832
|
+
static const uint8_t table11_175_emit_[68];
|
833
|
+
static const uint8_t table11_176_emit_[16];
|
834
|
+
static const uint8_t table11_177_emit_[28];
|
835
|
+
static const uint8_t table11_178_emit_[35];
|
836
|
+
static const uint16_t table11_178_inner_[19];
|
837
|
+
static const uint8_t table11_179_emit_[68];
|
838
|
+
static const uint8_t table11_180_emit_[16];
|
839
|
+
static const uint8_t table11_181_emit_[28];
|
840
|
+
static const uint8_t table11_182_emit_[35];
|
841
|
+
static const uint16_t table11_182_inner_[19];
|
842
|
+
static const uint8_t table11_183_emit_[68];
|
843
|
+
static const uint8_t table11_184_emit_[44];
|
844
|
+
static const uint8_t table11_185_emit_[91];
|
845
|
+
static const uint16_t table11_185_inner_[48];
|
846
|
+
static const uint8_t table11_186_emit_[44];
|
847
|
+
static const uint8_t table11_187_emit_[91];
|
848
|
+
static const uint16_t table11_187_inner_[48];
|
849
|
+
static const uint8_t table11_188_emit_[44];
|
850
|
+
static const uint8_t table11_189_emit_[91];
|
851
|
+
static const uint16_t table11_189_inner_[48];
|
852
|
+
static const uint8_t table11_190_emit_[44];
|
853
|
+
static const uint8_t table11_191_emit_[91];
|
854
|
+
static const uint16_t table11_191_inner_[48];
|
855
|
+
static const uint8_t table11_192_emit_[44];
|
856
|
+
static const uint8_t table11_193_emit_[91];
|
857
|
+
static const uint16_t table11_193_inner_[48];
|
858
|
+
static const uint8_t table11_194_emit_[44];
|
859
|
+
static const uint8_t table11_195_emit_[91];
|
860
|
+
static const uint16_t table11_195_inner_[48];
|
861
|
+
static const uint8_t table11_196_emit_[44];
|
862
|
+
static const uint8_t table11_197_emit_[91];
|
863
|
+
static const uint16_t table11_197_inner_[48];
|
864
|
+
static const uint8_t table11_198_emit_[44];
|
865
|
+
static const uint8_t table11_199_emit_[91];
|
866
|
+
static const uint16_t table11_199_inner_[48];
|
867
|
+
static const uint8_t table11_200_emit_[44];
|
868
|
+
static const uint8_t table11_201_emit_[91];
|
869
|
+
static const uint16_t table11_201_inner_[48];
|
870
|
+
static const uint8_t table11_202_emit_[44];
|
871
|
+
static const uint8_t table11_203_emit_[91];
|
872
|
+
static const uint16_t table11_203_inner_[48];
|
873
|
+
static const uint8_t table11_204_emit_[44];
|
874
|
+
static const uint8_t table11_205_emit_[91];
|
875
|
+
static const uint16_t table11_205_inner_[48];
|
876
|
+
static const uint8_t table11_206_emit_[44];
|
877
|
+
static const uint8_t table11_207_emit_[91];
|
878
|
+
static const uint16_t table11_207_inner_[48];
|
879
|
+
static const uint8_t table11_208_emit_[44];
|
880
|
+
static const uint8_t table11_209_emit_[91];
|
881
|
+
static const uint16_t table11_209_inner_[48];
|
882
|
+
static const uint8_t table11_210_emit_[44];
|
883
|
+
static const uint8_t table11_211_emit_[91];
|
884
|
+
static const uint16_t table11_211_inner_[48];
|
885
|
+
static const uint8_t table11_212_emit_[44];
|
886
|
+
static const uint8_t table11_213_emit_[91];
|
887
|
+
static const uint16_t table11_213_inner_[48];
|
888
|
+
static const uint8_t table11_214_emit_[44];
|
889
|
+
static const uint8_t table11_215_emit_[91];
|
890
|
+
static const uint16_t table11_215_inner_[48];
|
891
|
+
static const uint8_t table11_216_emit_[44];
|
892
|
+
static const uint8_t table11_217_emit_[91];
|
893
|
+
static const uint16_t table11_217_inner_[48];
|
894
|
+
static const uint8_t table11_218_emit_[44];
|
895
|
+
static const uint8_t table11_219_emit_[91];
|
896
|
+
static const uint16_t table11_219_inner_[48];
|
897
|
+
static const uint8_t table11_220_emit_[44];
|
898
|
+
static const uint8_t table11_221_emit_[91];
|
899
|
+
static const uint16_t table11_221_inner_[48];
|
900
|
+
static const uint8_t table11_222_emit_[44];
|
901
|
+
static const uint8_t table11_223_emit_[91];
|
902
|
+
static const uint16_t table11_223_inner_[48];
|
903
|
+
static const uint8_t table11_224_emit_[44];
|
904
|
+
static const uint8_t table11_225_emit_[91];
|
905
|
+
static const uint16_t table11_225_inner_[48];
|
906
|
+
static const uint8_t table11_226_emit_[44];
|
907
|
+
static const uint8_t table11_227_emit_[91];
|
908
|
+
static const uint16_t table11_227_inner_[48];
|
909
|
+
static const uint8_t table11_228_emit_[44];
|
910
|
+
static const uint8_t table11_229_emit_[91];
|
911
|
+
static const uint16_t table11_229_inner_[48];
|
912
|
+
static const uint8_t table11_230_emit_[44];
|
913
|
+
static const uint8_t table11_231_emit_[91];
|
914
|
+
static const uint16_t table11_231_inner_[48];
|
915
|
+
static const uint8_t table11_232_emit_[44];
|
916
|
+
static const uint8_t table11_233_emit_[91];
|
917
|
+
static const uint16_t table11_233_inner_[48];
|
918
|
+
static const uint8_t table11_234_emit_[44];
|
919
|
+
static const uint8_t table11_235_emit_[91];
|
920
|
+
static const uint16_t table11_235_inner_[48];
|
921
|
+
static const uint8_t table11_236_emit_[44];
|
922
|
+
static const uint8_t table11_237_emit_[91];
|
923
|
+
static const uint16_t table11_237_inner_[48];
|
924
|
+
static const uint8_t table11_238_emit_[44];
|
925
|
+
static const uint8_t table11_239_emit_[91];
|
926
|
+
static const uint16_t table11_239_inner_[48];
|
927
|
+
static const uint8_t table11_240_emit_[44];
|
928
|
+
static const uint8_t table11_241_emit_[91];
|
929
|
+
static const uint16_t table11_241_inner_[48];
|
930
|
+
static const uint8_t table11_242_emit_[44];
|
931
|
+
static const uint8_t table11_243_emit_[91];
|
932
|
+
static const uint16_t table11_243_inner_[48];
|
933
|
+
static const uint8_t table11_244_emit_[44];
|
934
|
+
static const uint8_t table11_245_emit_[91];
|
935
|
+
static const uint16_t table11_245_inner_[48];
|
936
|
+
static const uint8_t table11_246_emit_[44];
|
937
|
+
static const uint8_t table11_247_emit_[92];
|
938
|
+
static const uint8_t table11_248_emit_[72];
|
939
|
+
static const uint8_t table11_249_emit_[72];
|
940
|
+
static const uint8_t table11_250_emit_[72];
|
941
|
+
static const uint8_t table11_251_emit_[72];
|
942
|
+
static const uint8_t table11_252_emit_[72];
|
943
|
+
static const uint8_t table11_253_emit_[72];
|
944
|
+
static const uint8_t table11_254_emit_[4];
|
945
|
+
static const uint8_t table11_255_emit_[14];
|
946
|
+
static const uint8_t table11_255_outer_[64];
|
947
|
+
static const uint8_t* const table11_emit_[256];
|
948
|
+
static const uint16_t* const table11_inner_[256];
|
949
|
+
static const uint8_t* const table11_outer_[256];
|
950
|
+
static const uint8_t table1_0_emit_[55];
|
951
|
+
static const uint16_t table1_0_inner_[22];
|
952
|
+
static const uint8_t table1_0_outer_[64];
|
953
|
+
static const uint8_t table1_1_emit_[58];
|
954
|
+
static const uint16_t table1_1_inner_[22];
|
955
|
+
static const uint8_t table1_2_emit_[58];
|
956
|
+
static const uint8_t table1_3_emit_[58];
|
957
|
+
static const uint8_t table1_4_emit_[58];
|
958
|
+
static const uint8_t table1_5_emit_[8];
|
959
|
+
static const uint16_t table1_5_inner_[4];
|
960
|
+
static const uint8_t table1_5_outer_[64];
|
961
|
+
static const uint8_t table1_6_emit_[8];
|
962
|
+
static const uint8_t table1_7_emit_[8];
|
963
|
+
static const uint8_t table1_8_emit_[8];
|
964
|
+
static const uint8_t table1_9_emit_[8];
|
965
|
+
static const uint8_t table1_10_emit_[8];
|
966
|
+
static const uint8_t table1_11_emit_[12];
|
967
|
+
static const uint16_t table1_11_inner_[6];
|
968
|
+
static const uint8_t table1_11_outer_[64];
|
969
|
+
static const uint8_t table1_12_emit_[16];
|
970
|
+
static const uint16_t table1_12_inner_[8];
|
971
|
+
static const uint8_t table1_12_outer_[64];
|
972
|
+
static const uint8_t table1_13_emit_[16];
|
973
|
+
static const uint8_t table1_14_emit_[16];
|
974
|
+
static const uint8_t table1_15_emit_[30];
|
975
|
+
static const uint16_t table1_15_inner_[16];
|
976
|
+
static const uint8_t table1_15_outer_[64];
|
977
|
+
static const uint8_t table1_16_emit_[57];
|
978
|
+
static const uint16_t table1_16_inner_[22];
|
979
|
+
static const uint8_t table1_17_emit_[58];
|
980
|
+
static const uint16_t table1_17_inner_[22];
|
981
|
+
static const uint8_t table1_18_emit_[58];
|
982
|
+
static const uint8_t table1_19_emit_[58];
|
983
|
+
static const uint8_t table1_20_emit_[58];
|
984
|
+
static const uint8_t table1_21_emit_[8];
|
985
|
+
static const uint8_t table1_22_emit_[8];
|
986
|
+
static const uint8_t table1_23_emit_[8];
|
987
|
+
static const uint8_t table1_24_emit_[8];
|
988
|
+
static const uint8_t table1_25_emit_[8];
|
989
|
+
static const uint8_t table1_26_emit_[8];
|
990
|
+
static const uint8_t table1_27_emit_[12];
|
991
|
+
static const uint8_t table1_28_emit_[16];
|
992
|
+
static const uint8_t table1_29_emit_[16];
|
993
|
+
static const uint8_t table1_30_emit_[16];
|
994
|
+
static const uint8_t table1_31_emit_[30];
|
995
|
+
static const uint8_t table1_32_emit_[58];
|
996
|
+
static const uint16_t table1_32_inner_[22];
|
997
|
+
static const uint8_t table1_33_emit_[55];
|
998
|
+
static const uint16_t table1_33_inner_[22];
|
999
|
+
static const uint8_t table1_34_emit_[58];
|
1000
|
+
static const uint8_t table1_35_emit_[58];
|
1001
|
+
static const uint8_t table1_36_emit_[58];
|
1002
|
+
static const uint8_t table1_37_emit_[8];
|
1003
|
+
static const uint8_t table1_38_emit_[8];
|
1004
|
+
static const uint8_t table1_39_emit_[8];
|
1005
|
+
static const uint8_t table1_40_emit_[8];
|
1006
|
+
static const uint8_t table1_41_emit_[8];
|
1007
|
+
static const uint8_t table1_42_emit_[8];
|
1008
|
+
static const uint8_t table1_43_emit_[12];
|
1009
|
+
static const uint8_t table1_44_emit_[16];
|
1010
|
+
static const uint8_t table1_45_emit_[16];
|
1011
|
+
static const uint8_t table1_46_emit_[16];
|
1012
|
+
static const uint8_t table1_47_emit_[30];
|
1013
|
+
static const uint8_t table1_48_emit_[58];
|
1014
|
+
static const uint16_t table1_48_inner_[22];
|
1015
|
+
static const uint8_t table1_49_emit_[57];
|
1016
|
+
static const uint16_t table1_49_inner_[22];
|
1017
|
+
static const uint8_t table1_50_emit_[58];
|
1018
|
+
static const uint8_t table1_51_emit_[58];
|
1019
|
+
static const uint8_t table1_52_emit_[58];
|
1020
|
+
static const uint8_t table1_53_emit_[8];
|
1021
|
+
static const uint8_t table1_54_emit_[8];
|
1022
|
+
static const uint8_t table1_55_emit_[8];
|
1023
|
+
static const uint8_t table1_56_emit_[8];
|
1024
|
+
static const uint8_t table1_57_emit_[8];
|
1025
|
+
static const uint8_t table1_58_emit_[8];
|
1026
|
+
static const uint8_t table1_59_emit_[12];
|
1027
|
+
static const uint8_t table1_60_emit_[16];
|
1028
|
+
static const uint8_t table1_61_emit_[16];
|
1029
|
+
static const uint8_t table1_62_emit_[16];
|
1030
|
+
static const uint8_t table1_63_emit_[30];
|
1031
|
+
static const uint8_t table1_64_emit_[58];
|
1032
|
+
static const uint16_t table1_64_inner_[22];
|
1033
|
+
static const uint8_t table1_65_emit_[58];
|
1034
|
+
static const uint8_t table1_66_emit_[55];
|
1035
|
+
static const uint16_t table1_66_inner_[22];
|
1036
|
+
static const uint8_t table1_67_emit_[58];
|
1037
|
+
static const uint8_t table1_68_emit_[58];
|
1038
|
+
static const uint8_t table1_69_emit_[8];
|
1039
|
+
static const uint8_t table1_70_emit_[8];
|
1040
|
+
static const uint8_t table1_71_emit_[8];
|
1041
|
+
static const uint8_t table1_72_emit_[8];
|
1042
|
+
static const uint8_t table1_73_emit_[8];
|
1043
|
+
static const uint8_t table1_74_emit_[8];
|
1044
|
+
static const uint8_t table1_75_emit_[12];
|
1045
|
+
static const uint8_t table1_76_emit_[16];
|
1046
|
+
static const uint8_t table1_77_emit_[16];
|
1047
|
+
static const uint8_t table1_78_emit_[16];
|
1048
|
+
static const uint8_t table1_79_emit_[30];
|
1049
|
+
static const uint8_t table1_80_emit_[58];
|
1050
|
+
static const uint16_t table1_80_inner_[22];
|
1051
|
+
static const uint8_t table1_81_emit_[58];
|
1052
|
+
static const uint8_t table1_82_emit_[57];
|
1053
|
+
static const uint16_t table1_82_inner_[22];
|
1054
|
+
static const uint8_t table1_83_emit_[58];
|
1055
|
+
static const uint8_t table1_84_emit_[58];
|
1056
|
+
static const uint8_t table1_85_emit_[8];
|
1057
|
+
static const uint8_t table1_86_emit_[8];
|
1058
|
+
static const uint8_t table1_87_emit_[8];
|
1059
|
+
static const uint8_t table1_88_emit_[8];
|
1060
|
+
static const uint8_t table1_89_emit_[8];
|
1061
|
+
static const uint8_t table1_90_emit_[8];
|
1062
|
+
static const uint8_t table1_91_emit_[12];
|
1063
|
+
static const uint8_t table1_92_emit_[16];
|
1064
|
+
static const uint8_t table1_93_emit_[16];
|
1065
|
+
static const uint8_t table1_94_emit_[16];
|
1066
|
+
static const uint8_t table1_95_emit_[30];
|
1067
|
+
static const uint8_t table1_96_emit_[58];
|
1068
|
+
static const uint16_t table1_96_inner_[22];
|
1069
|
+
static const uint8_t table1_97_emit_[58];
|
1070
|
+
static const uint8_t table1_98_emit_[58];
|
1071
|
+
static const uint8_t table1_99_emit_[55];
|
1072
|
+
static const uint16_t table1_99_inner_[22];
|
1073
|
+
static const uint8_t table1_100_emit_[58];
|
1074
|
+
static const uint8_t table1_101_emit_[8];
|
1075
|
+
static const uint8_t table1_102_emit_[8];
|
1076
|
+
static const uint8_t table1_103_emit_[8];
|
1077
|
+
static const uint8_t table1_104_emit_[8];
|
1078
|
+
static const uint8_t table1_105_emit_[8];
|
1079
|
+
static const uint8_t table1_106_emit_[8];
|
1080
|
+
static const uint8_t table1_107_emit_[12];
|
1081
|
+
static const uint8_t table1_108_emit_[16];
|
1082
|
+
static const uint8_t table1_109_emit_[16];
|
1083
|
+
static const uint8_t table1_110_emit_[16];
|
1084
|
+
static const uint8_t table1_111_emit_[30];
|
1085
|
+
static const uint8_t table1_112_emit_[58];
|
1086
|
+
static const uint16_t table1_112_inner_[22];
|
1087
|
+
static const uint8_t table1_113_emit_[58];
|
1088
|
+
static const uint8_t table1_114_emit_[58];
|
1089
|
+
static const uint8_t table1_115_emit_[57];
|
1090
|
+
static const uint16_t table1_115_inner_[22];
|
1091
|
+
static const uint8_t table1_116_emit_[58];
|
1092
|
+
static const uint8_t table1_117_emit_[8];
|
1093
|
+
static const uint8_t table1_118_emit_[8];
|
1094
|
+
static const uint8_t table1_119_emit_[8];
|
1095
|
+
static const uint8_t table1_120_emit_[8];
|
1096
|
+
static const uint8_t table1_121_emit_[8];
|
1097
|
+
static const uint8_t table1_122_emit_[8];
|
1098
|
+
static const uint8_t table1_123_emit_[12];
|
1099
|
+
static const uint8_t table1_124_emit_[16];
|
1100
|
+
static const uint8_t table1_125_emit_[16];
|
1101
|
+
static const uint8_t table1_126_emit_[16];
|
1102
|
+
static const uint8_t table1_127_emit_[30];
|
1103
|
+
static const uint8_t table1_128_emit_[58];
|
1104
|
+
static const uint16_t table1_128_inner_[22];
|
1105
|
+
static const uint8_t table1_129_emit_[58];
|
1106
|
+
static const uint8_t table1_130_emit_[58];
|
1107
|
+
static const uint8_t table1_131_emit_[58];
|
1108
|
+
static const uint8_t table1_132_emit_[55];
|
1109
|
+
static const uint16_t table1_132_inner_[22];
|
1110
|
+
static const uint8_t table1_133_emit_[8];
|
1111
|
+
static const uint8_t table1_134_emit_[8];
|
1112
|
+
static const uint8_t table1_135_emit_[8];
|
1113
|
+
static const uint8_t table1_136_emit_[8];
|
1114
|
+
static const uint8_t table1_137_emit_[8];
|
1115
|
+
static const uint8_t table1_138_emit_[8];
|
1116
|
+
static const uint8_t table1_139_emit_[12];
|
1117
|
+
static const uint8_t table1_140_emit_[16];
|
1118
|
+
static const uint8_t table1_141_emit_[16];
|
1119
|
+
static const uint8_t table1_142_emit_[16];
|
1120
|
+
static const uint8_t table1_143_emit_[30];
|
1121
|
+
static const uint8_t table1_144_emit_[59];
|
1122
|
+
static const uint16_t table1_144_inner_[22];
|
1123
|
+
static const uint8_t table1_145_emit_[59];
|
1124
|
+
static const uint8_t table1_146_emit_[59];
|
1125
|
+
static const uint8_t table1_147_emit_[59];
|
1126
|
+
static const uint8_t table1_148_emit_[59];
|
1127
|
+
static const uint8_t table1_149_emit_[8];
|
1128
|
+
static const uint8_t table1_150_emit_[8];
|
1129
|
+
static const uint8_t table1_151_emit_[8];
|
1130
|
+
static const uint8_t table1_152_emit_[8];
|
1131
|
+
static const uint8_t table1_153_emit_[8];
|
1132
|
+
static const uint8_t table1_154_emit_[8];
|
1133
|
+
static const uint8_t table1_155_emit_[12];
|
1134
|
+
static const uint8_t table1_156_emit_[16];
|
1135
|
+
static const uint8_t table1_157_emit_[16];
|
1136
|
+
static const uint8_t table1_158_emit_[16];
|
1137
|
+
static const uint8_t table1_159_emit_[30];
|
1138
|
+
static const uint8_t table1_160_emit_[8];
|
1139
|
+
static const uint8_t table1_161_emit_[8];
|
1140
|
+
static const uint8_t table1_162_emit_[11];
|
1141
|
+
static const uint16_t table1_162_inner_[6];
|
1142
|
+
static const uint8_t table1_163_emit_[16];
|
1143
|
+
static const uint8_t table1_164_emit_[16];
|
1144
|
+
static const uint8_t table1_165_emit_[20];
|
1145
|
+
static const uint16_t table1_165_inner_[10];
|
1146
|
+
static const uint8_t table1_165_outer_[64];
|
1147
|
+
static const uint8_t table1_166_emit_[32];
|
1148
|
+
static const uint16_t table1_166_inner_[16];
|
1149
|
+
static const uint8_t table1_166_outer_[64];
|
1150
|
+
static const uint8_t table1_167_emit_[36];
|
1151
|
+
static const uint16_t table1_167_inner_[19];
|
1152
|
+
static const uint8_t table1_167_outer_[64];
|
1153
|
+
static const uint8_t table1_168_emit_[8];
|
1154
|
+
static const uint8_t table1_169_emit_[8];
|
1155
|
+
static const uint8_t table1_170_emit_[11];
|
1156
|
+
static const uint16_t table1_170_inner_[6];
|
1157
|
+
static const uint8_t table1_171_emit_[16];
|
1158
|
+
static const uint8_t table1_172_emit_[16];
|
1159
|
+
static const uint8_t table1_173_emit_[20];
|
1160
|
+
static const uint8_t table1_174_emit_[32];
|
1161
|
+
static const uint8_t table1_175_emit_[36];
|
1162
|
+
static const uint8_t table1_176_emit_[8];
|
1163
|
+
static const uint8_t table1_177_emit_[8];
|
1164
|
+
static const uint8_t table1_178_emit_[11];
|
1165
|
+
static const uint16_t table1_178_inner_[6];
|
1166
|
+
static const uint8_t table1_179_emit_[16];
|
1167
|
+
static const uint8_t table1_180_emit_[16];
|
1168
|
+
static const uint8_t table1_181_emit_[20];
|
1169
|
+
static const uint8_t table1_182_emit_[32];
|
1170
|
+
static const uint8_t table1_183_emit_[36];
|
1171
|
+
static const uint8_t table1_184_emit_[8];
|
1172
|
+
static const uint8_t table1_185_emit_[8];
|
1173
|
+
static const uint8_t table1_186_emit_[12];
|
1174
|
+
static const uint8_t table1_187_emit_[16];
|
1175
|
+
static const uint8_t table1_188_emit_[16];
|
1176
|
+
static const uint8_t table1_189_emit_[20];
|
1177
|
+
static const uint8_t table1_190_emit_[32];
|
1178
|
+
static const uint8_t table1_191_emit_[36];
|
1179
|
+
static const uint8_t table1_192_emit_[8];
|
1180
|
+
static const uint8_t table1_193_emit_[8];
|
1181
|
+
static const uint8_t table1_194_emit_[12];
|
1182
|
+
static const uint8_t table1_195_emit_[15];
|
1183
|
+
static const uint16_t table1_195_inner_[8];
|
1184
|
+
static const uint8_t table1_196_emit_[16];
|
1185
|
+
static const uint8_t table1_197_emit_[20];
|
1186
|
+
static const uint8_t table1_198_emit_[32];
|
1187
|
+
static const uint8_t table1_199_emit_[36];
|
1188
|
+
static const uint8_t table1_200_emit_[8];
|
1189
|
+
static const uint8_t table1_201_emit_[8];
|
1190
|
+
static const uint8_t table1_202_emit_[12];
|
1191
|
+
static const uint8_t table1_203_emit_[15];
|
1192
|
+
static const uint16_t table1_203_inner_[8];
|
1193
|
+
static const uint8_t table1_204_emit_[16];
|
1194
|
+
static const uint8_t table1_205_emit_[20];
|
1195
|
+
static const uint8_t table1_206_emit_[32];
|
1196
|
+
static const uint8_t table1_207_emit_[36];
|
1197
|
+
static const uint8_t table1_208_emit_[8];
|
1198
|
+
static const uint8_t table1_209_emit_[8];
|
1199
|
+
static const uint8_t table1_210_emit_[12];
|
1200
|
+
static const uint8_t table1_211_emit_[15];
|
1201
|
+
static const uint16_t table1_211_inner_[8];
|
1202
|
+
static const uint8_t table1_212_emit_[16];
|
1203
|
+
static const uint8_t table1_213_emit_[20];
|
1204
|
+
static const uint8_t table1_214_emit_[32];
|
1205
|
+
static const uint8_t table1_215_emit_[36];
|
1206
|
+
static const uint8_t table1_216_emit_[8];
|
1207
|
+
static const uint8_t table1_217_emit_[8];
|
1208
|
+
static const uint8_t table1_218_emit_[12];
|
1209
|
+
static const uint8_t table1_219_emit_[15];
|
1210
|
+
static const uint16_t table1_219_inner_[8];
|
1211
|
+
static const uint8_t table1_220_emit_[16];
|
1212
|
+
static const uint8_t table1_221_emit_[20];
|
1213
|
+
static const uint8_t table1_222_emit_[32];
|
1214
|
+
static const uint8_t table1_223_emit_[36];
|
1215
|
+
static const uint8_t table1_224_emit_[8];
|
1216
|
+
static const uint8_t table1_225_emit_[8];
|
1217
|
+
static const uint8_t table1_226_emit_[12];
|
1218
|
+
static const uint8_t table1_227_emit_[15];
|
1219
|
+
static const uint16_t table1_227_inner_[8];
|
1220
|
+
static const uint8_t table1_228_emit_[16];
|
1221
|
+
static const uint8_t table1_229_emit_[20];
|
1222
|
+
static const uint8_t table1_230_emit_[32];
|
1223
|
+
static const uint8_t table1_231_emit_[36];
|
1224
|
+
static const uint8_t table1_232_emit_[8];
|
1225
|
+
static const uint8_t table1_233_emit_[8];
|
1226
|
+
static const uint8_t table1_234_emit_[12];
|
1227
|
+
static const uint8_t table1_235_emit_[15];
|
1228
|
+
static const uint16_t table1_235_inner_[8];
|
1229
|
+
static const uint8_t table1_236_emit_[16];
|
1230
|
+
static const uint8_t table1_237_emit_[20];
|
1231
|
+
static const uint8_t table1_238_emit_[32];
|
1232
|
+
static const uint8_t table1_239_emit_[36];
|
1233
|
+
static const uint8_t table1_240_emit_[8];
|
1234
|
+
static const uint8_t table1_241_emit_[8];
|
1235
|
+
static const uint8_t table1_242_emit_[12];
|
1236
|
+
static const uint8_t table1_243_emit_[15];
|
1237
|
+
static const uint16_t table1_243_inner_[8];
|
1238
|
+
static const uint8_t table1_244_emit_[16];
|
1239
|
+
static const uint8_t table1_245_emit_[20];
|
1240
|
+
static const uint8_t table1_246_emit_[32];
|
1241
|
+
static const uint8_t table1_247_emit_[36];
|
1242
|
+
static const uint8_t table1_248_emit_[8];
|
1243
|
+
static const uint8_t table1_249_emit_[8];
|
1244
|
+
static const uint8_t table1_250_emit_[12];
|
1245
|
+
static const uint8_t table1_251_emit_[16];
|
1246
|
+
static const uint8_t table1_252_emit_[16];
|
1247
|
+
static const uint8_t table1_253_emit_[20];
|
1248
|
+
static const uint8_t table1_254_emit_[32];
|
1249
|
+
static const uint8_t table1_255_emit_[36];
|
1250
|
+
static const uint8_t table1_256_emit_[8];
|
1251
|
+
static const uint8_t table1_257_emit_[8];
|
1252
|
+
static const uint8_t table1_258_emit_[12];
|
1253
|
+
static const uint8_t table1_259_emit_[16];
|
1254
|
+
static const uint8_t table1_260_emit_[15];
|
1255
|
+
static const uint8_t table1_261_emit_[20];
|
1256
|
+
static const uint8_t table1_262_emit_[32];
|
1257
|
+
static const uint8_t table1_263_emit_[36];
|
1258
|
+
static const uint8_t table1_264_emit_[8];
|
1259
|
+
static const uint8_t table1_265_emit_[8];
|
1260
|
+
static const uint8_t table1_266_emit_[12];
|
1261
|
+
static const uint8_t table1_267_emit_[16];
|
1262
|
+
static const uint8_t table1_268_emit_[15];
|
1263
|
+
static const uint8_t table1_269_emit_[20];
|
1264
|
+
static const uint8_t table1_270_emit_[32];
|
1265
|
+
static const uint8_t table1_271_emit_[36];
|
1266
|
+
static const uint8_t table1_272_emit_[8];
|
1267
|
+
static const uint8_t table1_273_emit_[8];
|
1268
|
+
static const uint8_t table1_274_emit_[12];
|
1269
|
+
static const uint8_t table1_275_emit_[16];
|
1270
|
+
static const uint8_t table1_276_emit_[15];
|
1271
|
+
static const uint8_t table1_277_emit_[20];
|
1272
|
+
static const uint8_t table1_278_emit_[32];
|
1273
|
+
static const uint8_t table1_279_emit_[36];
|
1274
|
+
static const uint8_t table1_280_emit_[8];
|
1275
|
+
static const uint8_t table1_281_emit_[8];
|
1276
|
+
static const uint8_t table1_282_emit_[12];
|
1277
|
+
static const uint8_t table1_283_emit_[16];
|
1278
|
+
static const uint8_t table1_284_emit_[15];
|
1279
|
+
static const uint8_t table1_285_emit_[20];
|
1280
|
+
static const uint8_t table1_286_emit_[32];
|
1281
|
+
static const uint8_t table1_287_emit_[36];
|
1282
|
+
static const uint8_t table1_288_emit_[8];
|
1283
|
+
static const uint8_t table1_289_emit_[8];
|
1284
|
+
static const uint8_t table1_290_emit_[12];
|
1285
|
+
static const uint8_t table1_291_emit_[16];
|
1286
|
+
static const uint8_t table1_292_emit_[15];
|
1287
|
+
static const uint8_t table1_293_emit_[20];
|
1288
|
+
static const uint8_t table1_294_emit_[32];
|
1289
|
+
static const uint8_t table1_295_emit_[36];
|
1290
|
+
static const uint8_t table1_296_emit_[8];
|
1291
|
+
static const uint8_t table1_297_emit_[8];
|
1292
|
+
static const uint8_t table1_298_emit_[12];
|
1293
|
+
static const uint8_t table1_299_emit_[16];
|
1294
|
+
static const uint8_t table1_300_emit_[15];
|
1295
|
+
static const uint8_t table1_301_emit_[20];
|
1296
|
+
static const uint8_t table1_302_emit_[32];
|
1297
|
+
static const uint8_t table1_303_emit_[36];
|
1298
|
+
static const uint8_t table1_304_emit_[8];
|
1299
|
+
static const uint8_t table1_305_emit_[8];
|
1300
|
+
static const uint8_t table1_306_emit_[12];
|
1301
|
+
static const uint8_t table1_307_emit_[16];
|
1302
|
+
static const uint8_t table1_308_emit_[15];
|
1303
|
+
static const uint8_t table1_309_emit_[20];
|
1304
|
+
static const uint8_t table1_310_emit_[32];
|
1305
|
+
static const uint8_t table1_311_emit_[36];
|
1306
|
+
static const uint8_t table1_312_emit_[8];
|
1307
|
+
static const uint8_t table1_313_emit_[8];
|
1308
|
+
static const uint8_t table1_314_emit_[12];
|
1309
|
+
static const uint8_t table1_315_emit_[16];
|
1310
|
+
static const uint8_t table1_316_emit_[16];
|
1311
|
+
static const uint8_t table1_317_emit_[20];
|
1312
|
+
static const uint8_t table1_318_emit_[32];
|
1313
|
+
static const uint8_t table1_319_emit_[36];
|
1314
|
+
static const uint8_t table1_320_emit_[8];
|
1315
|
+
static const uint8_t table1_321_emit_[8];
|
1316
|
+
static const uint8_t table1_322_emit_[12];
|
1317
|
+
static const uint8_t table1_323_emit_[16];
|
1318
|
+
static const uint8_t table1_324_emit_[16];
|
1319
|
+
static const uint8_t table1_325_emit_[19];
|
1320
|
+
static const uint16_t table1_325_inner_[10];
|
1321
|
+
static const uint8_t table1_326_emit_[32];
|
1322
|
+
static const uint8_t table1_327_emit_[36];
|
1323
|
+
static const uint8_t table1_328_emit_[8];
|
1324
|
+
static const uint8_t table1_329_emit_[8];
|
1325
|
+
static const uint8_t table1_330_emit_[12];
|
1326
|
+
static const uint8_t table1_331_emit_[16];
|
1327
|
+
static const uint8_t table1_332_emit_[16];
|
1328
|
+
static const uint8_t table1_333_emit_[19];
|
1329
|
+
static const uint16_t table1_333_inner_[10];
|
1330
|
+
static const uint8_t table1_334_emit_[32];
|
1331
|
+
static const uint8_t table1_335_emit_[36];
|
1332
|
+
static const uint8_t table1_336_emit_[8];
|
1333
|
+
static const uint8_t table1_337_emit_[8];
|
1334
|
+
static const uint8_t table1_338_emit_[12];
|
1335
|
+
static const uint8_t table1_339_emit_[16];
|
1336
|
+
static const uint8_t table1_340_emit_[16];
|
1337
|
+
static const uint8_t table1_341_emit_[19];
|
1338
|
+
static const uint16_t table1_341_inner_[10];
|
1339
|
+
static const uint8_t table1_342_emit_[32];
|
1340
|
+
static const uint8_t table1_343_emit_[36];
|
1341
|
+
static const uint8_t table1_344_emit_[8];
|
1342
|
+
static const uint8_t table1_345_emit_[8];
|
1343
|
+
static const uint8_t table1_346_emit_[12];
|
1344
|
+
static const uint8_t table1_347_emit_[16];
|
1345
|
+
static const uint8_t table1_348_emit_[16];
|
1346
|
+
static const uint8_t table1_349_emit_[19];
|
1347
|
+
static const uint16_t table1_349_inner_[10];
|
1348
|
+
static const uint8_t table1_350_emit_[32];
|
1349
|
+
static const uint8_t table1_351_emit_[36];
|
1350
|
+
static const uint8_t table1_352_emit_[8];
|
1351
|
+
static const uint8_t table1_353_emit_[8];
|
1352
|
+
static const uint8_t table1_354_emit_[12];
|
1353
|
+
static const uint8_t table1_355_emit_[16];
|
1354
|
+
static const uint8_t table1_356_emit_[16];
|
1355
|
+
static const uint8_t table1_357_emit_[19];
|
1356
|
+
static const uint16_t table1_357_inner_[10];
|
1357
|
+
static const uint8_t table1_358_emit_[32];
|
1358
|
+
static const uint8_t table1_359_emit_[36];
|
1359
|
+
static const uint8_t table1_360_emit_[8];
|
1360
|
+
static const uint8_t table1_361_emit_[8];
|
1361
|
+
static const uint8_t table1_362_emit_[12];
|
1362
|
+
static const uint8_t table1_363_emit_[16];
|
1363
|
+
static const uint8_t table1_364_emit_[16];
|
1364
|
+
static const uint8_t table1_365_emit_[19];
|
1365
|
+
static const uint16_t table1_365_inner_[10];
|
1366
|
+
static const uint8_t table1_366_emit_[32];
|
1367
|
+
static const uint8_t table1_367_emit_[36];
|
1368
|
+
static const uint8_t table1_368_emit_[16];
|
1369
|
+
static const uint8_t table1_369_emit_[28];
|
1370
|
+
static const uint16_t table1_369_inner_[14];
|
1371
|
+
static const uint8_t table1_369_outer_[64];
|
1372
|
+
static const uint8_t table1_370_emit_[35];
|
1373
|
+
static const uint16_t table1_370_inner_[18];
|
1374
|
+
static const uint8_t table1_370_outer_[64];
|
1375
|
+
static const uint8_t table1_371_emit_[68];
|
1376
|
+
static const uint16_t table1_371_inner_[35];
|
1377
|
+
static const uint8_t table1_371_outer_[64];
|
1378
|
+
static const uint8_t table1_372_emit_[16];
|
1379
|
+
static const uint8_t table1_373_emit_[28];
|
1380
|
+
static const uint8_t table1_374_emit_[35];
|
1381
|
+
static const uint16_t table1_374_inner_[18];
|
1382
|
+
static const uint8_t table1_375_emit_[68];
|
1383
|
+
static const uint8_t table1_376_emit_[16];
|
1384
|
+
static const uint8_t table1_377_emit_[28];
|
1385
|
+
static const uint8_t table1_378_emit_[35];
|
1386
|
+
static const uint16_t table1_378_inner_[18];
|
1387
|
+
static const uint8_t table1_379_emit_[68];
|
1388
|
+
static const uint8_t table1_380_emit_[16];
|
1389
|
+
static const uint8_t table1_381_emit_[28];
|
1390
|
+
static const uint8_t table1_382_emit_[36];
|
1391
|
+
static const uint16_t table1_382_inner_[18];
|
1392
|
+
static const uint8_t table1_383_emit_[68];
|
1393
|
+
static const uint8_t table1_384_emit_[16];
|
1394
|
+
static const uint8_t table1_385_emit_[28];
|
1395
|
+
static const uint8_t table1_386_emit_[36];
|
1396
|
+
static const uint8_t table1_387_emit_[67];
|
1397
|
+
static const uint16_t table1_387_inner_[35];
|
1398
|
+
static const uint8_t table1_388_emit_[16];
|
1399
|
+
static const uint8_t table1_389_emit_[28];
|
1400
|
+
static const uint8_t table1_390_emit_[36];
|
1401
|
+
static const uint8_t table1_391_emit_[67];
|
1402
|
+
static const uint16_t table1_391_inner_[35];
|
1403
|
+
static const uint8_t table1_392_emit_[16];
|
1404
|
+
static const uint8_t table1_393_emit_[28];
|
1405
|
+
static const uint8_t table1_394_emit_[36];
|
1406
|
+
static const uint8_t table1_395_emit_[67];
|
1407
|
+
static const uint16_t table1_395_inner_[35];
|
1408
|
+
static const uint8_t table1_396_emit_[16];
|
1409
|
+
static const uint8_t table1_397_emit_[28];
|
1410
|
+
static const uint8_t table1_398_emit_[36];
|
1411
|
+
static const uint8_t table1_399_emit_[67];
|
1412
|
+
static const uint16_t table1_399_inner_[35];
|
1413
|
+
static const uint8_t table1_400_emit_[16];
|
1414
|
+
static const uint8_t table1_401_emit_[28];
|
1415
|
+
static const uint8_t table1_402_emit_[36];
|
1416
|
+
static const uint8_t table1_403_emit_[67];
|
1417
|
+
static const uint16_t table1_403_inner_[35];
|
1418
|
+
static const uint8_t table1_404_emit_[16];
|
1419
|
+
static const uint8_t table1_405_emit_[28];
|
1420
|
+
static const uint8_t table1_406_emit_[36];
|
1421
|
+
static const uint8_t table1_407_emit_[67];
|
1422
|
+
static const uint16_t table1_407_inner_[35];
|
1423
|
+
static const uint8_t table1_408_emit_[16];
|
1424
|
+
static const uint8_t table1_409_emit_[28];
|
1425
|
+
static const uint8_t table1_410_emit_[36];
|
1426
|
+
static const uint8_t table1_411_emit_[67];
|
1427
|
+
static const uint16_t table1_411_inner_[35];
|
1428
|
+
static const uint8_t table1_412_emit_[16];
|
1429
|
+
static const uint8_t table1_413_emit_[28];
|
1430
|
+
static const uint8_t table1_414_emit_[36];
|
1431
|
+
static const uint8_t table1_415_emit_[67];
|
1432
|
+
static const uint16_t table1_415_inner_[35];
|
1433
|
+
static const uint8_t table1_416_emit_[16];
|
1434
|
+
static const uint8_t table1_417_emit_[28];
|
1435
|
+
static const uint8_t table1_418_emit_[36];
|
1436
|
+
static const uint8_t table1_419_emit_[67];
|
1437
|
+
static const uint16_t table1_419_inner_[35];
|
1438
|
+
static const uint8_t table1_420_emit_[16];
|
1439
|
+
static const uint8_t table1_421_emit_[28];
|
1440
|
+
static const uint8_t table1_422_emit_[36];
|
1441
|
+
static const uint8_t table1_423_emit_[67];
|
1442
|
+
static const uint16_t table1_423_inner_[35];
|
1443
|
+
static const uint8_t table1_424_emit_[16];
|
1444
|
+
static const uint8_t table1_425_emit_[28];
|
1445
|
+
static const uint8_t table1_426_emit_[36];
|
1446
|
+
static const uint8_t table1_427_emit_[67];
|
1447
|
+
static const uint16_t table1_427_inner_[35];
|
1448
|
+
static const uint8_t table1_428_emit_[16];
|
1449
|
+
static const uint8_t table1_429_emit_[28];
|
1450
|
+
static const uint8_t table1_430_emit_[36];
|
1451
|
+
static const uint8_t table1_431_emit_[67];
|
1452
|
+
static const uint16_t table1_431_inner_[35];
|
1453
|
+
static const uint8_t table1_432_emit_[16];
|
1454
|
+
static const uint8_t table1_433_emit_[28];
|
1455
|
+
static const uint8_t table1_434_emit_[36];
|
1456
|
+
static const uint8_t table1_435_emit_[67];
|
1457
|
+
static const uint16_t table1_435_inner_[35];
|
1458
|
+
static const uint8_t table1_436_emit_[16];
|
1459
|
+
static const uint8_t table1_437_emit_[28];
|
1460
|
+
static const uint8_t table1_438_emit_[36];
|
1461
|
+
static const uint8_t table1_439_emit_[67];
|
1462
|
+
static const uint16_t table1_439_inner_[35];
|
1463
|
+
static const uint8_t table1_440_emit_[16];
|
1464
|
+
static const uint8_t table1_441_emit_[28];
|
1465
|
+
static const uint8_t table1_442_emit_[36];
|
1466
|
+
static const uint8_t table1_443_emit_[67];
|
1467
|
+
static const uint16_t table1_443_inner_[35];
|
1468
|
+
static const uint8_t table1_444_emit_[16];
|
1469
|
+
static const uint8_t table1_445_emit_[28];
|
1470
|
+
static const uint8_t table1_446_emit_[36];
|
1471
|
+
static const uint8_t table1_447_emit_[67];
|
1472
|
+
static const uint16_t table1_447_inner_[35];
|
1473
|
+
static const uint8_t table1_448_emit_[16];
|
1474
|
+
static const uint8_t table1_449_emit_[28];
|
1475
|
+
static const uint8_t table1_450_emit_[36];
|
1476
|
+
static const uint8_t table1_451_emit_[67];
|
1477
|
+
static const uint16_t table1_451_inner_[35];
|
1478
|
+
static const uint8_t table1_452_emit_[16];
|
1479
|
+
static const uint8_t table1_453_emit_[28];
|
1480
|
+
static const uint8_t table1_454_emit_[36];
|
1481
|
+
static const uint8_t table1_455_emit_[67];
|
1482
|
+
static const uint16_t table1_455_inner_[35];
|
1483
|
+
static const uint8_t table1_456_emit_[16];
|
1484
|
+
static const uint8_t table1_457_emit_[28];
|
1485
|
+
static const uint8_t table1_458_emit_[36];
|
1486
|
+
static const uint8_t table1_459_emit_[67];
|
1487
|
+
static const uint16_t table1_459_inner_[35];
|
1488
|
+
static const uint8_t table1_460_emit_[16];
|
1489
|
+
static const uint8_t table1_461_emit_[28];
|
1490
|
+
static const uint8_t table1_462_emit_[36];
|
1491
|
+
static const uint8_t table1_463_emit_[67];
|
1492
|
+
static const uint16_t table1_463_inner_[35];
|
1493
|
+
static const uint8_t table1_464_emit_[16];
|
1494
|
+
static const uint8_t table1_465_emit_[28];
|
1495
|
+
static const uint8_t table1_466_emit_[36];
|
1496
|
+
static const uint8_t table1_467_emit_[67];
|
1497
|
+
static const uint16_t table1_467_inner_[35];
|
1498
|
+
static const uint8_t table1_468_emit_[16];
|
1499
|
+
static const uint8_t table1_469_emit_[28];
|
1500
|
+
static const uint8_t table1_470_emit_[36];
|
1501
|
+
static const uint8_t table1_471_emit_[67];
|
1502
|
+
static const uint16_t table1_471_inner_[35];
|
1503
|
+
static const uint8_t table1_472_emit_[16];
|
1504
|
+
static const uint8_t table1_473_emit_[28];
|
1505
|
+
static const uint8_t table1_474_emit_[36];
|
1506
|
+
static const uint8_t table1_475_emit_[67];
|
1507
|
+
static const uint16_t table1_475_inner_[35];
|
1508
|
+
static const uint8_t table1_476_emit_[16];
|
1509
|
+
static const uint8_t table1_477_emit_[28];
|
1510
|
+
static const uint8_t table1_478_emit_[36];
|
1511
|
+
static const uint8_t table1_479_emit_[67];
|
1512
|
+
static const uint16_t table1_479_inner_[35];
|
1513
|
+
static const uint8_t table1_480_emit_[16];
|
1514
|
+
static const uint8_t table1_481_emit_[28];
|
1515
|
+
static const uint8_t table1_482_emit_[36];
|
1516
|
+
static const uint8_t table1_483_emit_[67];
|
1517
|
+
static const uint16_t table1_483_inner_[35];
|
1518
|
+
static const uint8_t table1_484_emit_[16];
|
1519
|
+
static const uint8_t table1_485_emit_[28];
|
1520
|
+
static const uint8_t table1_486_emit_[36];
|
1521
|
+
static const uint8_t table1_487_emit_[67];
|
1522
|
+
static const uint16_t table1_487_inner_[35];
|
1523
|
+
static const uint8_t table1_488_emit_[16];
|
1524
|
+
static const uint8_t table1_489_emit_[28];
|
1525
|
+
static const uint8_t table1_490_emit_[36];
|
1526
|
+
static const uint8_t table1_491_emit_[67];
|
1527
|
+
static const uint16_t table1_491_inner_[35];
|
1528
|
+
static const uint8_t table1_492_emit_[16];
|
1529
|
+
static const uint8_t table1_493_emit_[28];
|
1530
|
+
static const uint8_t table1_494_emit_[36];
|
1531
|
+
static const uint8_t table1_495_emit_[67];
|
1532
|
+
static const uint16_t table1_495_inner_[35];
|
1533
|
+
static const uint8_t table1_496_emit_[44];
|
1534
|
+
static const uint16_t table1_496_inner_[22];
|
1535
|
+
static const uint8_t table1_496_outer_[64];
|
1536
|
+
static const uint8_t table1_497_emit_[92];
|
1537
|
+
static const uint16_t table1_497_inner_[47];
|
1538
|
+
static const uint8_t table1_497_outer_[64];
|
1539
|
+
static const uint8_t table1_498_emit_[44];
|
1540
|
+
static const uint8_t table1_499_emit_[92];
|
1541
|
+
static const uint8_t table1_500_emit_[44];
|
1542
|
+
static const uint8_t table1_501_emit_[92];
|
1543
|
+
static const uint8_t table1_502_emit_[44];
|
1544
|
+
static const uint8_t table1_503_emit_[92];
|
1545
|
+
static const uint8_t table1_504_emit_[44];
|
1546
|
+
static const uint8_t table1_505_emit_[92];
|
1547
|
+
static const uint8_t table1_506_emit_[44];
|
1548
|
+
static const uint8_t table1_507_emit_[92];
|
1549
|
+
static const uint8_t table1_508_emit_[40];
|
1550
|
+
static const uint16_t table1_508_inner_[22];
|
1551
|
+
static const uint8_t table1_509_emit_[40];
|
1552
|
+
static const uint8_t table1_510_emit_[22];
|
1553
|
+
static const uint16_t table1_510_inner_[13];
|
1554
|
+
static const uint8_t table1_510_outer_[64];
|
1555
|
+
static const uint8_t table1_511_emit_[14];
|
1556
|
+
static const uint16_t table1_511_inner_[15];
|
1557
|
+
static const uint8_t table1_511_outer_[64];
|
1558
|
+
static const uint8_t* const table1_emit_[512];
|
1559
|
+
static const uint16_t* const table1_inner_[512];
|
1560
|
+
static const uint8_t* const table1_outer_[512];
|
208
1561
|
static const uint8_t table13_0_inner_[5];
|
209
1562
|
static const uint8_t table14_0_emit_[11];
|
210
1563
|
static const uint8_t table14_0_ops_[32];
|
211
1564
|
static const uint8_t table15_0_emit_[24];
|
212
1565
|
static const uint8_t table15_0_ops_[64];
|
213
|
-
static const uint8_t
|
214
|
-
static const
|
215
|
-
static const uint8_t
|
216
|
-
static const
|
217
|
-
static const uint8_t
|
218
|
-
static const uint8_t
|
219
|
-
static const uint8_t
|
220
|
-
static const uint8_t
|
221
|
-
static const uint8_t
|
222
|
-
static const uint8_t
|
223
|
-
static const
|
224
|
-
static const uint8_t
|
225
|
-
static const uint8_t
|
226
|
-
static const uint8_t
|
227
|
-
static const uint8_t
|
1566
|
+
static const uint8_t table12_0_emit_[50];
|
1567
|
+
static const uint16_t table12_0_inner_[70];
|
1568
|
+
static const uint8_t table12_0_outer_[128];
|
1569
|
+
static const uint8_t table33_0_emit_[15];
|
1570
|
+
static const uint8_t table33_0_inner_[16];
|
1571
|
+
static const uint8_t table32_0_emit_[17];
|
1572
|
+
static const uint8_t table32_0_ops_[32];
|
1573
|
+
static const uint8_t table36_0_emit_[6];
|
1574
|
+
static const uint8_t table36_0_inner_[6];
|
1575
|
+
static const uint8_t table39_0_emit_[17];
|
1576
|
+
static const uint8_t table39_0_ops_[32];
|
1577
|
+
static const uint8_t table40_0_emit_[46];
|
1578
|
+
static const uint8_t table40_0_ops_[64];
|
1579
|
+
static const uint8_t table41_0_ops_[128];
|
1580
|
+
static const uint8_t table38_0_emit_[4];
|
1581
|
+
static const uint16_t table38_0_ops_[32];
|
1582
|
+
static const uint8_t table38_1_emit_[4];
|
1583
|
+
static const uint8_t table38_2_emit_[4];
|
1584
|
+
static const uint8_t table38_3_emit_[4];
|
1585
|
+
static const uint8_t table38_4_emit_[7];
|
1586
|
+
static const uint16_t table38_4_ops_[32];
|
1587
|
+
static const uint8_t table38_5_emit_[8];
|
1588
|
+
static const uint16_t table38_5_ops_[32];
|
1589
|
+
static const uint8_t table38_6_emit_[8];
|
1590
|
+
static const uint8_t table38_7_emit_[10];
|
1591
|
+
static const uint16_t table38_7_ops_[32];
|
1592
|
+
static const uint8_t* const table38_emit_[8];
|
1593
|
+
static const uint16_t* const table38_ops_[8];
|
228
1594
|
};
|
229
1595
|
template <typename F>
|
230
1596
|
class HuffDecoder : public HuffDecoderCommon {
|
@@ -233,26 +1599,33 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
233
1599
|
: sink_(sink), begin_(begin), end_(end) {}
|
234
1600
|
bool Run() {
|
235
1601
|
while (!done_) {
|
236
|
-
if (!
|
1602
|
+
if (!RefillTo15()) {
|
237
1603
|
Done0();
|
238
1604
|
break;
|
239
1605
|
}
|
240
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
1606
|
+
const auto index = (buffer_ >> (buffer_len_ - 15)) & 0x7fff;
|
241
1607
|
const auto op = GetOp1(index);
|
242
1608
|
const int consumed = op & 15;
|
243
1609
|
buffer_len_ -= consumed;
|
244
1610
|
const auto emit_ofs = op >> 6;
|
245
1611
|
switch ((op >> 4) & 3) {
|
1612
|
+
case 0: {
|
1613
|
+
sink_(GetEmit1(index, emit_ofs + 0));
|
1614
|
+
sink_(GetEmit1(index, emit_ofs + 1));
|
1615
|
+
sink_(GetEmit1(index, emit_ofs + 2));
|
1616
|
+
break;
|
1617
|
+
}
|
246
1618
|
case 1: {
|
247
|
-
|
1619
|
+
sink_(GetEmit1(index, emit_ofs + 0));
|
1620
|
+
sink_(GetEmit1(index, emit_ofs + 1));
|
248
1621
|
break;
|
249
1622
|
}
|
250
1623
|
case 2: {
|
251
|
-
|
1624
|
+
sink_(GetEmit1(index, emit_ofs + 0));
|
252
1625
|
break;
|
253
1626
|
}
|
254
|
-
case
|
255
|
-
|
1627
|
+
case 3: {
|
1628
|
+
DecodeStep0();
|
256
1629
|
break;
|
257
1630
|
}
|
258
1631
|
}
|
@@ -261,330 +1634,603 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
261
1634
|
}
|
262
1635
|
|
263
1636
|
private:
|
264
|
-
bool
|
1637
|
+
bool RefillTo15() {
|
265
1638
|
switch (buffer_len_) {
|
266
|
-
case 0:
|
1639
|
+
case 0: {
|
1640
|
+
return Read2to8Bytes();
|
1641
|
+
}
|
267
1642
|
case 1:
|
268
1643
|
case 2:
|
269
1644
|
case 3:
|
270
1645
|
case 4:
|
271
1646
|
case 5:
|
272
|
-
case 6:
|
273
|
-
|
274
|
-
|
1647
|
+
case 6: {
|
1648
|
+
return Read2to7Bytes();
|
1649
|
+
}
|
1650
|
+
case 7:
|
1651
|
+
case 8: {
|
1652
|
+
return Read1to7Bytes();
|
1653
|
+
}
|
1654
|
+
case 9:
|
1655
|
+
case 10:
|
1656
|
+
case 11:
|
1657
|
+
case 12:
|
1658
|
+
case 13:
|
1659
|
+
case 14: {
|
1660
|
+
return Read1to6Bytes();
|
275
1661
|
}
|
276
1662
|
}
|
277
1663
|
return true;
|
278
1664
|
}
|
279
|
-
bool
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
case
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
}
|
297
|
-
case 2: {
|
298
|
-
sink_(GetEmit4(index, op >> 2));
|
299
|
-
break;
|
300
|
-
}
|
301
|
-
}
|
302
|
-
return;
|
1665
|
+
bool Read2to8Bytes() {
|
1666
|
+
switch (end_ - begin_) {
|
1667
|
+
case 0:
|
1668
|
+
case 1: {
|
1669
|
+
return false;
|
1670
|
+
}
|
1671
|
+
case 2: {
|
1672
|
+
Fill2();
|
1673
|
+
return true;
|
1674
|
+
}
|
1675
|
+
case 3: {
|
1676
|
+
Fill3();
|
1677
|
+
return true;
|
1678
|
+
}
|
1679
|
+
case 4: {
|
1680
|
+
Fill4();
|
1681
|
+
return true;
|
303
1682
|
}
|
304
1683
|
case 5: {
|
305
|
-
|
306
|
-
|
307
|
-
switch (op & 3) {
|
308
|
-
case 1: {
|
309
|
-
ok_ = false;
|
310
|
-
break;
|
311
|
-
}
|
312
|
-
case 2: {
|
313
|
-
sink_(GetEmit2(index, op >> 2));
|
314
|
-
break;
|
315
|
-
}
|
316
|
-
}
|
317
|
-
return;
|
1684
|
+
Fill5();
|
1685
|
+
return true;
|
318
1686
|
}
|
319
1687
|
case 6: {
|
320
|
-
|
321
|
-
|
322
|
-
switch (op & 3) {
|
323
|
-
case 1: {
|
324
|
-
ok_ = false;
|
325
|
-
break;
|
326
|
-
}
|
327
|
-
case 2: {
|
328
|
-
sink_(GetEmit3(index, op >> 2));
|
329
|
-
break;
|
330
|
-
}
|
331
|
-
}
|
332
|
-
return;
|
1688
|
+
Fill6();
|
1689
|
+
return true;
|
333
1690
|
}
|
334
|
-
case
|
335
|
-
|
336
|
-
|
337
|
-
case 4: {
|
338
|
-
ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
|
339
|
-
return;
|
1691
|
+
case 7: {
|
1692
|
+
Fill7();
|
1693
|
+
return true;
|
340
1694
|
}
|
341
|
-
|
342
|
-
|
1695
|
+
default: {
|
1696
|
+
Fill8();
|
1697
|
+
return true;
|
343
1698
|
}
|
344
1699
|
}
|
345
1700
|
}
|
346
|
-
void
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
1701
|
+
void Fill2() {
|
1702
|
+
buffer_ = (buffer_ << 16) | (static_cast<uint64_t>(begin_[0]) << 8) |
|
1703
|
+
(static_cast<uint64_t>(begin_[1]) << 0);
|
1704
|
+
begin_ += 2;
|
1705
|
+
buffer_len_ += 16;
|
1706
|
+
}
|
1707
|
+
void Fill3() {
|
1708
|
+
buffer_ = (buffer_ << 24) | (static_cast<uint64_t>(begin_[0]) << 16) |
|
1709
|
+
(static_cast<uint64_t>(begin_[1]) << 8) |
|
1710
|
+
(static_cast<uint64_t>(begin_[2]) << 0);
|
1711
|
+
begin_ += 3;
|
1712
|
+
buffer_len_ += 24;
|
1713
|
+
}
|
1714
|
+
void Fill4() {
|
1715
|
+
buffer_ = (buffer_ << 32) | (static_cast<uint64_t>(begin_[0]) << 24) |
|
1716
|
+
(static_cast<uint64_t>(begin_[1]) << 16) |
|
1717
|
+
(static_cast<uint64_t>(begin_[2]) << 8) |
|
1718
|
+
(static_cast<uint64_t>(begin_[3]) << 0);
|
1719
|
+
begin_ += 4;
|
1720
|
+
buffer_len_ += 32;
|
1721
|
+
}
|
1722
|
+
void Fill5() {
|
1723
|
+
buffer_ = (buffer_ << 40) | (static_cast<uint64_t>(begin_[0]) << 32) |
|
1724
|
+
(static_cast<uint64_t>(begin_[1]) << 24) |
|
1725
|
+
(static_cast<uint64_t>(begin_[2]) << 16) |
|
1726
|
+
(static_cast<uint64_t>(begin_[3]) << 8) |
|
1727
|
+
(static_cast<uint64_t>(begin_[4]) << 0);
|
1728
|
+
begin_ += 5;
|
1729
|
+
buffer_len_ += 40;
|
1730
|
+
}
|
1731
|
+
void Fill6() {
|
1732
|
+
buffer_ = (buffer_ << 48) | (static_cast<uint64_t>(begin_[0]) << 40) |
|
1733
|
+
(static_cast<uint64_t>(begin_[1]) << 32) |
|
1734
|
+
(static_cast<uint64_t>(begin_[2]) << 24) |
|
1735
|
+
(static_cast<uint64_t>(begin_[3]) << 16) |
|
1736
|
+
(static_cast<uint64_t>(begin_[4]) << 8) |
|
1737
|
+
(static_cast<uint64_t>(begin_[5]) << 0);
|
1738
|
+
begin_ += 6;
|
1739
|
+
buffer_len_ += 48;
|
1740
|
+
}
|
1741
|
+
void Fill7() {
|
1742
|
+
buffer_ = (buffer_ << 56) | (static_cast<uint64_t>(begin_[0]) << 48) |
|
1743
|
+
(static_cast<uint64_t>(begin_[1]) << 40) |
|
1744
|
+
(static_cast<uint64_t>(begin_[2]) << 32) |
|
1745
|
+
(static_cast<uint64_t>(begin_[3]) << 24) |
|
1746
|
+
(static_cast<uint64_t>(begin_[4]) << 16) |
|
1747
|
+
(static_cast<uint64_t>(begin_[5]) << 8) |
|
1748
|
+
(static_cast<uint64_t>(begin_[6]) << 0);
|
1749
|
+
begin_ += 7;
|
1750
|
+
buffer_len_ += 56;
|
1751
|
+
}
|
1752
|
+
void Fill8() {
|
1753
|
+
buffer_ = 0 | (static_cast<uint64_t>(begin_[0]) << 56) |
|
1754
|
+
(static_cast<uint64_t>(begin_[1]) << 48) |
|
1755
|
+
(static_cast<uint64_t>(begin_[2]) << 40) |
|
1756
|
+
(static_cast<uint64_t>(begin_[3]) << 32) |
|
1757
|
+
(static_cast<uint64_t>(begin_[4]) << 24) |
|
1758
|
+
(static_cast<uint64_t>(begin_[5]) << 16) |
|
1759
|
+
(static_cast<uint64_t>(begin_[6]) << 8) |
|
1760
|
+
(static_cast<uint64_t>(begin_[7]) << 0);
|
1761
|
+
begin_ += 8;
|
1762
|
+
buffer_len_ += 64;
|
1763
|
+
}
|
1764
|
+
bool Read2to7Bytes() {
|
1765
|
+
switch (end_ - begin_) {
|
360
1766
|
case 0:
|
361
1767
|
case 1: {
|
362
|
-
return
|
1768
|
+
return false;
|
1769
|
+
}
|
1770
|
+
case 2: {
|
1771
|
+
Fill2();
|
1772
|
+
return true;
|
1773
|
+
}
|
1774
|
+
case 3: {
|
1775
|
+
Fill3();
|
1776
|
+
return true;
|
1777
|
+
}
|
1778
|
+
case 4: {
|
1779
|
+
Fill4();
|
1780
|
+
return true;
|
1781
|
+
}
|
1782
|
+
case 5: {
|
1783
|
+
Fill5();
|
1784
|
+
return true;
|
1785
|
+
}
|
1786
|
+
case 6: {
|
1787
|
+
Fill6();
|
1788
|
+
return true;
|
1789
|
+
}
|
1790
|
+
default: {
|
1791
|
+
Fill7();
|
1792
|
+
return true;
|
363
1793
|
}
|
364
1794
|
}
|
365
|
-
return true;
|
366
1795
|
}
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
1796
|
+
bool Read1to7Bytes() {
|
1797
|
+
switch (end_ - begin_) {
|
1798
|
+
case 0: {
|
1799
|
+
return false;
|
1800
|
+
}
|
371
1801
|
case 1: {
|
372
|
-
|
373
|
-
return;
|
1802
|
+
Fill1();
|
1803
|
+
return true;
|
1804
|
+
}
|
1805
|
+
case 2: {
|
1806
|
+
Fill2();
|
1807
|
+
return true;
|
1808
|
+
}
|
1809
|
+
case 3: {
|
1810
|
+
Fill3();
|
1811
|
+
return true;
|
1812
|
+
}
|
1813
|
+
case 4: {
|
1814
|
+
Fill4();
|
1815
|
+
return true;
|
1816
|
+
}
|
1817
|
+
case 5: {
|
1818
|
+
Fill5();
|
1819
|
+
return true;
|
1820
|
+
}
|
1821
|
+
case 6: {
|
1822
|
+
Fill6();
|
1823
|
+
return true;
|
1824
|
+
}
|
1825
|
+
default: {
|
1826
|
+
Fill7();
|
1827
|
+
return true;
|
374
1828
|
}
|
375
1829
|
}
|
376
1830
|
}
|
377
|
-
void
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
switch ((op >> 3) & 1) {
|
1831
|
+
void Fill1() {
|
1832
|
+
buffer_ = (buffer_ << 8) | (static_cast<uint64_t>(begin_[0]) << 0);
|
1833
|
+
begin_ += 1;
|
1834
|
+
buffer_len_ += 8;
|
1835
|
+
}
|
1836
|
+
bool Read1to6Bytes() {
|
1837
|
+
switch (end_ - begin_) {
|
1838
|
+
case 0: {
|
1839
|
+
return false;
|
1840
|
+
}
|
388
1841
|
case 1: {
|
389
|
-
|
390
|
-
|
1842
|
+
Fill1();
|
1843
|
+
return true;
|
391
1844
|
}
|
392
|
-
case
|
393
|
-
|
394
|
-
|
1845
|
+
case 2: {
|
1846
|
+
Fill2();
|
1847
|
+
return true;
|
1848
|
+
}
|
1849
|
+
case 3: {
|
1850
|
+
Fill3();
|
1851
|
+
return true;
|
1852
|
+
}
|
1853
|
+
case 4: {
|
1854
|
+
Fill4();
|
1855
|
+
return true;
|
1856
|
+
}
|
1857
|
+
case 5: {
|
1858
|
+
Fill5();
|
1859
|
+
return true;
|
1860
|
+
}
|
1861
|
+
default: {
|
1862
|
+
Fill6();
|
1863
|
+
return true;
|
395
1864
|
}
|
396
1865
|
}
|
397
1866
|
}
|
398
|
-
|
1867
|
+
void Done0() {
|
1868
|
+
done_ = true;
|
1869
|
+
switch (end_ - begin_) {
|
1870
|
+
case 1: {
|
1871
|
+
Fill1();
|
1872
|
+
break;
|
1873
|
+
}
|
1874
|
+
}
|
399
1875
|
switch (buffer_len_) {
|
400
|
-
case 0:
|
401
1876
|
case 1:
|
402
1877
|
case 2:
|
403
1878
|
case 3:
|
404
|
-
case 4:
|
405
|
-
case 5:
|
406
|
-
case 6: {
|
407
|
-
return Read1();
|
408
|
-
}
|
409
|
-
}
|
410
|
-
return true;
|
411
|
-
}
|
412
|
-
void Done2() {
|
413
|
-
done_ = true;
|
414
|
-
switch (buffer_len_) {
|
415
1879
|
case 4: {
|
416
|
-
|
417
|
-
|
1880
|
+
ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
|
1881
|
+
return;
|
1882
|
+
}
|
1883
|
+
case 5: {
|
1884
|
+
const auto index = buffer_ & 31;
|
1885
|
+
const auto op = GetOp2(index);
|
418
1886
|
switch (op & 3) {
|
1887
|
+
case 0: {
|
1888
|
+
sink_(GetEmit2(index, (op >> 2) + 0));
|
1889
|
+
break;
|
1890
|
+
}
|
419
1891
|
case 1: {
|
420
1892
|
ok_ = false;
|
421
1893
|
break;
|
422
1894
|
}
|
423
|
-
|
424
|
-
|
1895
|
+
}
|
1896
|
+
return;
|
1897
|
+
}
|
1898
|
+
case 6: {
|
1899
|
+
const auto index = buffer_ & 63;
|
1900
|
+
const auto op = GetOp3(index);
|
1901
|
+
switch (op & 3) {
|
1902
|
+
case 0: {
|
1903
|
+
ok_ = false;
|
1904
|
+
break;
|
1905
|
+
}
|
1906
|
+
case 1: {
|
1907
|
+
sink_(GetEmit3(index, (op >> 2) + 0));
|
425
1908
|
break;
|
426
1909
|
}
|
427
1910
|
}
|
428
1911
|
return;
|
429
1912
|
}
|
430
|
-
case
|
431
|
-
const auto index = buffer_ &
|
432
|
-
const auto op =
|
1913
|
+
case 7: {
|
1914
|
+
const auto index = buffer_ & 127;
|
1915
|
+
const auto op = GetOp4(index);
|
433
1916
|
switch (op & 3) {
|
434
|
-
case
|
1917
|
+
case 0: {
|
435
1918
|
ok_ = false;
|
436
1919
|
break;
|
437
1920
|
}
|
438
|
-
case
|
439
|
-
sink_(
|
1921
|
+
case 1: {
|
1922
|
+
sink_(GetEmit4(index, (op >> 2) + 0));
|
440
1923
|
break;
|
441
1924
|
}
|
442
1925
|
}
|
443
1926
|
return;
|
444
1927
|
}
|
445
|
-
case
|
446
|
-
const auto index = buffer_ &
|
447
|
-
const auto op =
|
1928
|
+
case 8: {
|
1929
|
+
const auto index = buffer_ & 255;
|
1930
|
+
const auto op = GetOp5(index);
|
448
1931
|
switch (op & 3) {
|
449
|
-
case
|
1932
|
+
case 0: {
|
450
1933
|
ok_ = false;
|
451
1934
|
break;
|
452
1935
|
}
|
453
|
-
case
|
454
|
-
sink_(
|
1936
|
+
case 1: {
|
1937
|
+
sink_(GetEmit5(index, (op >> 2) + 0));
|
455
1938
|
break;
|
456
1939
|
}
|
457
1940
|
}
|
458
1941
|
return;
|
459
1942
|
}
|
460
|
-
case
|
461
|
-
const auto index = buffer_ &
|
462
|
-
const auto op =
|
1943
|
+
case 9: {
|
1944
|
+
const auto index = buffer_ & 511;
|
1945
|
+
const auto op = GetOp6(index);
|
463
1946
|
switch (op & 3) {
|
464
|
-
case
|
1947
|
+
case 0: {
|
465
1948
|
ok_ = false;
|
466
1949
|
break;
|
467
1950
|
}
|
468
|
-
case
|
469
|
-
sink_(
|
1951
|
+
case 1: {
|
1952
|
+
sink_(GetEmit6(index, (op >> 2) + 0));
|
470
1953
|
break;
|
471
1954
|
}
|
472
1955
|
}
|
473
1956
|
return;
|
474
1957
|
}
|
475
|
-
case
|
476
|
-
const auto index = buffer_ &
|
477
|
-
const auto op =
|
1958
|
+
case 10: {
|
1959
|
+
const auto index = buffer_ & 1023;
|
1960
|
+
const auto op = GetOp7(index);
|
478
1961
|
switch (op & 3) {
|
1962
|
+
case 0: {
|
1963
|
+
sink_(GetEmit7(index, (op >> 2) + 0));
|
1964
|
+
sink_(GetEmit7(index, (op >> 2) + 1));
|
1965
|
+
break;
|
1966
|
+
}
|
479
1967
|
case 1: {
|
480
1968
|
ok_ = false;
|
481
1969
|
break;
|
482
1970
|
}
|
483
1971
|
case 2: {
|
484
|
-
sink_(
|
1972
|
+
sink_(GetEmit7(index, (op >> 2) + 0));
|
1973
|
+
break;
|
1974
|
+
}
|
1975
|
+
}
|
1976
|
+
return;
|
1977
|
+
}
|
1978
|
+
case 11: {
|
1979
|
+
const auto index = buffer_ & 2047;
|
1980
|
+
const auto op = GetOp8(index);
|
1981
|
+
switch (op & 3) {
|
1982
|
+
case 0: {
|
1983
|
+
ok_ = false;
|
1984
|
+
break;
|
1985
|
+
}
|
1986
|
+
case 1: {
|
1987
|
+
sink_(GetEmit8(index, (op >> 2) + 0));
|
1988
|
+
sink_(GetEmit8(index, (op >> 2) + 1));
|
1989
|
+
break;
|
1990
|
+
}
|
1991
|
+
case 2: {
|
1992
|
+
sink_(GetEmit8(index, (op >> 2) + 0));
|
1993
|
+
break;
|
1994
|
+
}
|
1995
|
+
}
|
1996
|
+
return;
|
1997
|
+
}
|
1998
|
+
case 12: {
|
1999
|
+
const auto index = buffer_ & 4095;
|
2000
|
+
const auto op = GetOp9(index);
|
2001
|
+
switch (op & 3) {
|
2002
|
+
case 0: {
|
2003
|
+
ok_ = false;
|
2004
|
+
break;
|
2005
|
+
}
|
2006
|
+
case 1: {
|
2007
|
+
sink_(GetEmit9(index, (op >> 2) + 0));
|
2008
|
+
sink_(GetEmit9(index, (op >> 2) + 1));
|
2009
|
+
break;
|
2010
|
+
}
|
2011
|
+
case 2: {
|
2012
|
+
sink_(GetEmit9(index, (op >> 2) + 0));
|
2013
|
+
break;
|
2014
|
+
}
|
2015
|
+
}
|
2016
|
+
return;
|
2017
|
+
}
|
2018
|
+
case 13: {
|
2019
|
+
const auto index = buffer_ & 8191;
|
2020
|
+
const auto op = GetOp10(index);
|
2021
|
+
switch (op & 3) {
|
2022
|
+
case 0: {
|
2023
|
+
ok_ = false;
|
2024
|
+
break;
|
2025
|
+
}
|
2026
|
+
case 1: {
|
2027
|
+
sink_(GetEmit10(index, (op >> 2) + 0));
|
2028
|
+
sink_(GetEmit10(index, (op >> 2) + 1));
|
2029
|
+
break;
|
2030
|
+
}
|
2031
|
+
case 2: {
|
2032
|
+
sink_(GetEmit10(index, (op >> 2) + 0));
|
2033
|
+
break;
|
2034
|
+
}
|
2035
|
+
}
|
2036
|
+
return;
|
2037
|
+
}
|
2038
|
+
case 14: {
|
2039
|
+
const auto index = buffer_ & 16383;
|
2040
|
+
const auto op = GetOp11(index);
|
2041
|
+
switch (op & 3) {
|
2042
|
+
case 0: {
|
2043
|
+
ok_ = false;
|
2044
|
+
break;
|
2045
|
+
}
|
2046
|
+
case 1: {
|
2047
|
+
sink_(GetEmit11(index, (op >> 2) + 0));
|
2048
|
+
sink_(GetEmit11(index, (op >> 2) + 1));
|
2049
|
+
break;
|
2050
|
+
}
|
2051
|
+
case 2: {
|
2052
|
+
sink_(GetEmit11(index, (op >> 2) + 0));
|
485
2053
|
break;
|
486
2054
|
}
|
487
2055
|
}
|
488
2056
|
return;
|
489
2057
|
}
|
490
|
-
case 1: {
|
491
|
-
ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
|
492
|
-
return;
|
493
|
-
}
|
494
2058
|
case 0: {
|
495
2059
|
return;
|
496
2060
|
}
|
497
2061
|
}
|
498
2062
|
}
|
499
|
-
void
|
500
|
-
if (!
|
501
|
-
|
2063
|
+
void DecodeStep0() {
|
2064
|
+
if (!RefillTo7()) {
|
2065
|
+
Done1();
|
502
2066
|
return;
|
503
2067
|
}
|
504
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
2068
|
+
const auto index = (buffer_ >> (buffer_len_ - 7)) & 0x7f;
|
505
2069
|
const auto op = GetOp12(index);
|
506
|
-
const int consumed = op &
|
2070
|
+
const int consumed = op & 7;
|
507
2071
|
buffer_len_ -= consumed;
|
508
2072
|
const auto emit_ofs = op >> 8;
|
509
|
-
switch ((op >>
|
510
|
-
case
|
511
|
-
|
512
|
-
break;
|
513
|
-
}
|
514
|
-
case 10: {
|
515
|
-
DecodeStep11();
|
2073
|
+
switch ((op >> 3) & 31) {
|
2074
|
+
case 0: {
|
2075
|
+
sink_(GetEmit12(index, emit_ofs + 0));
|
516
2076
|
break;
|
517
2077
|
}
|
518
|
-
case
|
519
|
-
|
2078
|
+
case 1: {
|
2079
|
+
DecodeStep1();
|
520
2080
|
break;
|
521
2081
|
}
|
522
|
-
case
|
523
|
-
|
2082
|
+
case 2: {
|
2083
|
+
DecodeStep2();
|
524
2084
|
break;
|
525
2085
|
}
|
526
|
-
case
|
2086
|
+
case 3: {
|
527
2087
|
DecodeStep3();
|
528
2088
|
break;
|
529
2089
|
}
|
530
|
-
case
|
2090
|
+
case 4: {
|
531
2091
|
DecodeStep4();
|
532
2092
|
break;
|
533
2093
|
}
|
534
|
-
case
|
2094
|
+
case 5: {
|
535
2095
|
DecodeStep5();
|
536
2096
|
break;
|
537
2097
|
}
|
538
|
-
case
|
2098
|
+
case 6: {
|
539
2099
|
DecodeStep6();
|
540
2100
|
break;
|
541
2101
|
}
|
542
|
-
case
|
2102
|
+
case 7: {
|
543
2103
|
DecodeStep7();
|
544
2104
|
break;
|
545
2105
|
}
|
546
|
-
case
|
2106
|
+
case 8: {
|
547
2107
|
DecodeStep8();
|
548
2108
|
break;
|
549
2109
|
}
|
550
|
-
case
|
2110
|
+
case 9: {
|
551
2111
|
DecodeStep9();
|
552
2112
|
break;
|
553
2113
|
}
|
554
|
-
case
|
555
|
-
|
2114
|
+
case 10: {
|
2115
|
+
DecodeStep10();
|
2116
|
+
break;
|
2117
|
+
}
|
2118
|
+
case 11: {
|
2119
|
+
DecodeStep11();
|
2120
|
+
break;
|
2121
|
+
}
|
2122
|
+
case 12: {
|
2123
|
+
DecodeStep12();
|
2124
|
+
break;
|
2125
|
+
}
|
2126
|
+
case 13: {
|
2127
|
+
DecodeStep13();
|
2128
|
+
break;
|
2129
|
+
}
|
2130
|
+
case 14: {
|
2131
|
+
DecodeStep14();
|
2132
|
+
break;
|
2133
|
+
}
|
2134
|
+
case 15: {
|
2135
|
+
DecodeStep18();
|
2136
|
+
break;
|
2137
|
+
}
|
2138
|
+
case 16: {
|
2139
|
+
DecodeStep15();
|
2140
|
+
break;
|
2141
|
+
}
|
2142
|
+
case 17: {
|
2143
|
+
DecodeStep16();
|
2144
|
+
break;
|
2145
|
+
}
|
2146
|
+
case 18: {
|
2147
|
+
DecodeStep19();
|
2148
|
+
break;
|
2149
|
+
}
|
2150
|
+
case 19: {
|
2151
|
+
DecodeStep17();
|
2152
|
+
break;
|
2153
|
+
}
|
2154
|
+
case 20: {
|
2155
|
+
DecodeStep20();
|
556
2156
|
break;
|
557
2157
|
}
|
558
2158
|
}
|
559
2159
|
}
|
560
|
-
|
561
|
-
done_ = true;
|
2160
|
+
bool RefillTo7() {
|
562
2161
|
switch (buffer_len_) {
|
2162
|
+
case 0: {
|
2163
|
+
return Read1to8Bytes();
|
2164
|
+
}
|
2165
|
+
case 1:
|
2166
|
+
case 2:
|
2167
|
+
case 3:
|
2168
|
+
case 4:
|
2169
|
+
case 5:
|
2170
|
+
case 6: {
|
2171
|
+
return Read1to7Bytes();
|
2172
|
+
}
|
2173
|
+
}
|
2174
|
+
return true;
|
2175
|
+
}
|
2176
|
+
bool Read1to8Bytes() {
|
2177
|
+
switch (end_ - begin_) {
|
2178
|
+
case 0: {
|
2179
|
+
return false;
|
2180
|
+
}
|
2181
|
+
case 1: {
|
2182
|
+
Fill1();
|
2183
|
+
return true;
|
2184
|
+
}
|
2185
|
+
case 2: {
|
2186
|
+
Fill2();
|
2187
|
+
return true;
|
2188
|
+
}
|
2189
|
+
case 3: {
|
2190
|
+
Fill3();
|
2191
|
+
return true;
|
2192
|
+
}
|
2193
|
+
case 4: {
|
2194
|
+
Fill4();
|
2195
|
+
return true;
|
2196
|
+
}
|
2197
|
+
case 5: {
|
2198
|
+
Fill5();
|
2199
|
+
return true;
|
2200
|
+
}
|
2201
|
+
case 6: {
|
2202
|
+
Fill6();
|
2203
|
+
return true;
|
2204
|
+
}
|
563
2205
|
case 7: {
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
2206
|
+
Fill7();
|
2207
|
+
return true;
|
2208
|
+
}
|
2209
|
+
default: {
|
2210
|
+
Fill8();
|
2211
|
+
return true;
|
2212
|
+
}
|
2213
|
+
}
|
2214
|
+
}
|
2215
|
+
void Done1() {
|
2216
|
+
done_ = true;
|
2217
|
+
switch (buffer_len_) {
|
2218
|
+
case 1:
|
2219
|
+
case 2:
|
2220
|
+
case 3: {
|
2221
|
+
ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
|
576
2222
|
return;
|
577
2223
|
}
|
578
2224
|
case 4: {
|
579
2225
|
const auto index = buffer_ & 15;
|
580
2226
|
const auto op = GetOp13(index);
|
581
2227
|
switch (op & 3) {
|
582
|
-
case
|
583
|
-
|
2228
|
+
case 0: {
|
2229
|
+
sink_(GetEmit13(index, (op >> 2) + 0));
|
584
2230
|
break;
|
585
2231
|
}
|
586
|
-
case
|
587
|
-
|
2232
|
+
case 1: {
|
2233
|
+
ok_ = false;
|
588
2234
|
break;
|
589
2235
|
}
|
590
2236
|
}
|
@@ -594,12 +2240,12 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
594
2240
|
const auto index = buffer_ & 31;
|
595
2241
|
const auto op = GetOp14(index);
|
596
2242
|
switch (op & 3) {
|
597
|
-
case
|
2243
|
+
case 0: {
|
598
2244
|
ok_ = false;
|
599
2245
|
break;
|
600
2246
|
}
|
601
|
-
case
|
602
|
-
sink_(GetEmit14(index, op >> 2));
|
2247
|
+
case 1: {
|
2248
|
+
sink_(GetEmit14(index, (op >> 2) + 0));
|
603
2249
|
break;
|
604
2250
|
}
|
605
2251
|
}
|
@@ -609,48 +2255,74 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
609
2255
|
const auto index = buffer_ & 63;
|
610
2256
|
const auto op = GetOp15(index);
|
611
2257
|
switch (op & 3) {
|
612
|
-
case
|
2258
|
+
case 0: {
|
613
2259
|
ok_ = false;
|
614
2260
|
break;
|
615
2261
|
}
|
616
|
-
case
|
617
|
-
sink_(GetEmit15(index, op >> 2));
|
2262
|
+
case 1: {
|
2263
|
+
sink_(GetEmit15(index, (op >> 2) + 0));
|
618
2264
|
break;
|
619
2265
|
}
|
620
2266
|
}
|
621
2267
|
return;
|
622
2268
|
}
|
623
|
-
case 1:
|
624
|
-
case 2:
|
625
|
-
case 3: {
|
626
|
-
ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
|
627
|
-
return;
|
628
|
-
}
|
629
2269
|
case 0: {
|
630
2270
|
return;
|
631
2271
|
}
|
632
2272
|
}
|
633
2273
|
}
|
634
|
-
void
|
2274
|
+
void DecodeStep1() {
|
635
2275
|
if (!RefillTo1()) {
|
636
|
-
|
2276
|
+
Done2();
|
637
2277
|
return;
|
638
2278
|
}
|
639
2279
|
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
640
|
-
const auto op =
|
2280
|
+
const auto op = GetOp16(index);
|
641
2281
|
const int consumed = op & 1;
|
642
2282
|
buffer_len_ -= consumed;
|
643
2283
|
const auto emit_ofs = op >> 1;
|
644
|
-
sink_(
|
2284
|
+
sink_(GetEmit16(index, emit_ofs + 0));
|
645
2285
|
}
|
646
2286
|
bool RefillTo1() {
|
647
2287
|
switch (buffer_len_) {
|
648
2288
|
case 0: {
|
649
|
-
return
|
2289
|
+
return Read1to8Bytes();
|
650
2290
|
}
|
651
2291
|
}
|
652
2292
|
return true;
|
653
2293
|
}
|
2294
|
+
void Done2() {
|
2295
|
+
done_ = true;
|
2296
|
+
ok_ = false;
|
2297
|
+
}
|
2298
|
+
void DecodeStep2() {
|
2299
|
+
if (!RefillTo1()) {
|
2300
|
+
Done3();
|
2301
|
+
return;
|
2302
|
+
}
|
2303
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2304
|
+
const auto op = GetOp17(index);
|
2305
|
+
const int consumed = op & 1;
|
2306
|
+
buffer_len_ -= consumed;
|
2307
|
+
const auto emit_ofs = op >> 1;
|
2308
|
+
sink_(GetEmit17(index, emit_ofs + 0));
|
2309
|
+
}
|
2310
|
+
void Done3() {
|
2311
|
+
done_ = true;
|
2312
|
+
ok_ = false;
|
2313
|
+
}
|
2314
|
+
void DecodeStep3() {
|
2315
|
+
if (!RefillTo1()) {
|
2316
|
+
Done4();
|
2317
|
+
return;
|
2318
|
+
}
|
2319
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2320
|
+
const auto op = GetOp18(index);
|
2321
|
+
const int consumed = op & 1;
|
2322
|
+
buffer_len_ -= consumed;
|
2323
|
+
const auto emit_ofs = op >> 1;
|
2324
|
+
sink_(GetEmit18(index, emit_ofs + 0));
|
2325
|
+
}
|
654
2326
|
void Done4() {
|
655
2327
|
done_ = true;
|
656
2328
|
ok_ = false;
|
@@ -661,11 +2333,11 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
661
2333
|
return;
|
662
2334
|
}
|
663
2335
|
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
664
|
-
const auto op =
|
2336
|
+
const auto op = GetOp19(index);
|
665
2337
|
const int consumed = op & 1;
|
666
2338
|
buffer_len_ -= consumed;
|
667
2339
|
const auto emit_ofs = op >> 1;
|
668
|
-
sink_(
|
2340
|
+
sink_(GetEmit19(index, emit_ofs + 0));
|
669
2341
|
}
|
670
2342
|
void Done5() {
|
671
2343
|
done_ = true;
|
@@ -677,11 +2349,11 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
677
2349
|
return;
|
678
2350
|
}
|
679
2351
|
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
680
|
-
const auto op =
|
2352
|
+
const auto op = GetOp20(index);
|
681
2353
|
const int consumed = op & 1;
|
682
2354
|
buffer_len_ -= consumed;
|
683
2355
|
const auto emit_ofs = op >> 1;
|
684
|
-
sink_(
|
2356
|
+
sink_(GetEmit20(index, emit_ofs + 0));
|
685
2357
|
}
|
686
2358
|
void Done6() {
|
687
2359
|
done_ = true;
|
@@ -693,11 +2365,11 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
693
2365
|
return;
|
694
2366
|
}
|
695
2367
|
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
696
|
-
const auto op =
|
2368
|
+
const auto op = GetOp21(index);
|
697
2369
|
const int consumed = op & 1;
|
698
2370
|
buffer_len_ -= consumed;
|
699
2371
|
const auto emit_ofs = op >> 1;
|
700
|
-
sink_(
|
2372
|
+
sink_(GetEmit21(index, emit_ofs + 0));
|
701
2373
|
}
|
702
2374
|
void Done7() {
|
703
2375
|
done_ = true;
|
@@ -709,11 +2381,11 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
709
2381
|
return;
|
710
2382
|
}
|
711
2383
|
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
712
|
-
const auto op =
|
2384
|
+
const auto op = GetOp22(index);
|
713
2385
|
const int consumed = op & 1;
|
714
2386
|
buffer_len_ -= consumed;
|
715
2387
|
const auto emit_ofs = op >> 1;
|
716
|
-
sink_(
|
2388
|
+
sink_(GetEmit22(index, emit_ofs + 0));
|
717
2389
|
}
|
718
2390
|
void Done8() {
|
719
2391
|
done_ = true;
|
@@ -725,236 +2397,401 @@ class HuffDecoder : public HuffDecoderCommon {
|
|
725
2397
|
return;
|
726
2398
|
}
|
727
2399
|
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
728
|
-
const auto op =
|
2400
|
+
const auto op = GetOp23(index);
|
729
2401
|
const int consumed = op & 1;
|
730
2402
|
buffer_len_ -= consumed;
|
731
2403
|
const auto emit_ofs = op >> 1;
|
732
|
-
sink_(
|
2404
|
+
sink_(GetEmit23(index, emit_ofs + 0));
|
733
2405
|
}
|
734
2406
|
void Done9() {
|
735
2407
|
done_ = true;
|
736
2408
|
ok_ = false;
|
737
2409
|
}
|
738
2410
|
void DecodeStep9() {
|
739
|
-
if (!
|
2411
|
+
if (!RefillTo1()) {
|
740
2412
|
Done10();
|
741
2413
|
return;
|
742
2414
|
}
|
743
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
744
|
-
const auto op =
|
745
|
-
const int consumed = op &
|
746
|
-
buffer_len_ -= consumed;
|
747
|
-
const auto emit_ofs = op >>
|
748
|
-
sink_(
|
2415
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2416
|
+
const auto op = GetOp24(index);
|
2417
|
+
const int consumed = op & 1;
|
2418
|
+
buffer_len_ -= consumed;
|
2419
|
+
const auto emit_ofs = op >> 1;
|
2420
|
+
sink_(GetEmit24(index, emit_ofs + 0));
|
749
2421
|
}
|
750
2422
|
void Done10() {
|
751
2423
|
done_ = true;
|
752
|
-
|
753
|
-
case 0:
|
754
|
-
case 1: {
|
755
|
-
ok_ = false;
|
756
|
-
return;
|
757
|
-
}
|
758
|
-
}
|
2424
|
+
ok_ = false;
|
759
2425
|
}
|
760
2426
|
void DecodeStep10() {
|
761
|
-
if (!
|
2427
|
+
if (!RefillTo1()) {
|
762
2428
|
Done11();
|
763
2429
|
return;
|
764
2430
|
}
|
765
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
766
|
-
const auto op =
|
2431
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2432
|
+
const auto op = GetOp25(index);
|
2433
|
+
const int consumed = op & 1;
|
2434
|
+
buffer_len_ -= consumed;
|
2435
|
+
const auto emit_ofs = op >> 1;
|
2436
|
+
sink_(GetEmit25(index, emit_ofs + 0));
|
2437
|
+
}
|
2438
|
+
void Done11() {
|
2439
|
+
done_ = true;
|
2440
|
+
ok_ = false;
|
2441
|
+
}
|
2442
|
+
void DecodeStep11() {
|
2443
|
+
if (!RefillTo1()) {
|
2444
|
+
Done12();
|
2445
|
+
return;
|
2446
|
+
}
|
2447
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2448
|
+
const auto op = GetOp26(index);
|
2449
|
+
const int consumed = op & 1;
|
2450
|
+
buffer_len_ -= consumed;
|
2451
|
+
const auto emit_ofs = op >> 1;
|
2452
|
+
sink_(GetEmit26(index, emit_ofs + 0));
|
2453
|
+
}
|
2454
|
+
void Done12() {
|
2455
|
+
done_ = true;
|
2456
|
+
ok_ = false;
|
2457
|
+
}
|
2458
|
+
void DecodeStep12() {
|
2459
|
+
if (!RefillTo1()) {
|
2460
|
+
Done13();
|
2461
|
+
return;
|
2462
|
+
}
|
2463
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2464
|
+
const auto op = GetOp27(index);
|
2465
|
+
const int consumed = op & 1;
|
2466
|
+
buffer_len_ -= consumed;
|
2467
|
+
const auto emit_ofs = op >> 1;
|
2468
|
+
sink_(GetEmit27(index, emit_ofs + 0));
|
2469
|
+
}
|
2470
|
+
void Done13() {
|
2471
|
+
done_ = true;
|
2472
|
+
ok_ = false;
|
2473
|
+
}
|
2474
|
+
void DecodeStep13() {
|
2475
|
+
if (!RefillTo1()) {
|
2476
|
+
Done14();
|
2477
|
+
return;
|
2478
|
+
}
|
2479
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2480
|
+
const auto op = GetOp28(index);
|
2481
|
+
const int consumed = op & 1;
|
2482
|
+
buffer_len_ -= consumed;
|
2483
|
+
const auto emit_ofs = op >> 1;
|
2484
|
+
sink_(GetEmit28(index, emit_ofs + 0));
|
2485
|
+
}
|
2486
|
+
void Done14() {
|
2487
|
+
done_ = true;
|
2488
|
+
ok_ = false;
|
2489
|
+
}
|
2490
|
+
void DecodeStep14() {
|
2491
|
+
if (!RefillTo1()) {
|
2492
|
+
Done15();
|
2493
|
+
return;
|
2494
|
+
}
|
2495
|
+
const auto index = (buffer_ >> (buffer_len_ - 1)) & 0x1;
|
2496
|
+
const auto op = GetOp29(index);
|
2497
|
+
const int consumed = op & 1;
|
2498
|
+
buffer_len_ -= consumed;
|
2499
|
+
const auto emit_ofs = op >> 1;
|
2500
|
+
sink_(GetEmit29(index, emit_ofs + 0));
|
2501
|
+
}
|
2502
|
+
void Done15() {
|
2503
|
+
done_ = true;
|
2504
|
+
ok_ = false;
|
2505
|
+
}
|
2506
|
+
void DecodeStep15() {
|
2507
|
+
if (!RefillTo2()) {
|
2508
|
+
Done16();
|
2509
|
+
return;
|
2510
|
+
}
|
2511
|
+
const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
|
2512
|
+
const auto op = GetOp30(index);
|
767
2513
|
const int consumed = op & 3;
|
768
2514
|
buffer_len_ -= consumed;
|
769
2515
|
const auto emit_ofs = op >> 2;
|
770
|
-
sink_(
|
2516
|
+
sink_(GetEmit30(index, emit_ofs + 0));
|
771
2517
|
}
|
772
|
-
bool
|
2518
|
+
bool RefillTo2() {
|
773
2519
|
switch (buffer_len_) {
|
774
|
-
case 0:
|
775
|
-
|
776
|
-
|
777
|
-
|
2520
|
+
case 0: {
|
2521
|
+
return Read1to8Bytes();
|
2522
|
+
}
|
2523
|
+
case 1: {
|
2524
|
+
return Read1to7Bytes();
|
778
2525
|
}
|
779
2526
|
}
|
780
2527
|
return true;
|
781
2528
|
}
|
782
|
-
void
|
2529
|
+
void Done16() {
|
783
2530
|
done_ = true;
|
784
2531
|
switch (buffer_len_) {
|
785
|
-
case 0:
|
786
2532
|
case 1:
|
787
|
-
case
|
2533
|
+
case 0: {
|
788
2534
|
ok_ = false;
|
789
2535
|
return;
|
790
2536
|
}
|
791
2537
|
}
|
792
2538
|
}
|
793
|
-
void
|
794
|
-
if (!
|
795
|
-
|
2539
|
+
void DecodeStep16() {
|
2540
|
+
if (!RefillTo2()) {
|
2541
|
+
Done17();
|
796
2542
|
return;
|
797
2543
|
}
|
798
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
799
|
-
const auto op =
|
800
|
-
const int consumed = op &
|
2544
|
+
const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
|
2545
|
+
const auto op = GetOp31(index);
|
2546
|
+
const int consumed = op & 3;
|
801
2547
|
buffer_len_ -= consumed;
|
802
|
-
const auto emit_ofs = op >>
|
803
|
-
sink_(
|
804
|
-
}
|
805
|
-
bool RefillTo4() {
|
806
|
-
switch (buffer_len_) {
|
807
|
-
case 0:
|
808
|
-
case 1:
|
809
|
-
case 2:
|
810
|
-
case 3: {
|
811
|
-
return Read1();
|
812
|
-
}
|
813
|
-
}
|
814
|
-
return true;
|
2548
|
+
const auto emit_ofs = op >> 2;
|
2549
|
+
sink_(GetEmit31(index, emit_ofs + 0));
|
815
2550
|
}
|
816
|
-
void
|
2551
|
+
void Done17() {
|
817
2552
|
done_ = true;
|
818
2553
|
switch (buffer_len_) {
|
819
|
-
case 0:
|
820
2554
|
case 1:
|
821
|
-
case
|
822
|
-
case 3: {
|
2555
|
+
case 0: {
|
823
2556
|
ok_ = false;
|
824
2557
|
return;
|
825
2558
|
}
|
826
2559
|
}
|
827
2560
|
}
|
828
|
-
void
|
2561
|
+
void DecodeStep17() {
|
829
2562
|
if (!RefillTo5()) {
|
830
|
-
|
2563
|
+
Done18();
|
831
2564
|
return;
|
832
2565
|
}
|
833
2566
|
const auto index = (buffer_ >> (buffer_len_ - 5)) & 0x1f;
|
834
|
-
const auto op =
|
2567
|
+
const auto op = GetOp32(index);
|
835
2568
|
const int consumed = op & 7;
|
836
2569
|
buffer_len_ -= consumed;
|
837
|
-
const auto emit_ofs = op >>
|
838
|
-
|
839
|
-
case 1: {
|
840
|
-
DecodeStep13();
|
841
|
-
break;
|
842
|
-
}
|
843
|
-
case 0: {
|
844
|
-
sink_(GetEmit26(index, emit_ofs + 0));
|
845
|
-
break;
|
846
|
-
}
|
847
|
-
}
|
2570
|
+
const auto emit_ofs = op >> 3;
|
2571
|
+
sink_(GetEmit32(index, emit_ofs + 0));
|
848
2572
|
}
|
849
2573
|
bool RefillTo5() {
|
850
2574
|
switch (buffer_len_) {
|
851
|
-
case 0:
|
2575
|
+
case 0: {
|
2576
|
+
return Read1to8Bytes();
|
2577
|
+
}
|
852
2578
|
case 1:
|
853
2579
|
case 2:
|
854
2580
|
case 3:
|
855
2581
|
case 4: {
|
856
|
-
return
|
2582
|
+
return Read1to7Bytes();
|
857
2583
|
}
|
858
2584
|
}
|
859
2585
|
return true;
|
860
2586
|
}
|
861
|
-
void
|
2587
|
+
void Done18() {
|
862
2588
|
done_ = true;
|
863
2589
|
switch (buffer_len_) {
|
2590
|
+
case 1:
|
2591
|
+
case 2:
|
2592
|
+
case 3:
|
2593
|
+
case 0: {
|
2594
|
+
ok_ = false;
|
2595
|
+
return;
|
2596
|
+
}
|
864
2597
|
case 4: {
|
865
2598
|
const auto index = buffer_ & 15;
|
866
|
-
const auto op =
|
867
|
-
switch (op &
|
868
|
-
case
|
869
|
-
|
2599
|
+
const auto op = GetOp33(index);
|
2600
|
+
switch (op & 1) {
|
2601
|
+
case 0: {
|
2602
|
+
sink_(GetEmit33(index, (op >> 1) + 0));
|
870
2603
|
break;
|
871
2604
|
}
|
872
|
-
case
|
873
|
-
|
2605
|
+
case 1: {
|
2606
|
+
ok_ = false;
|
874
2607
|
break;
|
875
2608
|
}
|
876
2609
|
}
|
877
2610
|
return;
|
878
2611
|
}
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
2612
|
+
}
|
2613
|
+
}
|
2614
|
+
void DecodeStep18() {
|
2615
|
+
if (!RefillTo2()) {
|
2616
|
+
Done19();
|
2617
|
+
return;
|
2618
|
+
}
|
2619
|
+
const auto index = (buffer_ >> (buffer_len_ - 2)) & 0x3;
|
2620
|
+
const auto op = GetOp34(index);
|
2621
|
+
const int consumed = op & 3;
|
2622
|
+
buffer_len_ -= consumed;
|
2623
|
+
const auto emit_ofs = op >> 2;
|
2624
|
+
sink_(GetEmit34(index, emit_ofs + 0));
|
2625
|
+
}
|
2626
|
+
void Done19() {
|
2627
|
+
done_ = true;
|
2628
|
+
switch (buffer_len_) {
|
2629
|
+
case 1: {
|
2630
|
+
const auto index = buffer_ & 1;
|
2631
|
+
const auto op = GetOp35(index);
|
2632
|
+
switch (op & 1) {
|
2633
|
+
case 0: {
|
2634
|
+
sink_(GetEmit35(index, (op >> 1) + 0));
|
2635
|
+
break;
|
2636
|
+
}
|
2637
|
+
case 1: {
|
2638
|
+
ok_ = false;
|
2639
|
+
break;
|
2640
|
+
}
|
2641
|
+
}
|
883
2642
|
return;
|
884
2643
|
}
|
885
2644
|
case 0: {
|
2645
|
+
ok_ = false;
|
886
2646
|
return;
|
887
2647
|
}
|
888
2648
|
}
|
889
2649
|
}
|
890
|
-
void
|
891
|
-
if (!
|
892
|
-
|
2650
|
+
void DecodeStep19() {
|
2651
|
+
if (!RefillTo3()) {
|
2652
|
+
Done20();
|
893
2653
|
return;
|
894
2654
|
}
|
895
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
896
|
-
const auto op =
|
2655
|
+
const auto index = (buffer_ >> (buffer_len_ - 3)) & 0x7;
|
2656
|
+
const auto op = GetOp36(index);
|
897
2657
|
const int consumed = op & 3;
|
898
2658
|
buffer_len_ -= consumed;
|
899
|
-
const auto emit_ofs = op >>
|
900
|
-
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
break;
|
905
|
-
}
|
2659
|
+
const auto emit_ofs = op >> 2;
|
2660
|
+
sink_(GetEmit36(index, emit_ofs + 0));
|
2661
|
+
}
|
2662
|
+
bool RefillTo3() {
|
2663
|
+
switch (buffer_len_) {
|
906
2664
|
case 0: {
|
907
|
-
|
908
|
-
|
2665
|
+
return Read1to8Bytes();
|
2666
|
+
}
|
2667
|
+
case 1:
|
2668
|
+
case 2: {
|
2669
|
+
return Read1to7Bytes();
|
909
2670
|
}
|
910
2671
|
}
|
2672
|
+
return true;
|
911
2673
|
}
|
912
|
-
void
|
2674
|
+
void Done20() {
|
913
2675
|
done_ = true;
|
914
2676
|
switch (buffer_len_) {
|
915
|
-
case 1:
|
916
|
-
|
2677
|
+
case 1:
|
2678
|
+
case 0: {
|
2679
|
+
ok_ = false;
|
917
2680
|
return;
|
918
2681
|
}
|
919
|
-
case
|
2682
|
+
case 2: {
|
2683
|
+
const auto index = buffer_ & 3;
|
2684
|
+
const auto op = GetOp37(index);
|
2685
|
+
switch (op & 1) {
|
2686
|
+
case 0: {
|
2687
|
+
sink_(GetEmit37(index, (op >> 1) + 0));
|
2688
|
+
break;
|
2689
|
+
}
|
2690
|
+
case 1: {
|
2691
|
+
ok_ = false;
|
2692
|
+
break;
|
2693
|
+
}
|
2694
|
+
}
|
920
2695
|
return;
|
921
2696
|
}
|
922
2697
|
}
|
923
2698
|
}
|
924
|
-
void
|
925
|
-
if (!
|
926
|
-
|
2699
|
+
void DecodeStep20() {
|
2700
|
+
if (!RefillTo8()) {
|
2701
|
+
Done21();
|
927
2702
|
return;
|
928
2703
|
}
|
929
|
-
const auto index = (buffer_ >> (buffer_len_ -
|
930
|
-
const auto op =
|
931
|
-
const int consumed = op &
|
2704
|
+
const auto index = (buffer_ >> (buffer_len_ - 8)) & 0xff;
|
2705
|
+
const auto op = GetOp38(index);
|
2706
|
+
const int consumed = op & 15;
|
932
2707
|
buffer_len_ -= consumed;
|
933
|
-
const auto emit_ofs = op >>
|
934
|
-
|
2708
|
+
const auto emit_ofs = op >> 5;
|
2709
|
+
switch ((op >> 4) & 1) {
|
2710
|
+
case 0: {
|
2711
|
+
sink_(GetEmit38(index, emit_ofs + 0));
|
2712
|
+
break;
|
2713
|
+
}
|
2714
|
+
case 1: {
|
2715
|
+
begin_ = end_;
|
2716
|
+
buffer_len_ = 0;
|
2717
|
+
break;
|
2718
|
+
}
|
2719
|
+
}
|
935
2720
|
}
|
936
|
-
|
2721
|
+
bool RefillTo8() {
|
2722
|
+
switch (buffer_len_) {
|
2723
|
+
case 0: {
|
2724
|
+
return Read1to8Bytes();
|
2725
|
+
}
|
2726
|
+
case 1:
|
2727
|
+
case 2:
|
2728
|
+
case 3:
|
2729
|
+
case 4:
|
2730
|
+
case 5:
|
2731
|
+
case 6:
|
2732
|
+
case 7: {
|
2733
|
+
return Read1to7Bytes();
|
2734
|
+
}
|
2735
|
+
}
|
2736
|
+
return true;
|
2737
|
+
}
|
2738
|
+
void Done21() {
|
937
2739
|
done_ = true;
|
2740
|
+
switch (end_ - begin_) {}
|
938
2741
|
switch (buffer_len_) {
|
939
|
-
case
|
940
|
-
|
941
|
-
|
2742
|
+
case 1:
|
2743
|
+
case 2:
|
2744
|
+
case 3:
|
2745
|
+
case 4: {
|
2746
|
+
ok_ = (buffer_ & ((1 << buffer_len_) - 1)) == (1 << buffer_len_) - 1;
|
2747
|
+
return;
|
2748
|
+
}
|
2749
|
+
case 5: {
|
2750
|
+
const auto index = buffer_ & 31;
|
2751
|
+
const auto op = GetOp39(index);
|
942
2752
|
switch (op & 3) {
|
2753
|
+
case 0: {
|
2754
|
+
sink_(GetEmit39(index, (op >> 2) + 0));
|
2755
|
+
break;
|
2756
|
+
}
|
943
2757
|
case 1: {
|
944
2758
|
ok_ = false;
|
945
2759
|
break;
|
946
2760
|
}
|
947
|
-
|
948
|
-
|
2761
|
+
}
|
2762
|
+
return;
|
2763
|
+
}
|
2764
|
+
case 6: {
|
2765
|
+
const auto index = buffer_ & 63;
|
2766
|
+
const auto op = GetOp40(index);
|
2767
|
+
switch (op & 3) {
|
2768
|
+
case 0: {
|
2769
|
+
ok_ = false;
|
2770
|
+
break;
|
2771
|
+
}
|
2772
|
+
case 1: {
|
2773
|
+
sink_(GetEmit40(index, (op >> 2) + 0));
|
949
2774
|
break;
|
950
2775
|
}
|
951
2776
|
}
|
952
2777
|
return;
|
953
2778
|
}
|
954
|
-
case
|
955
|
-
|
956
|
-
|
957
|
-
|
2779
|
+
case 7: {
|
2780
|
+
const auto index = buffer_ & 127;
|
2781
|
+
const auto op = GetOp41(index);
|
2782
|
+
switch (op & 3) {
|
2783
|
+
case 0: {
|
2784
|
+
ok_ = false;
|
2785
|
+
break;
|
2786
|
+
}
|
2787
|
+
case 1: {
|
2788
|
+
sink_(GetEmit41(index, (op >> 2) + 0));
|
2789
|
+
break;
|
2790
|
+
}
|
2791
|
+
}
|
2792
|
+
return;
|
2793
|
+
}
|
2794
|
+
case 0: {
|
958
2795
|
return;
|
959
2796
|
}
|
960
2797
|
}
|