/third_party/curl/tests/data/ |
D | test1005 | 9 # Server-side 17 …-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAA… 21 # Client-side
|
D | test1006 | 9 # Server-side 18 …-AAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA… 22 # Client-side
|
D | test1062 | 10 # Server-side 18 …-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAA… 22 # Client-side
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | ThaiCharacterClasses.java | 5 * Copyright (C) 1998-2010, International Business Machines Corporation and * 42 // Indexed by unicode - '\u0E00' 43 // FIXME: MS Fonts - Should 0E2E has no ascender (it does in WT font) 44 // FIXME: MS Fonts - 0E47 (MAITAIKHU) and 0E4D (NIKHAHIT) only have vowel forms 45 // FIXME: MS Fonts - 0E4E (YAMAKKAN) only has one form 48 // ------------------------------------------------------------------------------- 81 … //------------------------------------------------------------------------------------------------ 85 … //------------------------------------------------------------------------------------------------ 86 /*NON*/ {'A', 'A', 'A', 'A', 'A', 'S', 'S', 'A', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', … 90 /*LVO*/ {'S', 'A', 'A', 'A', 'S', 'S', 'S', 'S', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', 'R', … [all …]
|
/third_party/libsnd/docs/ |
D | formats.md | 1 --- 4 --- 12 {:.formats-table} 14 …-------------------|:-------------:|:-----------------------:|:------------------------:|:--------… 15 …R/W | R/W | | R/W | … 16 …R/W | R/W | R/W | R/W | R/W … 17 …R/W | R/W | R/W | R/W | R/W … 18 …R/W | R/W | R/W | R/W | R/W … 19 …R/W | R/W | R/W | R/W | … 20 …R/W | R/W | R/W | R/W | … [all …]
|
/third_party/boost/libs/beast/test/beast/http/ |
D | basic_parser.cpp | 2 // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com) 10 // Test that header file is self-contained. 153 //-------------------------------------------------------------------------- 162 for(std::size_t i = 1; i < size - 1; ++i) in parsegrind() 191 for(std::size_t i = 1; i < size - 1; ++i) in parsegrind() 241 for(std::size_t i = 1; i < msg.size() - 1; ++i) in failgrind() 265 for(std::size_t i = 1; i < msg.size() - 1; ++i) in failgrind() 273 msg.data() + i, msg.size() - i}), ec); in failgrind() 280 //-------------------------------------------------------------------------- 286 "GET / HTTP/1.1\r\n" in testFlatten() [all …]
|
/third_party/flutter/engine/flutter/tools/licenses/lib/ |
D | patterns.dart | 2 // Use of this source code is governed by a BSD-style license that can be 7 const String kIndent = r'^((?:[-;@#<!.\\"/* ]*(?:REM[-;@#<!.\\"/* ]*)?[-;@#<!.\"/*]+)?)( *)'; 10 r'^((?:(?:[-;@#<!.\\"/* ]*(?:REM[-;@#<!.\\"/* ]*)?[-;@#<!.\"/*]+)?)(?:(?: |\t)*))(.*?)[ */]*$', 15 final RegExp newlinePattern = RegExp(r'\r\n?'); 18 r'^([#;/* ]*) (?:\*\*\*\*\* BEGIN LICENSE BLOCK \*\*\*\*\*[ */]*' 19 r'|@APPLE_LICENSE_HEADER_START@)$' 23 r'^([#;/* ]*) (?:\*\*\*\*\* END LICENSE BLOCK \*\*\*\*\*[ */]*' 24 r'|@APPLE_LICENSE_HEADER_END@)$' 28 final RegExp trailingComma = RegExp(r',[ */]*$'); 29 final RegExp trailingColon = RegExp(r':(?: |\*|/|\n|=|-)*$'); [all …]
|
/third_party/weston/libweston/backend-drm/ |
D | vaapi-recorder.c | 49 #include "vaapi-recorder.h" 143 bs->max_size_in_dword = BITSTREAM_ALLOCATE_STEPPING; in bitstream_start() 144 bs->buffer = calloc(bs->max_size_in_dword * sizeof(unsigned int), 1); in bitstream_start() 145 bs->bit_offset = 0; in bitstream_start() 151 int pos = (bs->bit_offset >> 5); in bitstream_end() 152 int bit_offset = (bs->bit_offset & 0x1f); in bitstream_end() 153 int bit_left = 32 - bit_offset; in bitstream_end() 156 bs->buffer[pos] = va_swap32((bs->buffer[pos] << bit_left)); in bitstream_end() 163 int pos = (bs->bit_offset >> 5); in bitstream_put_ui() 164 int bit_offset = (bs->bit_offset & 0x1f); in bitstream_put_ui() [all …]
|
/third_party/ffmpeg/tests/ref/fate/ |
D | parseutils | 2 '-inf' -> -1/0 ERROR 3 'inf' -> 1/0 ERROR 4 'nan' -> 0/0 ERROR 5 '123/0' -> 1/0 ERROR 6 '-123 / 0' -> -1/0 ERROR 7 '' -> 0/0 ERROR 8 '/' -> 0/0 ERROR 9 ' 123 / 321' -> 41/107 OK 10 'foo/foo' -> 0/0 ERROR 11 'foo/1' -> 0/0 ERROR [all …]
|
/third_party/openssl/crypto/rsa/ |
D | rsa_lib.c | 2 * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. 27 return rsa->meth; in RSA_get_method() 37 mtmp = rsa->meth; in RSA_set_method() 38 if (mtmp->finish) in RSA_set_method() 39 mtmp->finish(rsa); in RSA_set_method() 41 ENGINE_finish(rsa->engine); in RSA_set_method() 42 rsa->engine = NULL; in RSA_set_method() 44 rsa->meth = meth; in RSA_set_method() 45 if (meth->init) in RSA_set_method() 46 meth->init(rsa); in RSA_set_method() [all …]
|
/third_party/libpsl/fuzz/libpsl_load_fuzzer.in/ |
D | 44f8913e7f477f6907930e358ca84c27586f863b | 140 …-EVe9`[_w������������o>ehX;RM … 142 …z���������������֬��umkidb_\ZWVTSRR�Q�RS�T�U�T�SRSS�TVY\^adgkmpv|��������������֩��qjheb]YWTRP… 143 …fa]YUQNJHDB>82/+�)�*,-./258<@CFH�J�K�M�NO�P�ONONNMLIE@<74310/--,�+-2699>����sUV`elx���������… 145 14689<>ACEFFGH�IJKK�L�K�JHFECCAA>93+$!%)*+164B����ؑ^Wahu�����������������1i^ZUQLHEA>;84-)…
|
/third_party/boost/libs/math/doc/graphs/ |
D | tgamma__double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | lgamma__80_bit_long_double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | lgamma____float128.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | digamma____float128.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | i1__double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | digamma__double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | lgamma__double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | trigamma__double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | zeta__80_bit_long_double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | zeta__double.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | erfc____float128.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | exponential_integral_ei____float128.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
D | erf____float128.svg | 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 4 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 9 <!-- SVG plot written using Boost.Plot program (Creator Jacob Voytko) --> 10 <!-- Use, modification and distribution of Boost.Plot subject to the --> 11 <!-- Boost Software License, Version 1.0.--> 12 <!-- (See accompanying file LICENSE_1_0.txt --> 13 <!-- or copy at http://www.boost.org/LICENSE_1_0.txt) --> 16 <g id="imageBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x=… 17 <g id="plotBackground" stroke="rgb(211,211,211)" fill="rgb(255,255,255)" stroke-width="2"><rect x="… 18 <g id="yMinorGrid" stroke="rgb(200,220,255)" stroke-width="0.5"></g> [all …]
|
/third_party/pulseaudio/src/pulsecore/ |
D | resampler.c | 4 Copyright 2004-2006 Lennart Poettering 30 #include <pulsecore/core-util.h> 41 static int copy_init(pa_resampler *r); 43 static void setup_remap(const pa_resampler *r, pa_remap_t *m, bool *lfe_remixed); 46 static int (* const init_table[])(pa_resampler *r) = { 194 * speex-float implementation in PulseAudio relies on the in fix_method() 196 * --enable-fixed-point. Besides, speex-fixed is more efficient in fix_method() 201 pa_log_info("Speex appears to be compiled with --enable-fixed-point. " in fix_method() 202 "Switching to a fixed-point resampler because it should be faster."); in fix_method() 203 method = method - PA_RESAMPLER_SPEEX_FLOAT_BASE + PA_RESAMPLER_SPEEX_FIXED_BASE; in fix_method() [all …]
|