| /third_party/pcre2/pcre2/testdata/ |
| D | testoutput24 | 2 # library, in non-UTF mode. 7 # -------- Tests of glob conversion -------- 9 # Set the glob separator explicitly so that different OS defaults are not a 19 /a*b/convert_glob_separator=% 22 # Can't have separator in a class 25 (?s)\A[ab/cd](?<!/)\z 27 "[,-/]" 28 (?s)\A[,-/](?<!/)\z 39 (?s)\Aabc\z 43 /a?b[]xy]*c/ [all …]
|
| /third_party/openssl/test/recipes/04-test_pem_reading_data/ |
| D | cert-onecolumn.pem | 1 -----BEGIN CERTIFICATE----- 6 z 10 A 28 A 42 A 46 A 50 A 55 z 63 A 70 Z [all …]
|
| D | dsa-onecolumn.pem | 1 -----BEGIN DSA PRIVATE KEY----- 2 Proc-Type: 4,ENCRYPTED 3 DEK-Info: AES-256-CBC,A2A7FA3E5E454B59C8777564E7AF3CD6 13 a 34 z 36 a 70 z 101 a 108 A 187 Z [all …]
|
| /third_party/vk-gl-cts/data/gles31/shaders/es32/ |
| D | arrays_of_arrays.test | 1 # ------------------------------------------------- 3 # ------------------------------------------------- 9 # You may obtain a copy of the License at 11 # http://www.apache.org/licenses/LICENSE-2.0 36 input vec3 in0 = [ vec3(0.5, 1.0, 2.0) | vec3(7.4, -1.0, 2.0) | vec3(3.0, 1.6, -2.0) ]; 37 output vec3 out0 = [ vec3(2.0, 0.5, 1.0) | vec3(2.0, 7.4, -1.0) | vec3(-2.0, 3.0, 1.6) ]; 49 x = float[3][3] ( float[3] (in0.z, in0.x, in0.y), 50 float[3] (in0.z, in0.x, in0.y), 51 float[3] (in0.z, in0.x, in0.y) ); 63 …input vec4 in0 = [ vec4(0.5, 1.0, 2.0, 0.2) | vec4(7.4, -1.0, 2.0, -1.3) | vec4(3.0, 1.6, -2.0, 0.… [all …]
|
| /third_party/vk-gl-cts/data/gles31/shaders/gl45/ |
| D | arrays_of_arrays.test | 17 input vec3 in0 = [ vec3(0.5, 1.0, 2.0) | vec3(7.4, -1.0, 2.0) | vec3(3.0, 1.6, -2.0) ]; 18 output vec3 out0 = [ vec3(2.0, 0.5, 1.0) | vec3(2.0, 7.4, -1.0) | vec3(-2.0, 3.0, 1.6) ]; 30 x = float[3][3] ( float[3] (in0.z, in0.x, in0.y), 31 float[3] (in0.z, in0.x, in0.y), 32 float[3] (in0.z, in0.x, in0.y) ); 44 …input vec4 in0 = [ vec4(0.5, 1.0, 2.0, 0.2) | vec4(7.4, -1.0, 2.0, -1.3) | vec4(3.0, 1.6, -2.0, 0.… 45 …output vec4 out0 = [ vec4(2.0, 0.5, 0.2, 1.0) | vec4(2.0, 7.4, -1.3, -1.0) | vec4(-2.0, 3.0, 0.5, … 57 x = float[3][4] ( float[4] (in0.z, in0.x, in0.w, in0.y), 58 float[4] (in0.z, in0.x, in0.w, in0.y), 59 float[4] (in0.z, in0.x, in0.w, in0.y) ); [all …]
|
| /third_party/vk-gl-cts/data/gles31/shaders/es31/ |
| D | arrays_of_arrays.test | 17 input vec3 in0 = [ vec3(0.5, 1.0, 2.0) | vec3(7.4, -1.0, 2.0) | vec3(3.0, 1.6, -2.0) ]; 18 output vec3 out0 = [ vec3(2.0, 0.5, 1.0) | vec3(2.0, 7.4, -1.0) | vec3(-2.0, 3.0, 1.6) ]; 30 x = float[3][3] ( float[3] (in0.z, in0.x, in0.y), 31 float[3] (in0.z, in0.x, in0.y), 32 float[3] (in0.z, in0.x, in0.y) ); 44 …input vec4 in0 = [ vec4(0.5, 1.0, 2.0, 0.2) | vec4(7.4, -1.0, 2.0, -1.3) | vec4(3.0, 1.6, -2.0, 0.… 45 …output vec4 out0 = [ vec4(2.0, 0.5, 0.2, 1.0) | vec4(2.0, 7.4, -1.3, -1.0) | vec4(-2.0, 3.0, 0.5, … 57 x = float[3][4] ( float[4] (in0.z, in0.x, in0.w, in0.y), 58 float[4] (in0.z, in0.x, in0.w, in0.y), 59 float[4] (in0.z, in0.x, in0.w, in0.y) ); [all …]
|
| /third_party/vk-gl-cts/external/vulkancts/data/vulkan/glsl/es310/ |
| D | arrays.test | 2 #X2. Return value: float[5] func() { ... } // Function with a 5-element array return value 3 #X3. Array constructor: float[3] (1.0, 2.0, 5.5) // 3-element array with given elements 6 #X5. Variable declaration: float[5] a; // Equivalent to float a[5]; (?) 9 # float z[] = y; // Size of z is 3 10 #X7. Testing that 2-dimensional arrays don't work: float a[5][3]; // Illegal 11 # float[5] a[3]; // Illegal 13 #X9. Testing length() operator: z.length(); // Returns 3 for z defined before 14 #X10. Test C/C++ style {}-constructor 24 input vec3 in0 = [ vec3(0.5, 1.0, 2.0) | vec3(7.4, -1.0, 2.0) | vec3(3.0, 1.6, -2.0) ]; 25 output vec3 out0 = [ vec3(2.0, 0.5, 1.0) | vec3(2.0, 7.4, -1.0) | vec3(-2.0, 3.0, 1.6) ]; [all …]
|
| /third_party/vk-gl-cts/external/openglcts/data/gl33/ |
| D | arrays.test | 2 #X2. Return value: float[5] func() { ... } // Function with a 5-element array return value 3 #X3. Array constructor: float[3] (1.0, 2.0, 5.5) // 3-element array with given elements 6 #X5. Variable declaration: float[5] a; // Equivalent to float a[5]; (?) 9 # float z[] = y; // Size of z is 3 10 #X7. Testing that 2-dimensional arrays don't work: float a[5][3]; // Illegal 11 # float[5] a[3]; // Illegal 13 #X9. Testing length() operator: z.length(); // Returns 3 for z defined before 14 #X10. Test C/C++ style {}-constructor 24 input vec3 in0 = [ vec3(0.5, 1.0, 2.0) | vec3(7.4, -1.0, 2.0) | vec3(3.0, 1.6, -2.0) ]; 25 output vec3 out0 = [ vec3(2.0, 0.5, 1.0) | vec3(2.0, 7.4, -1.0) | vec3(-2.0, 3.0, 1.6) ]; [all …]
|
| /third_party/skia/third_party/externals/angle2/src/tests/preprocessor_tests/ |
| D | identifier_test.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 34 // This test covers identifier names of form [_a-zA-Z]. 44 // Test string: [a-z] 45 INSTANTIATE_TEST_SUITE_P(a_z, SingleLetterIdentifierTest, CLOSED_RANGE('a', 'z')); 47 // Test string: [A-Z] 48 INSTANTIATE_TEST_SUITE_P(A_Z, SingleLetterIdentifierTest, CLOSED_RANGE('A', 'Z')); 55 // This test covers identifier names of form [_a-zA-Z][_a-zA-Z0-9]. 70 // Test string: "_"[a-z] 73 testing::Combine(testing::Values('_'), CLOSED_RANGE('a', 'z'))); 75 // Test string: "_"[A-Z] [all …]
|
| /third_party/cups-filters/cupsfilters/ |
| D | image-zoom.c | 4 * Copyright 2007-2011 by Apple Inc. 5 * Copyright 1993-2006 by Easy Software Products. 14 * _cupsImageZoomDelete() - Free a zoom record... 15 * _cupsImageZoomFill() - Fill a zoom record... 16 * _cupsImageZoomNew() - Allocate a pixel zoom record... 17 * zoom_bilinear() - Fill a zoom record with image data utilizing 19 * zoom_nearest() - Fill a zoom record quickly using nearest-neighbor 27 #include "image-private.h" 34 static void zoom_bilinear(cups_izoom_t *z, int iy); 35 static void zoom_nearest(cups_izoom_t *z, int iy); [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | es5-asyncFunctionNewExpressions.symbols | 1 === tests/cases/compiler/es5-asyncFunctionNewExpressions.ts === 2 declare var x, y, z, a, b, c; 3 >x : Symbol(x, Decl(es5-asyncFunctionNewExpressions.ts, 0, 11)) 4 >y : Symbol(y, Decl(es5-asyncFunctionNewExpressions.ts, 0, 14)) 5 >z : Symbol(z, Decl(es5-asyncFunctionNewExpressions.ts, 0, 17)) 6 >a : Symbol(a, Decl(es5-asyncFunctionNewExpressions.ts, 0, 20)) 7 >b : Symbol(b, Decl(es5-asyncFunctionNewExpressions.ts, 0, 23)) 8 >c : Symbol(c, Decl(es5-asyncFunctionNewExpressions.ts, 0, 26)) 11 >newExpression0 : Symbol(newExpression0, Decl(es5-asyncFunctionNewExpressions.ts, 0, 29)) 13 await new x(y, z); [all …]
|
| D | es5-asyncFunctionCallExpressions.symbols | 1 === tests/cases/compiler/es5-asyncFunctionCallExpressions.ts === 2 declare var x, y, z, a, b, c; 3 >x : Symbol(x, Decl(es5-asyncFunctionCallExpressions.ts, 0, 11)) 4 >y : Symbol(y, Decl(es5-asyncFunctionCallExpressions.ts, 0, 14)) 5 >z : Symbol(z, Decl(es5-asyncFunctionCallExpressions.ts, 0, 17)) 6 >a : Symbol(a, Decl(es5-asyncFunctionCallExpressions.ts, 0, 20)) 7 >b : Symbol(b, Decl(es5-asyncFunctionCallExpressions.ts, 0, 23)) 8 >c : Symbol(c, Decl(es5-asyncFunctionCallExpressions.ts, 0, 26)) 11 >callExpression0 : Symbol(callExpression0, Decl(es5-asyncFunctionCallExpressions.ts, 0, 29)) 13 await x(y, z); [all …]
|
| D | es5-asyncFunctionForOfStatements.symbols | 1 === tests/cases/compiler/es5-asyncFunctionForOfStatements.ts === 2 declare var x, y, z, a, b, c; 3 >x : Symbol(x, Decl(es5-asyncFunctionForOfStatements.ts, 0, 11)) 4 >y : Symbol(y, Decl(es5-asyncFunctionForOfStatements.ts, 0, 14)) 5 >z : Symbol(z, Decl(es5-asyncFunctionForOfStatements.ts, 0, 17)) 6 >a : Symbol(a, Decl(es5-asyncFunctionForOfStatements.ts, 0, 20)) 7 >b : Symbol(b, Decl(es5-asyncFunctionForOfStatements.ts, 0, 23)) 8 >c : Symbol(c, Decl(es5-asyncFunctionForOfStatements.ts, 0, 26)) 11 >forOfStatement0 : Symbol(forOfStatement0, Decl(es5-asyncFunctionForOfStatements.ts, 0, 29)) 13 for (x of y) { z; } [all …]
|
| D | mappedTypes6.js | 5 type T03<T> = { [P in keyof T]-?: T[P] }; 10 type T07<T> = { readonly [P in keyof T]-?: T[P] }; 15 type T11<T> = { +readonly [P in keyof T]-?: T[P] }; 17 type T12<T> = { -readonly [P in keyof T]: T[P] }; 18 type T13<T> = { -readonly [P in keyof T]?: T[P] }; 19 type T14<T> = { -readonly [P in keyof T]+?: T[P] }; 20 type T15<T> = { -readonly [P in keyof T]-?: T[P] }; 22 function f1<T>(x: Required<T>, y: T, z: Partial<T>) { 25 x = z; // Error 28 y = z; // Error [all …]
|
| D | es5-asyncFunctionForStatements.symbols | 1 === tests/cases/compiler/es5-asyncFunctionForStatements.ts === 2 declare var x, y, z, a, b, c; 3 >x : Symbol(x, Decl(es5-asyncFunctionForStatements.ts, 0, 11)) 4 >y : Symbol(y, Decl(es5-asyncFunctionForStatements.ts, 0, 14)) 5 >z : Symbol(z, Decl(es5-asyncFunctionForStatements.ts, 0, 17)) 6 >a : Symbol(a, Decl(es5-asyncFunctionForStatements.ts, 0, 20)) 7 >b : Symbol(b, Decl(es5-asyncFunctionForStatements.ts, 0, 23)) 8 >c : Symbol(c, Decl(es5-asyncFunctionForStatements.ts, 0, 26)) 11 >forStatement0 : Symbol(forStatement0, Decl(es5-asyncFunctionForStatements.ts, 0, 29)) 13 for (x; y; z) { a; } [all …]
|
| D | es5-asyncFunctionObjectLiterals.symbols | 1 === tests/cases/compiler/es5-asyncFunctionObjectLiterals.ts === 2 declare var x, y, z, a, b, c; 3 >x : Symbol(x, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 11)) 4 >y : Symbol(y, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 14)) 5 >z : Symbol(z, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 17)) 6 >a : Symbol(a, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 20)) 7 >b : Symbol(b, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 23)) 8 >c : Symbol(c, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 26)) 11 >objectLiteral0 : Symbol(objectLiteral0, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 29)) 14 >x : Symbol(x, Decl(es5-asyncFunctionObjectLiterals.ts, 0, 11)) [all …]
|
| D | es5-asyncFunctionForInStatements.symbols | 1 === tests/cases/compiler/es5-asyncFunctionForInStatements.ts === 2 declare var x, y, z, a, b, c; 3 >x : Symbol(x, Decl(es5-asyncFunctionForInStatements.ts, 0, 11)) 4 >y : Symbol(y, Decl(es5-asyncFunctionForInStatements.ts, 0, 14)) 5 >z : Symbol(z, Decl(es5-asyncFunctionForInStatements.ts, 0, 17)) 6 >a : Symbol(a, Decl(es5-asyncFunctionForInStatements.ts, 0, 20)) 7 >b : Symbol(b, Decl(es5-asyncFunctionForInStatements.ts, 0, 23)) 8 >c : Symbol(c, Decl(es5-asyncFunctionForInStatements.ts, 0, 26)) 11 >forInStatement0 : Symbol(forInStatement0, Decl(es5-asyncFunctionForInStatements.ts, 0, 29)) 13 for (x in y) { z; } [all …]
|
| /third_party/elfio/tests/elf_examples/ |
| D | ppc-32bit-specimen3.elf | ... v; e w 7 U? F 7 xX Z ^ a - LpK p2 Kd a/ { i ... |
| /third_party/icu/icu4c/source/test/testdata/ |
| D | re_tests.txt | 2 abc abc y $-[0] 0 4 abc xbc n - - 5 abc axc n - - 6 abc abx n - - 8 abc xabcy y $-[0] 1 11 abc ababc y $-[0] 2 14 ab*c abc y $-[0] 0 17 ab*bc abc y $-[0] 0 20 ab*bc abbc y $-[0] 0 23 ab*bc abbbbc y $-[0] 0 [all …]
|
| /third_party/skia/experimental/wasm-skp-debugger/debugger/ |
| D | anim.mskp | 1 Skia Multi-Picture Doc 5 …��GSUB�Y�s��OS/2kr[��`cmap�m���@gasp�glyf8]Z��^head�'�Ҭ… 6 …MM������"v����"z����"�����@��"#^… 9 …-6D;c9��$75#��$9 :&��2X74NX;:]4�!55"���$99#�-����&&546632&&#"327…
|
| /third_party/ffmpeg/tests/ |
| D | reference.pnm | 5 …�Ȟ�ʡ�ϧ�Ψ�˥�Ơ�Ȣ�Ɲ�̣�Ϩ�ѫ�ҭ�Ω�ѫ�Ӭ�ٲ�������������ع�ӵ�̦պ���k�h8�P"�J�H�K�E�Dz?w;|B}E!Y3~iC�tV�… 242 …Ş�ɣ�̨�ɢ�ĝ�Ę�ƞ�ś�ǚ�ƙ���տ�ֽ�����ş�Ŝ�ś�ŝ�Ě�Ĝ��ĝ�ȡ�ǡ�ȟ�ȡ�ȟ�ˤ�ǞѲ���_�tF�\-�R)�H�H �Q(�iC��_�ZmMUL/&! 292 …A=0�ʲ�ҷ����������ӹ�ΰ�Ĩ�ȫ�ȩ㿡ժ�����Ȧ�ã�¤๙ȞxǝyҦ�縞黝껝뻞켟뼞콡뻞뺝�컟컟�춛�뵗춝쵝쵕추뵖츚칙캖�켜�����ĥ�Ȫ�ƨ�ǧ�ɩ�Ǩ�Ȫ�ɪ�Ǩ�ȩ�ʭ�… 322 …ŗ�ƙ�Ś�×����ս��������Ú�Ě�Ú���ؽ�������������Ý�Ě�Ü�Ɯڿ�ŧw�}N�Z)zH~L'�N&�\;�sP��g��m��q��e^U4-+… 380 …������������������������������������������벚�Ŧ�Ȩ�̬�Թ�ʭ�ǩ�Ʃ���ؿ�ٻ�Ե�ѭ�ѯ�ͬ�ǩ���z��s��oǑtɑq�g��u��~��… 405 …�ּ�Ӽ�Թ�и�η�Ȳ�é����®�Ʈ�̱�Ѹ�պ�һ�Һ�ҹ�պ�Ӽ��Խ�ս�ؽ�ؼ�պ�ʮ���n�oC|b8�fB�qO�U��h��{�����������s�vZUL-.'(! 431 …�����������Ὗ����ä�Ͱ�ͮ�Ǧ�ɫ�ȣۿ�Ե�ΰ�ϭ~}ͩ|Ǣrs�׆�قJ8 *.!/ 2#?-T8$mE3yA,y>&A3�E0�T… 445 …A.�bN�~dˋx͎xΎtʌtˎs̍t͎s̎pΒsАuӗ{іxГuә�љ}ә}՜�՝�؟�֟�֞�И{ϖxƎrÌp��d��c��c��d��ej��k��h��e��c��g��f��i��… 451 …a��]��`��`��_��a��`��b��f��c��i��o��i��j��b��d��b��e�}^�f�x]�xZ�u[�tX�lR�nT�hG�gI{eHzcC~hLzgIzeFz… 453 …=mZ=kY<n]@raCp`CsaFveEqcBwfM|lO|pQ�wY�z[�|[��`��e��_��_��`�zU�yX�wX�{Z��\��b��n��s��v��t��w��v��w�… [all …]
|
| /third_party/curl/tests/libtest/ |
| D | test.h | 21 * SPDX-License-Identifier: curl 27 need both of them in the include path), so that we get good in-depth 49 #define test_setopt(A,B,C) \ argument 50 if((res = curl_easy_setopt((A), (B), (C))) != CURLE_OK) \ 53 #define test_multi_setopt(A,B,C) \ argument 54 if((res = curl_multi_setopt((A), (B), (C))) != CURLE_OK) \ 108 ** outside of this header file. Arguments 'Y' and 'Z' of these represent 109 ** source code file and line number, while Arguments 'A', 'B', etc, are 110 ** the arguments used to actually call a libcurl function. 112 ** All easy_* and multi_* macros call a libcurl function and evaluate if [all …]
|
| /third_party/mesa3d/docs/gallium/ |
| D | tgsi.rst | 10 ------ 12 All TGSI instructions, known as *opcodes*, operate on arbitrary-precision 13 floating-point four-component vectors. An opcode may have up to one 18 Some instructions, like :opcode:`I2F`, permit re-interpretation of vector 20 two-component vectors with double precision; see :ref:`doubleopcodes`. 22 When an instruction has a scalar result, the result is usually copied into 29 TGSI supports 32-bit negate and absolute value modifiers on floating-point 30 inputs, and 32-bit integer negates on some drivers. The negate applies after 42 The saturate modifier clamps 32-bit destination stores to [0.0, 1.0]. 44 For arithmetic instruction having a precise modifier certain optimizations [all …]
|
| /third_party/astc-encoder/Test/Images/Small/HDR-RGB/ |
| D | hdr-rgb-00.hdr | 3 FORMAT=32-bit_rle_rgbe 5 -Y 256 +X 256 6 …z��j�p�g`��{j~��e��je��e��������Ĝ�������ˢx撇�ʴ��Ң����������ߌ���������������������|�������ـ��x���p… 7 …z���ʀ����ֶ���������r|��~��䖭|�������|�t�����v҆�xz�z����ҝ�tv�ϗ�~}��й�~�įx����v�xx�x~�ڒ�����|쀄���|�… 8 …z���`��p���p��ii~zj�j��z�g|~ibzt��tbl�t�tvit^ҕ�����в�nnb�n|zr�rg��������lli�~~e�nnjzvibtc�l��r�n�t… 9 …z�e���������xg�p`l~tv�tp������t�v�^�b�~zrvvv~jxlpt��lix�t�gg�rt^pc�itlTt^^^Yglr\�R�t~�WpebY�������… 11 …z�z�gip�ii�ct�g����r��gt|�grc������[Yjczcl��b���������l�~nijplbx�pi~njxv�t�v�`g���~ng�z��nj\~r|�c…
|
| /third_party/FreeBSD/contrib/gdtoa/ |
| D | misc.c | 39 #define PRIVATE_mem ((PRIVATE_MEM+sizeof(double)-1)/sizeof(double)) 61 freelist[k] = rv->next; 66 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(ULong)); 68 len = (sizeof(Bigint) + (x-1)*sizeof(ULong) + sizeof(double) - 1) 70 if (k <= Kmax && pmem_next - private_mem + len <= PRIVATE_mem) { 77 rv->k = k; 78 rv->maxwds = x; 81 rv->sign = rv->wds = 0; 94 if (v->k > Kmax) 102 v->next = freelist[v->k]; [all …]
|