Home
last modified time | relevance | path

Searched +full:- +full:r (Results 1 – 25 of 1372) sorted by relevance

12345678910>>...55

/third_party/curl/tests/data/
Dtest10059 # Server-side
17-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAA…
21 # Client-side
Dtest10069 # Server-side
18-AAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA…
22 # Client-side
Dtest106210 # Server-side
18-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\r\n250-AAAAAAAAAAAAAAAAAAAA…
22 # Client-side
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
DThaiCharacterClasses.java5 * 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/
Dformats.md1 ---
4 ---
12 {:.formats-table}
14-------------------|:-------------:|:-----------------------:|:------------------------:|:--------…
15R/W | R/W | | R/W | …
16R/W | R/W | R/W | R/W | R/W …
17R/W | R/W | R/W | R/W | R/W …
18R/W | R/W | R/W | R/W | R/W …
19R/W | R/W | R/W | R/W | …
20R/W | R/W | R/W | R/W | …
[all …]
/third_party/boost/libs/beast/test/beast/http/
Dbasic_parser.cpp2 // 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/
Dpatterns.dart2 // 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/
Dvaapi-recorder.c49 #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/
Dparseutils2 '-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/
Drsa_lib.c2 * 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/
D44f8913e7f477f6907930e358ca84c27586f863b140-�E�V�e�9�`�[�_�w�������������������������o�>�e�h�X�;�R�M� ��������������������…
142 …z���������������֬��umkidb_\ZWVTSRR�Q�R�S�T�U�T�SRSS�T VY\^adgkmpv|��������������֩��qjheb]YWTRP…
143 …fa]YUQNJHDB>82/+�)�* ,-./258<@CFH�J�K�M�N�O�P�ONONNMLIE@<74310/--,�+-2699>�� ��sUV`elx�׍��������…
145 14689<>ACEFFGH�IJKK�L�K�JHFECCAA>93+$!%)*+164B����ؑ^Wahu������������������1᥃i^ZUQLHEA>;84-)…
/third_party/boost/libs/math/doc/graphs/
Dtgamma__double.svg1 <?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 …]
Dlgamma__80_bit_long_double.svg1 <?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 …]
Dlgamma____float128.svg1 <?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 …]
Ddigamma____float128.svg1 <?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 …]
Di1__double.svg1 <?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 …]
Ddigamma__double.svg1 <?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 …]
Dlgamma__double.svg1 <?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 …]
Dtrigamma__double.svg1 <?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 …]
Dzeta__80_bit_long_double.svg1 <?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 …]
Dzeta__double.svg1 <?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 …]
Derfc____float128.svg1 <?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 …]
Dexponential_integral_ei____float128.svg1 <?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 …]
Derf____float128.svg1 <?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/
Dresampler.c4 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 …]

12345678910>>...55