/third_party/skia/third_party/externals/tint/src/ |
H A D | block_allocator.h | 27 /// BlockAllocator. When the BlockAllocator is destructed, all constructed 30 /// Objects held by the BlockAllocator can be iterated over using a 33 class BlockAllocator { class 42 BlockAllocator() = default; 44 BlockAllocator(BlockAllocator&&) = default; 46 /// @return this BlockAllocator 47 BlockAllocator& operator=(BlockAllocator [all...] |
H A D | block_allocator_test.cc | 32 using Allocator = BlockAllocator<int>; in TEST_F() 39 FAIL() << "BlockAllocator should be empty"; in TEST_F() 45 FAIL() << "BlockAllocator should be empty"; in TEST_F() 51 using Allocator = BlockAllocator<LifetimeCounter>; in TEST_F() 68 using Allocator = BlockAllocator<LifetimeCounter>; in TEST_F() 87 using Allocator = BlockAllocator<LifetimeCounter>; in TEST_F() 115 using Allocator = BlockAllocator<int>; in TEST_F()
|
H A D | program.h | 41 /// ASTNodeAllocator is an alias to BlockAllocator<ast::Node> 42 using ASTNodeAllocator = BlockAllocator<ast::Node>; 44 /// SemNodeAllocator is an alias to BlockAllocator<sem::Node> 45 using SemNodeAllocator = BlockAllocator<sem::Node>;
|
/third_party/nghttp2/src/ |
H A D | allocator.h | 51 // BlockAllocator allocates memory block with given size at once, and 57 struct BlockAllocator { struct 58 BlockAllocator(size_t block_size, size_t isolation_threshold) in BlockAllocator() function 66 ~BlockAllocator() { reset(); } in ~BlockAllocator() 68 BlockAllocator(BlockAllocator &&other) noexcept 74 BlockAllocator &operator=(BlockAllocator &&other) noexcept { 85 BlockAllocator(const BlockAllocator [all...] |
H A D | shrpx_http.h | 44 StringRef create_error_html(BlockAllocator &balloc, unsigned int status_code); 59 StringRef create_forwarded(BlockAllocator &balloc, int params, 73 StringRef create_affinity_cookie(BlockAllocator &balloc, const StringRef &name, 83 StringRef create_altsvc_header_value(BlockAllocator &balloc,
|
H A D | http2.h | 103 StringRef stringify_status(BlockAllocator &balloc, unsigned int status_code); 286 StringRef rewrite_location_uri(BlockAllocator &balloc, const StringRef &uri, 380 StringRef path_join(BlockAllocator &balloc, const StringRef &base_path, 404 StringRef normalize_path(BlockAllocator &balloc, const StringRef &path, 410 StringRef normalize_path_colon(BlockAllocator &balloc, const StringRef &path, 415 StringRef rewrite_clean_path(BlockAllocator &balloc, const StringRef &src); 427 int construct_push_component(BlockAllocator &balloc, StringRef &scheme, 432 StringRef copy_lower(BlockAllocator &balloc, const StringRef &src);
|
H A D | shrpx_http_test.cc | 42 BlockAllocator balloc(1024, 1024); in test_shrpx_http_create_forwarded() 95 BlockAllocator balloc(1024, 1024); in test_shrpx_http_create_affinity_cookie() 123 BlockAllocator balloc(1024, 1024); 138 BlockAllocator balloc(1024, 1024);
|
H A D | shrpx_downstream.h | 65 FieldStore(BlockAllocator &balloc, size_t headers_initial_capacity) in FieldStore() 135 BlockAllocator &balloc_; 155 Request(BlockAllocator &balloc) in Request() 237 Response(BlockAllocator &balloc) in Response() 493 BlockAllocator &get_block_allocator(); 538 BlockAllocator balloc_;
|
H A D | util.h | 137 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src); 140 StringRef percent_encode_token(BlockAllocator &balloc, const StringRef &target); 167 StringRef quote_string(BlockAllocator &balloc, const StringRef &target); 198 StringRef format_hex(BlockAllocator &balloc, const StringRef &s); 216 StringRef decode_hex(BlockAllocator &balloc, const StringRef &s); 459 StringRef make_string_ref_uint(BlockAllocator &balloc, T n) { in make_string_ref_uint() 525 StringRef to_base64(BlockAllocator &balloc, const StringRef &token68str); 784 StringRef make_hostport(BlockAllocator &balloc, const StringRef &host, 815 StringRef make_http_hostport(BlockAllocator &balloc, const StringRef &host, 955 StringRef rstrip(BlockAllocator [all...] |
H A D | util_test.cc | 117 BlockAllocator balloc(4096, 4096); in test_util_to_base64() 136 BlockAllocator balloc(4096, 4096); in test_util_percent_encode_token() 160 BlockAllocator balloc(1024, 1024); in test_util_percent_decode() 172 BlockAllocator balloc(4096, 4096); in test_util_quote_string() 268 BlockAllocator balloc(1024, 1024); in test_util_make_string_ref_uint() 530 BlockAllocator balloc(4096, 4096); in test_util_make_http_hostport() 550 BlockAllocator balloc(4096, 4096); in test_util_make_hostport() 592 BlockAllocator balloc(4096, 4096); in test_util_format_hex() 608 BlockAllocator balloc(4096, 4096); in test_util_decode_hex() 698 BlockAllocator ballo in test_util_rstrip() [all...] |
H A D | shrpx_http.cc | 38 StringRef create_error_html(BlockAllocator &balloc, unsigned int http_status) { in create_error_html() 60 StringRef create_forwarded(BlockAllocator &balloc, int params, in create_forwarded() 176 StringRef create_affinity_cookie(BlockAllocator &balloc, const StringRef &name, in create_affinity_cookie() 223 StringRef create_altsvc_header_value(BlockAllocator &balloc, in create_altsvc_header_value()
|
H A D | shrpx_tls.h | 315 StringRef get_x509_subject_name(BlockAllocator &balloc, X509 *x); 319 StringRef get_x509_issuer_name(BlockAllocator &balloc, X509 *x); 323 StringRef get_x509_serial(BlockAllocator &balloc, X509 *x);
|
H A D | shrpx_client_handler.h | 196 BlockAllocator &get_block_allocator(); 204 BlockAllocator balloc_;
|
H A D | shrpx_router.h | 102 BlockAllocator balloc_;
|
H A D | http2.cc | 144 StringRef stringify_status(BlockAllocator &balloc, unsigned int status_code) { in stringify_status() 631 StringRef rewrite_location_uri(BlockAllocator &balloc, const StringRef &uri, in rewrite_location_uri() 1380 BlockAllocator balloc(1024, 1024); 1622 int construct_push_component(BlockAllocator &balloc, StringRef &scheme, 1728 StringRef path_join(BlockAllocator &balloc, const StringRef &base_path, 1819 StringRef normalize_path(BlockAllocator &balloc, const StringRef &path, 1866 StringRef normalize_path_colon(BlockAllocator &balloc, const StringRef &path, 1914 BlockAllocator balloc(1024, 1024); 1919 StringRef rewrite_clean_path(BlockAllocator &balloc, const StringRef &src) { 1934 StringRef copy_lower(BlockAllocator [all...] |
H A D | shrpx_config_test.cc | 41 BlockAllocator balloc(4096, 4096); in test_shrpx_config_parse_header() 73 BlockAllocator balloc(4096, 4096); in test_shrpx_config_parse_log_format()
|
H A D | shrpx_downstream_test.cc | 36 BlockAllocator balloc(16, 16); in test_downstream_field_store_append_last_header() 64 BlockAllocator balloc(16, 16); in test_downstream_field_store_header()
|
H A D | shrpx_worker.h | 212 BlockAllocator balloc; 464 size_t catch_all, BlockAllocator &balloc);
|
H A D | util.cc | 193 StringRef percent_encode_token(BlockAllocator &balloc, in percent_encode_token() 234 StringRef quote_string(BlockAllocator &balloc, const StringRef &target) { in quote_string() 514 StringRef format_hex(BlockAllocator &balloc, const StringRef &s) { in format_hex() 545 StringRef to_base64(BlockAllocator &balloc, const StringRef &token68str) { in to_base64() 1340 StringRef make_http_hostport(BlockAllocator &balloc, const StringRef &host, in make_http_hostport() 1346 StringRef make_hostport(BlockAllocator &balloc, const StringRef &host, in make_hostport() 1490 StringRef percent_decode(BlockAllocator &balloc, const StringRef &src) { in percent_decode() 1598 StringRef decode_hex(BlockAllocator &balloc, const StringRef &s) { in decode_hex() 1705 StringRef rstrip(BlockAllocator &balloc, const StringRef &s) { in rstrip()
|
H A D | base64_test.cc | 62 BlockAllocator balloc(4096, 4096); in test_base64_decode()
|
H A D | shrpx_downstream.cc | 451 StringRef alloc_header_name(BlockAllocator &balloc, const StringRef &name) { in alloc_header_name() 463 void append_last_header_key(BlockAllocator &balloc, bool &key_prev, size_t &sum, in append_last_header_key() 480 void append_last_header_value(BlockAllocator &balloc, bool &key_prev, in append_last_header_value() 1130 BlockAllocator &Downstream::get_block_allocator() { return balloc_; } in get_block_allocator()
|
H A D | shrpx_config.h | 999 BlockAllocator balloc; 1122 BlockAllocator balloc; 1409 HeaderRefs::value_type parse_header(BlockAllocator &balloc, 1412 std::vector<LogFragment> parse_log_format(BlockAllocator &balloc,
|
H A D | base64.h | 207 StringRef decode(BlockAllocator &balloc, InputIt first, InputIt last) { in decode()
|
H A D | HttpServer.h | 141 BlockAllocator balloc;
|
/third_party/skia/third_party/externals/tint/src/sem/ |
H A D | type_manager.h | 32 using Iterator = BlockAllocator<sem::Type>::ConstIterator; 94 BlockAllocator<sem::Type> types_;
|