| /external/brotli/scripts/ |
| D | appveyor.yml | 3 - master 7 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 12 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 17 - BUILD_SYSTEM: CMake 21 - BUILD_SYSTEM: CMake 25 - BUILD_SYSTEM: Python 30 - BUILD_SYSTEM: Python 31 PYTHON: "C:\\Python36-x64" 35 - BUILD_SYSTEM: make 38 - BUILD_SYSTEM: make [all …]
|
| /external/cronet/third_party/brotli/ |
| D | BUILD.gn | 2 # Use of this source code is governed by a BSD-style license that can be 8 import("//build/config/win/visual_studio_version.gni") 12 # By default, brotli depends on undefined behavior, but setting 25 "include/brotli/decode.h", 26 "include/brotli/encode.h", 27 "include/brotli/port.h", 28 "include/brotli/types.h", 148 configs -= [ "//build/config/compiler:chromium_code" ] 151 # Since we never debug brotli, freeze the optimizations to -O2. 152 configs -= [ "//build/config/compiler:default_optimization" ] [all …]
|
| /external/cronet/components/cronet/android/ |
| D | dependencies.txt | 23 //build/win 45 //third_party/abseil-cpp 53 //third_party/brotli
|
| /external/cronet/net/ |
| D | BUILD.gn | 2 # Use of this source code is governed by a BSD-style license that can be 33 # pretty confident that mmap-ing the index would not hurt any existing x86 45 # platform-specific code deep in //net. Nowadays, this is abstracted away and 46 # we could enable the interfaces on iOS for platform-independence. However, 52 # If fixing this, re-enable the tests in ssl_client_socket_unittest.cc and 83 …s://www.chromium.org/developers/design-documents/http-authentication/writing-a-spnego-authenticato… 453 "disk_cache/blockfile/storage_block-inl.h", 1243 "proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win.cc", 1244 "proxy_resolution/win/dhcp_pac_file_adapter_fetcher_win.h", 1245 "proxy_resolution/win/dhcp_pac_file_fetcher_win.cc", [all …]
|
| /external/cronet/components/cronet/ |
| D | stale_host_resolver_unittest.cc | 2 // Use of this source code is governed by a BSD-style license that can be 50 #include "third_party/abseil-cpp/absl/types/optional.h" 70 // correctly, we won't end up waiting this long -- it's just a backup. 186 inner_resolver->SetRequestContext(context); in CreateMockInnerResolverWithDnsClient() 189 inner_resolver->SetHostResolverSystemParamsForTest(system_params); in CreateMockInnerResolverWithDnsClient() 191 inner_resolver->GetManagerForTesting()->SetDnsClientForTesting( in CreateMockInnerResolverWithDnsClient() 193 inner_resolver->GetManagerForTesting()->SetInsecureDnsClientEnabled( in CreateMockInnerResolverWithDnsClient() 197 inner_resolver->GetManagerForTesting()->SetInsecureDnsClientEnabled( in CreateMockInnerResolverWithDnsClient() 209 stale_resolver_->SetTickClockForTesting(&tick_clock_); in CreateResolverWithDnsClient() 225 stale_resolver->inner_resolver_ = in SetResolver() [all …]
|
| /external/curl/ |
| D | RELEASE-NOTES | 22 o appveyor: drop unnecessary `--clean-first` cmake option [197] 23 o appveyor: guard against crash-build with VS2008 [193] 24 o appveyor: make gcc 6 mingw64 job build-only [152] 25 o asyn-thread: fix curl_global_cleanup crash in Windows [161] 26 o asyn-thread: fix Curl_thread_create result check [162] 33 o BUG-BOUNTY.md: clarify the third party situation [210] 35 o build: remove MacOSX-Framework script [60] 37 o cf-https-connect: use timeouts as unsigned ints [143] 38 o cf-socket: don't try getting local IP without socket [188] 39 o cf-socket: remove references to l_ip, l_port [9] [all …]
|
| /external/brotli/c/enc/ |
| D | compress_fragment_two_pass.c | 8 history. This function uses two-pass processing: in the first pass we save 19 #include <brotli/types.h> 45 (BROTLI_UNALIGNED_LOAD64LE(p) << ((8 - length) * 8)) * kHashMul32; in Hash() 51 BROTLI_DCHECK(offset <= 8 - length); in HashBytesAtOffset() 53 const uint64_t h = ((v >> (8 * offset)) << ((8 - length) * 8)) * kHashMul32; in HashBytesAtOffset() 123 const uint32_t tail = insertlen - 2; in EmitInsertLen() 124 const uint32_t nbits = Log2FloorNonZero(tail) - 1u; in EmitInsertLen() 127 const uint32_t extra = tail - (prefix << nbits); in EmitInsertLen() 130 const uint32_t tail = insertlen - 66; in EmitInsertLen() 133 const uint32_t extra = tail - (1u << nbits); in EmitInsertLen() [all …]
|
| D | compress_fragment.c | 8 history. This function uses one-pass processing: when we find a backward 21 #include <brotli/types.h> 66 Note that the prefix code here is built from the pre-LZ77 input, therefore 69 and thus have to assign a non-zero depth for each literal. 99 histogram_total = (input_size + kSampleRate - 1) / kSampleRate; in BuildAndStoreLiteralPrefixCode() 188 const size_t tail = insertlen - 2; in EmitInsertLen() 189 const uint32_t nbits = Log2FloorNonZero(tail) - 1u; in EmitInsertLen() 193 BrotliWriteBits(nbits, tail - (prefix << nbits), storage_ix, storage); in EmitInsertLen() 196 const size_t tail = insertlen - 66; in EmitInsertLen() 200 BrotliWriteBits(nbits, tail - ((size_t)1 << nbits), storage_ix, storage); in EmitInsertLen() [all …]
|
| /external/cronet/third_party/brotli/enc/ |
| D | compress_fragment_two_pass.c | 8 history. This function uses two-pass processing: in the first pass we save 19 #include <brotli/types.h> 44 (BROTLI_UNALIGNED_LOAD64LE(p) << ((8 - length) * 8)) * kHashMul32; in Hash() 50 BROTLI_DCHECK(offset <= 8 - length); in HashBytesAtOffset() 52 const uint64_t h = ((v >> (8 * offset)) << ((8 - length) * 8)) * kHashMul32; in HashBytesAtOffset() 73 memset(s->tmp_depth, 0, sizeof(s->tmp_depth)); in BuildAndStoreCommandPrefixCode() 74 BrotliCreateHuffmanTree(s->cmd_histo, 64, 15, s->tmp_tree, s->cmd_depth); in BuildAndStoreCommandPrefixCode() 75 BrotliCreateHuffmanTree(&s->cmd_histo[64], 64, 14, s->tmp_tree, in BuildAndStoreCommandPrefixCode() 76 &s->cmd_depth[64]); in BuildAndStoreCommandPrefixCode() 82 memcpy(s->tmp_depth, s->cmd_depth + 24, 24); in BuildAndStoreCommandPrefixCode() [all …]
|
| D | compress_fragment.c | 8 history. This function uses one-pass processing: when we find a backward 20 #include <brotli/types.h> 64 Note that the prefix code here is built from the pre-LZ77 input, therefore 67 and thus have to assign a non-zero depth for each literal. 77 uint32_t* BROTLI_RESTRICT const histogram = s->histogram; in BuildAndStoreLiteralPrefixCode() 80 memset(histogram, 0, sizeof(s->histogram)); in BuildAndStoreLiteralPrefixCode() 99 histogram_total = (input_size + kSampleRate - 1) / kSampleRate; in BuildAndStoreLiteralPrefixCode() 111 BrotliBuildAndStoreHuffmanTreeFast(s->tree, histogram, histogram_total, in BuildAndStoreLiteralPrefixCode() 128 const uint32_t* const histogram = s->cmd_histo; in BuildAndStoreCommandPrefixCode() 129 uint8_t* const depth = s->cmd_depth; in BuildAndStoreCommandPrefixCode() [all …]
|
| /external/freetype/docs/oldlogs/ |
| D | ChangeLog.210 | 1 2021-07-18 Werner Lemberg <wl@gnu.org> 7 Tag sources with `VER-2-11-0'. 15 builds/wince/vc2005-ce/index.html, 16 builds/wince/vc2008-ce/index.html, docs/freetype-config.1: 26 * builds/toplevel.mk (dist): Ignore more git-related files. 28 2021-07-17 David Turner <david@freetype.org> 32 The code assumed that if `__SSE2__` is defined, then 64-bit integer 37 64-bit integer types are not available. 41 2021-07-16 Alex Richardson <Alexander.Richardson@cl.cam.ac.uk> 45 * tests/issue-1063/main.c (main): I am building with a build [all …]
|
| /external/cronet/ |
| D | Android.bp | 7 // http://www.apache.org/licenses/LICENSE-2.0 32 …cmd: "mkdir -p $(genDir)/base/allocator && echo '--flags USE_PARTITION_ALLOC_AS_GWP_ASAN_STORE=\"f… 33 "$(location build/write_buildflag_header.py) --output " + 35 "--rulename " + 37 "--gen-dir " + 39 "--definitions " + 55 …cmd: "mkdir -p $(genDir)/base/allocator && echo '--flags USE_PARTITION_ALLOC_AS_GWP_ASAN_STORE=\"f… 56 "$(location build/write_buildflag_header.py) --output " + 58 "--rulename " + 60 "--gen-dir " + [all …]
|
| /external/cronet/android/tools/gn2bp/ |
| D | Android.bp.swp | 7 // http://www.apache.org/licenses/LICENSE-2.0 32 …cmd: "mkdir -p $(genDir)/base/allocator && echo '--flags USE_PARTITION_ALLOC_AS_GWP_ASAN_STORE=\"f… 33 "$(location build/write_buildflag_header.py) --output " + 35 "--rulename " + 37 "--gen-dir " + 39 "--definitions " + 55 …cmd: "mkdir -p $(genDir)/base/allocator && echo '--flags USE_PARTITION_ALLOC_AS_GWP_ASAN_STORE=\"f… 56 "$(location build/write_buildflag_header.py) --output " + 58 "--rulename " + 60 "--gen-dir " + [all …]
|
| /external/python/cpython3/Tools/peg_generator/data/ |
| D | top-pypi-packages-365-days.json | 2 "last_update": "2020-01-17 15:34:44", 24 "project": "python-dateutil" 124 "project": "pyasn1-modules" 140 "project": "google-api-core" 156 "project": "google-auth" 168 "project": "google-cloud-core" 176 "project": "googleapis-common-protos" 200 "project": "more-itertools" 204 "project": "awscli-cwlogs" 240 "project": "requests-oauthlib" [all …]
|
| /external/cronet/testing/ |
| D | location_tags.json | 1 …-webview-dev@chromium.org"}]}, "android_webview/test/components":{"tags":[{"key":"monorail_compone…
|
| /external/curl/src/ |
| D | tool_hugehelp.c | 18 " curl - transfer a URL\n" in hugehelp() 32 " curl offers a busload of useful tricks like proxy support, user authen-\n" in hugehelp() 33 " tication, FTP upload, HTTP post, SSL connections, cookies, file trans-\n" in hugehelp() 39 " curl is powered by libcurl for all transfer-related features. See\n" in hugehelp() 43 " The URL syntax is protocol-dependent. You find a detailed description\n" in hugehelp() 55 " \"ftp://ftp.example.com/file[1-100].txt\"\n" in hugehelp() 57 " \"ftp://ftp.example.com/file[001-100].txt\" (with leading zeros)\n" in hugehelp() 59 " \"ftp://ftp.example.com/file[a-z].txt\"\n" in hugehelp() 64 " \"http://example.com/archive[1996-1999]/vol[1-4]/part{a,b,c}.html\"\n" in hugehelp() 76 " \"http://example.com/file[1-100:10].txt\"\n" in hugehelp() [all …]
|
| /external/google-cloud-java/java-compute/proto-google-cloud-compute-v1/src/main/proto/google/cloud/compute/v1/ |
| D | compute.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 // Generated by the disco-to-proto3-converter. DO NOT EDIT! 58 …id UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). 89 …id UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). 99 …tach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidi… 127 // [Output Only] Server-defined, fully qualified URL for this resource. 130 …// [Output Only] The name of the zone where the accelerator type resides, such as us-central1-a. Y… 149 // [Output Only] Server-defined URL for this resource. 174 // [Output Only] Server-defined URL for this resource. 197 // The accelerator type resource name, not a full URL, e.g. 'nvidia-tesla-k80'. [all …]
|
| /external/googleapis/google/cloud/compute/v1/ |
| D | compute.proto | 7 // http://www.apache.org/licenses/LICENSE-2.0 15 // Generated by the disco-to-proto3-converter. DO NOT EDIT! 56 …This is a free-form field with the name of the region your cloud uses to host your origin. For exa… 75 …id UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). 106 …id UUID with the exception that zero UUID is not supported ( 00000000-0000-0000-0000-000000000000). 116 …tach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidi… 144 // [Output Only] Server-defined, fully qualified URL for this resource. 147 …// [Output Only] The name of the zone where the accelerator type resides, such as us-central1-a. Y… 166 // [Output Only] Server-defined URL for this resource. 191 // [Output Only] Server-defined URL for this resource. [all …]
|
| D | compute.v1.json | 29 "description": "[Output Only] Server-defined URL for this resource.", 50 …ead quota exceed which captures the amount of resources filtered out by user-defined list filter.", 63 … "One or more of the resources set to auto-delete could not be deleted because they were in use.", 131 "description": "[Output Only] A human-readable description of the warning code.", 135 …: value format. For example: \"data\": [ { \"key\": \"scope\", \"value\": \"zones/us-east1-d\" } ", 176 "pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?", 188 …ly] The name of the zone where the accelerator type resides, such as us-central1-a. You must speci… 192 "description": "[Output Only] Server-defined, fully qualified URL for this resource.", 267 "description": "[Output Only] Server-defined URL for this resource.", 288 …ead quota exceed which captures the amount of resources filtered out by user-defined list filter.", [all …]
|
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
| D | compute.beta.json | 5 "https://www.googleapis.com/auth/cloud-platform": { 33 "x16": "https://www.google.com/images/icons/product/compute_engine-16.png", 34 "x32": "https://www.google.com/images/icons/product/compute_engine-32.png" 70 "Responses with Content-Type of application/json", 71 "Media download with context-dependent Content-Type", 72 "Responses with Content-Type of application/x-protobuf" 104 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 138 …ed `example-instance` by specifying `name != example-instance`. The `:` operator can be used with … 168 …"pattern": "(?:(?:[-a-z0-9]{1,63}\\.)*(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?):)?(?:[0-9]{1,19}|(?:[a… 173 …"description": "Opt-in for partial success behavior which provides partial results in case of fail… [all …]
|
| D | compute.alpha.json | 5 "https://www.googleapis.com/auth/cloud-platform": { 33 "x16": "https://www.google.com/images/icons/product/compute_engine-16.png", 34 "x32": "https://www.google.com/images/icons/product/compute_engine-32.png" 70 "Responses with Content-Type of application/json", 71 "Media download with context-dependent Content-Type", 72 "Responses with Content-Type of application/x-protobuf" 104 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 138 …ed `example-instance` by specifying `name != example-instance`. The `:` operator can be used with … 168 …"pattern": "(?:(?:[-a-z0-9]{1,63}\\.)*(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?):)?(?:[0-9]{1,19}|(?:[a… 173 …"description": "Opt-in for partial success behavior which provides partial results in case of fail… [all …]
|