Home
last modified time | relevance | path

Searched +full:- +full:x (Results 1 – 25 of 1710) sorted by relevance

12345678910>>...69

/third_party/pcre2/pcre2/testdata/
Dtestinput121 # This set of tests is for UTF-16 and UTF-32 support, including Unicode
2 # properties. It is relevant only to the 16-bit and 32-bit libraries. The
12 /\x{ffff}/IB,utf
14 /\x{10000}/IB,utf
16 /\x{100}/IB,utf
18 /\x{1000}/IB,utf
20 /\x{10000}/IB,utf
22 /\x{100000}/IB,utf
24 /\x{10ffff}/IB,utf
26 /[\x{ff}]/IB,utf
[all …]
Dtestoutput22-82 # for DFA matching in UTF mode, so this test is not run with -dfa. The output
3 # of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
16 # This should produce an error diagnostic (\C in UTF lookbehind) in 8-bit and
17 # 16-bit modes, but not in 32-bit mode.
19 /(?<=ab\Cde)X/utf
20 Failed: error 136 at offset 0: \C is not allowed in a lookbehind assertion in UTF-8 mode
25 /\C+\X \X+\C/Bx
26 ------------------------------------------------------------------
34 ------------------------------------------------------------------
36 /\C+\X \X+\C/Bx,utf
[all …]
Dtestoutput51 # This set of tests checks the API, internals, and non-Perl stuff for UTF
3 # results in 8-bit, 16-bit, and 32-bit modes are excluded (see tests 10 and
11 # However, it *is* in that file for Unicode 10, but when I came to re-check,
14 # 2066-2069 are graphic and printable according to Perl, though they are
19 \x{061c}
20 0: \x{61c}
24 \x{61c}
26 \x{2066}
28 \x{2067}
30 \x{2068}
[all …]
Dtestoutput22-162 # for DFA matching in UTF mode, so this test is not run with -dfa. The output
3 # of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
16 # This should produce an error diagnostic (\C in UTF lookbehind) in 8-bit and
17 # 16-bit modes, but not in 32-bit mode.
19 /(?<=ab\Cde)X/utf
20 Failed: error 136 at offset 0: \C is not allowed in a lookbehind assertion in UTF-16 mode
25 /\C+\X \X+\C/Bx
26 ------------------------------------------------------------------
34 ------------------------------------------------------------------
36 /\C+\X \X+\C/Bx,utf
[all …]
Dtestoutput22-322 # for DFA matching in UTF mode, so this test is not run with -dfa. The output
3 # of this test is different in 8-, 16-, and 32-bit modes. Some tests may match
16 # This should produce an error diagnostic (\C in UTF lookbehind) in 8-bit and
17 # 16-bit modes, but not in 32-bit mode.
19 /(?<=ab\Cde)X/utf
21 0: X
25 /\C+\X \X+\C/Bx
26 ------------------------------------------------------------------
34 ------------------------------------------------------------------
36 /\C+\X \X+\C/Bx,utf
[all …]
Dtestinput51 # This set of tests checks the API, internals, and non-Perl stuff for UTF
3 # results in 8-bit, 16-bit, and 32-bit modes are excluded (see tests 10 and
11 # However, it *is* in that file for Unicode 10, but when I came to re-check,
14 # 2066-2069 are graphic and printable according to Perl, though they are
19 \x{061c}
23 \x{61c}
24 \x{2066}
25 \x{2067}
26 \x{2068}
27 \x{2069}
[all …]
/third_party/skia/third_party/externals/opengl-registry/ABI/ext/
Dsgi.txt6 --- ------- ------ ---- --
7 GL_EXT_abgr X X X X X
8 GL_EXT_blend_color X X X X X
9 GL_EXT_blend_logic_op X X X X X
10 GL_EXT_blend_minmax X X X X X
11 GL_EXT_blend_subtract X X X X X
12 GL_EXT_convolution X X X X X
13 GL_EXT_copy_texture X X X X X
14 GL_EXT_histogram X X X X X
15 GL_EXT_packed_pixels X X X X X
[all …]
/third_party/openGLES/ABI/ext/
Dsgi.txt6 --- ------- ------ ---- --
7 GL_EXT_abgr X X X X X
8 GL_EXT_blend_color X X X X X
9 GL_EXT_blend_logic_op X X X X X
10 GL_EXT_blend_minmax X X X X X
11 GL_EXT_blend_subtract X X X X X
12 GL_EXT_convolution X X X X X
13 GL_EXT_copy_texture X X X X X
14 GL_EXT_histogram X X X X X
15 GL_EXT_packed_pixels X X X X X
[all …]
/third_party/skia/resources/sksl/inliner/
DInlineWithNestedBigCalls.sksl1 inline half BigX(half x) {
2 ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
3 --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x;
4 x = 1;
5 return x;
8 inline half BigY(half x) {
9 ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x; ++x;
10 --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x; --x;
11 x = 0;
12 return x;
/third_party/typescript/tests/baselines/reference/
DcontrolFlowArrays.symbols8 let x = [];
9 >x : Symbol(x, Decl(controlFlowArrays.ts, 3, 7))
11 x[0] = 5;
12 >x : Symbol(x, Decl(controlFlowArrays.ts, 3, 7))
14 x[1] = "hello";
15 >x : Symbol(x, Decl(controlFlowArrays.ts, 3, 7))
17 x[2] = true;
18 >x : Symbol(x, Decl(controlFlowArrays.ts, 3, 7))
20 return x; // (string | number | boolean)[]
21 >x : Symbol(x, Decl(controlFlowArrays.ts, 3, 7))
[all …]
/third_party/ffmpeg/doc/
Dgeneral_contents.texi13 installing the library. Then pass @code{--enable-libaom} to configure to
22 @url{https://github.com/GPUOpen-LibrariesAndSDKs/AMF.git}.
26 Then configure FFmpeg with @code{--enable-amf}.
33 To use h.264(AMD VCE) encoder on linux amdgru-pro version 19.20+ and amf-amdgpu-pro
34 package(amdgru-pro contains, but does not install automatically) are required.
36 This driver can be installed using amdgpu-pro-install script in official amd driver archive.
41 @code{--enable-avisynth} to configure after installing the headers
44 passing @code{-DHEADERS_ONLY:bool=on} to the normal CMake-based build
48 @url{http://avisynth.nl, AviSynth 2.6 RC1 or higher} for 32-bit builds and
49 @url{http://avisynth.nl/index.php/AviSynth+, AviSynth+ r1718 or higher} for 32-bit and 64-bit build…
[all …]
/third_party/boost/libs/container/test/
Dinsert_vs_emplace_test.cpp4 // (C) Copyright Ion Gaztanaga 2014-2014. Distributed under the Boost
21 class X class
26 BOOST_COPYABLE_AND_MOVABLE(X)
43 X(int i, int* p) in X() function in X
47 // std::cout << "X(int i, int* p)\n"; in X()
51 ~X() in ~X()
53 // std::cout << "~X()\n"; in ~X()
57 X(const X& x) in X() function in X
58 : i_(x.i_) in X()
59 , p_(x.p_) in X()
[all …]
/third_party/mesa3d/src/intel/isl/
Disl_format.c35 /* Header-only format conversion include */
61 #define x 255 macro
77 * smpl - Sampling Engine
78 * filt - Sampling Engine Filtering
79 * shad - Sampling Engine Shadow Map
80 * CK - Sampling Engine Chroma Key
81 * RT - Render Target
82 * AB - Alpha Blend Render Target
83 * VB - Input Vertex Buffer
84 * SO - Steamed Output Vertex Buffers (transform feedback)
[all …]
/third_party/glib/gio/tests/desktop-files/usr/applications/
Dmimeinfo.cache4 application/oxps=evince.desktop;evince-previewer.desktop;
5 application/pdf=evince.desktop;evince-previewer.desktop;
6 application/pkcs10=gcr-viewer.desktop;
7 application/pkcs10+pem=gcr-viewer.desktop;
8 application/pkcs12=gcr-viewer.desktop;
9 application/pkcs12+pem=gcr-viewer.desktop;
10 application/pkcs7-mime=gcr-viewer.desktop;
11 application/pkcs7-mime+pem=gcr-viewer.desktop;
12 application/pkcs8=gcr-viewer.desktop;
13 application/pkcs8+pem=gcr-viewer.desktop;
[all …]
Dtotem.desktop28 X-GNOME-DocPath=totem/totem.xml
29 X-GNOME-Bugzilla-Bugzilla=GNOME
30 X-GNOME-Bugzilla-Product=totem
31 X-GNOME-Bugzilla-Component=general
32 X-GNOME-Bugzilla-Version=3.10.1
33 X-GNOME-Bugzilla-OtherBinaries=totem-video-thumbnailer;totem-audio-preview;
34 X-GNOME-Bugzilla-ExtraInfoScript=true
36-wpl;application/vnd.rn-realmedia;application/x-extension-m4a;application/x-extension-mp4;applicat…
/third_party/icu/icu4c/source/test/testdata/cldr/units/
DunitsTest.txt2 # Copyright © 1991-2021 Unicode, Inc.
8 # Quantity ; x ; y ; conversion to y (rational) ; test: 1000 x ⟹ y
10 # Use: convert 1000 x units to the y unit; the result should match the final column,
17 acceleration ; meter-per-square-second ; meter-per-square-second ; 1 * x ; 1,000.00
18 acceleration ; g-force ; meter-per-square-second ; 9.80665 * x ; 9806.65
19 angle ; arc-second ; revolution ; 0.0000625/81 * x ; 7.716049E-4
20 angle ; arc-minute ; revolution ; 0.00125/27 * x ; 0.0462963
21 angle ; degree ; revolution ; 0.025/9 * x ; 2.777778
22 angle ; radian ; revolution ; 65,501,488/411,557,987 * x ; 159.1549
23 angle ; revolution ; revolution ; 1 * x ; 1,000.00
[all …]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/cldr/units/
DunitsTest.txt2 # Copyright © 1991-2021 Unicode, Inc.
8 # Quantity ; x ; y ; conversion to y (rational) ; test: 1000 x ⟹ y
10 # Use: convert 1000 x units to the y unit; the result should match the final column,
17 acceleration ; meter-per-square-second ; meter-per-square-second ; 1 * x ; 1,000.00
18 acceleration ; g-force ; meter-per-square-second ; 9.80665 * x ; 9806.65
19 angle ; arc-second ; revolution ; 0.0000625/81 * x ; 7.716049E-4
20 angle ; arc-minute ; revolution ; 0.00125/27 * x ; 0.0462963
21 angle ; degree ; revolution ; 0.025/9 * x ; 2.777778
22 angle ; radian ; revolution ; 65,501,488/411,557,987 * x ; 159.1549
23 angle ; revolution ; revolution ; 1 * x ; 1,000.00
[all …]
/third_party/boost/libs/sort/doc/graph/windows_float_sort_files/
Dchart002.htm1 <html xmlns:v="urn:schemas-microsoft-com:vml"
2 xmlns:o="urn:schemas-microsoft-com:office:office"
3 xmlns:x="urn:schemas-microsoft-com:office:excel"
4 xmlns="http://www.w3.org/TR/REC-html40">
7 <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
10 <link id=Main-File rel=Main-File href="../windows_float_sort.htm">
11 <link rel=File-List href=filelist.xml>
12 <link rel=Edit-Time-Data href=editdata.mso>
13 <!--[if !mso]>
17 x\:* {behavior:url(#default#VML);}
[all …]
Dchart001.htm1 <html xmlns:v="urn:schemas-microsoft-com:vml"
2 xmlns:o="urn:schemas-microsoft-com:office:office"
3 xmlns:x="urn:schemas-microsoft-com:office:excel"
4 xmlns="http://www.w3.org/TR/REC-html40">
7 <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
10 <link id=Main-File rel=Main-File href="../windows_float_sort.htm">
11 <link rel=File-List href=filelist.xml>
12 <link rel=Edit-Time-Data href=editdata.mso>
13 <!--[if !mso]>
17 x\:* {behavior:url(#default#VML);}
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceTimerTree.def1 //===- subzero/src/IceTimerTree.def - X-macros for timing -------*- C++ -*-===//
8 //===----------------------------------------------------------------------===//
13 //===----------------------------------------------------------------------===//
20 X(O2) \
21 X(Om1) \
22 X(advancedPhiLowering) \
23 X(alloca) \
24 X(computeLoopNestDepth) \
25 X(convertToIce) \
26 X(deletePhis) \
[all …]
/third_party/boost/libs/sort/doc/graph/osx_string_sort_files/
Dchart001.htm1 <html xmlns:v="urn:schemas-microsoft-com:vml"
2 xmlns:o="urn:schemas-microsoft-com:office:office"
3 xmlns:x="urn:schemas-microsoft-com:office:excel"
4 xmlns="http://www.w3.org/TR/REC-html40">
7 <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
10 <link id=Main-File rel=Main-File href="../OSXstring_sort.htm">
11 <link rel=File-List href=filelist.xml>
12 <link rel=Edit-Time-Data href=editdata.mso>
13 <!--[if !mso]>
17 x\:* {behavior:url(#default#VML);}
[all …]
/third_party/boost/libs/sort/doc/graph/osx_float_sort_files/
Dchart001.htm1 <html xmlns:v="urn:schemas-microsoft-com:vml"
2 xmlns:o="urn:schemas-microsoft-com:office:office"
3 xmlns:x="urn:schemas-microsoft-com:office:excel"
4 xmlns="http://www.w3.org/TR/REC-html40">
7 <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
10 <link id=Main-File rel=Main-File href="../osx_float_sort.htm">
11 <link rel=File-List href=filelist.xml>
12 <link rel=Edit-Time-Data href=editdata.mso>
13 <!--[if !mso]>
17 x\:* {behavior:url(#default#VML);}
[all …]
/third_party/boost/libs/sort/doc/graph/osx_integer_sort_files/
Dchart001.htm1 <html xmlns:v="urn:schemas-microsoft-com:vml"
2 xmlns:o="urn:schemas-microsoft-com:office:office"
3 xmlns:x="urn:schemas-microsoft-com:office:excel"
4 xmlns="http://www.w3.org/TR/REC-html40">
7 <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
10 <link id=Main-File rel=Main-File href="../osx_integer_sort.htm">
11 <link rel=File-List href=filelist.xml>
12 <link rel=Edit-Time-Data href=editdata.mso>
13 <!--[if !mso]>
17 x\:* {behavior:url(#default#VML);}
[all …]
/third_party/boost/libs/sort/doc/graph/windows_integer_sort_files/
Dchart001.htm1 <html xmlns:v="urn:schemas-microsoft-com:vml"
2 xmlns:o="urn:schemas-microsoft-com:office:office"
3 xmlns:x="urn:schemas-microsoft-com:office:excel"
4 xmlns="http://www.w3.org/TR/REC-html40">
7 <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
10 <link id=Main-File rel=Main-File href="../windows_integer_sort.htm">
11 <link rel=File-List href=filelist.xml>
12 <link rel=Edit-Time-Data href=editdata.mso>
13 <!--[if !mso]>
17 x\:* {behavior:url(#default#VML);}
[all …]
/third_party/python/Modules/
D_math.c23 static const double ln2 = 6.93147180559945286227E-01;
27 static const double two_pow_m28 = 3.7252902984619141E-09; /* 2**-28 */
35 /* acosh(x)
38 * acosh(x) = log [ x + sqrt(x*x-1) ]
40 * acosh(x) := log(x)+ln2, if x is large; else
41 * acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
42 * acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
45 * acosh(x) is NaN with signal if x<1.
50 _Py_acosh(double x) in _Py_acosh() argument
52 if (Py_IS_NAN(x)) { in _Py_acosh()
[all …]

12345678910>>...69