/third_party/skia/resources/sksl/folding/ |
D | MatrixFoldingES2.sksl | 65 // This `five` is constant and should always fold. 66 const float five = 5.0; 67 ok = ok && (float2x2(five)[0] == float2(five, 0.0)); 68 ok = ok && (float2x2(five)[1] == float2(0.0, five)); 70 ok = ok && (float2x2(five)[0][0] == five); 71 ok = ok && (float2x2(five)[0][1] == 0.0); 72 ok = ok && (float2x2(five)[1][0] == 0.0); 73 ok = ok && (float2x2(five)[1][1] == five); 75 ok = ok && (float3x3(1, 2, 3, 4, five, 6, 7, 8, 9)[0] == float3(1, 2, 3)); 76 ok = ok && (float3x3(1, 2, 3, 4, five, 6, 7, 8, 9)[1] == float3(4, five, 6)); [all …]
|
/third_party/skia/tests/sksl/runtime/ |
D | LoopInt.stage | 4 int return_loop_0(int five); 6 int continue_loop_0(int five); 7 int break_loop_0(int five); 14 int return_loop_0(int five) 18 if (i == five) 25 int continue_loop_0(int five) 30 if (i < five) 38 int break_loop_0(int five) 44 if (i > five) 118 int five = int(clamp(_coords.x, float(colorGreen.y), float(colorGreen.w))) * 5; [all …]
|
D | LoopFloat.stage | 4 float return_loop_0(float five); 6 float continue_loop_0(float five); 7 float break_loop_0(float five); 15 float return_loop_0(float five) 19 if (i == five) 26 float continue_loop_0(float five) 31 if (i < five) 39 float break_loop_0(float five) 45 if (i > five) 128 float five = clamp(_coords.x, float(colorGreen.y), float(colorGreen.w)) * 5.0; [all …]
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | gstaudioiec61937.c | 165 guint8 zero = 0, one = 1, two = 2, three = 3, four = 4, five = 5, six = 6, in gst_audio_iec61937_payload() local 169 guint8 zero = 1, one = 0, two = 3, three = 2, four = 5, five = 4, six = 7, in gst_audio_iec61937_payload() local 199 dst[five] = 1; in gst_audio_iec61937_payload() 222 dst[five] = 21; in gst_audio_iec61937_payload() 247 dst[five] = 11 + (blocksize / 1024); in gst_audio_iec61937_payload() 283 dst[five] = 0x04; in gst_audio_iec61937_payload() 286 dst[five] = 0x05; in gst_audio_iec61937_payload() 288 dst[five] = 0x08; in gst_audio_iec61937_payload() 290 dst[five] = 0x09; in gst_audio_iec61937_payload() 292 dst[five] = 0x0A; in gst_audio_iec61937_payload() [all …]
|
/third_party/flatbuffers/tests/rust_usage_test/tests/ |
D | optional_scalars_test.rs | 13 $five: expr, $zero: expr, $fortytwo: expr 22 $just: $five, 23 $default: $five, 24 $maybe: Some($five), 31 assert_eq!(s.$just(), $five); 32 assert_eq!(s.$default(), $five); 33 assert_eq!(s.$maybe(), Some($five)); 43 assert_eq!(s.$just, $five); 44 assert_eq!(s.$default, $five); 45 assert_eq!(s.$maybe, Some($five));
|
/third_party/boost/libs/function/test/ |
D | function_n_test.cpp | 56 write_five_obj five = write_five_obj(); // Initialization for Borland C++ 5.5 in test_zero_args() local 64 v1 = five; in test_zero_args() 87 v1 = five; in test_zero_args() 118 v1 = five; in test_zero_args() 150 v2 = (five); in test_zero_args() 179 v1 = five; in test_zero_args() 189 v2 = five; in test_zero_args() 258 v3 = five; in test_zero_args() 288 v3 = five; in test_zero_args() 318 v4 = five; in test_zero_args() [all …]
|
D | function_test.cpp | 55 write_five_obj five; in test_zero_args() local 63 v1 = five; in test_zero_args() 86 v1 = five; in test_zero_args() 117 v1 = five; in test_zero_args() 149 v2 = (five); in test_zero_args() 178 v1 = five; in test_zero_args() 188 v2 = five; in test_zero_args() 257 v3 = five; in test_zero_args() 287 v3 = five; in test_zero_args() 317 v4 = five; in test_zero_args() [all …]
|
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/ |
D | 054-if-with-macros.c | 4 #define five 5 macro 5 #if five < two 15 #if two + three <= five 20 #if five - two == three 30 #if one != five
|
/third_party/skia/resources/sksl/runtime/ |
D | LoopInt.rts | 7 int return_loop(int five) { 9 if (i == five) { return i; } 16 int continue_loop(int five) { 19 if (i < five) { continue; } 26 int break_loop(int five) { 30 if (i > five) { break; } 107 int five = int(clamp(pos.x, colorGreen.g, colorGreen.a)) * 5; 108 return (return_loop(five) == 5 && continue_loop(five) == 35 && break_loop(five) == 15 &&
|
D | LoopFloat.rts | 7 float return_loop(float five) { 9 if (i == five) { return i; } 16 float continue_loop(float five) { 19 if (i < five) { continue; } 26 float break_loop(float five) { 30 if (i > five) { break; } 116 float five = clamp(pos.x, colorGreen.g, colorGreen.a) * 5.0; 117 return (return_loop(five) == 5 && continue_loop(five) == 35 && 118 break_loop(five) == 15 && abs(float_loop()) < 0.025 &&
|
/third_party/e2fsprogs/lib/ext2fs/ |
D | res_gdt.c | 28 unsigned int *five, unsigned int *seven) in list_backups() argument 53 if (*five < *min) { in list_backups() 54 min = five; in list_backups() 145 unsigned int three = 1, five = 5, seven = 7; in ext2fs_create_resize_inode() local 186 while ((grp = list_backups(fs, &three, &five, &seven)) < in ext2fs_create_resize_inode()
|
/third_party/typescript/tests/baselines/reference/ |
D | typeUsedAsValueError.symbols | 39 let five = new TypeAliasForSomeClassNotFound(); 40 >five : Symbol(five, Decl(typeUsedAsValueError.ts, 19, 3))
|
D | commentsAfterCaseClauses1.js | 11 case 5: // five 27 case 5: // five
|
D | commentsAfterCaseClauses2.js | 12 case 5: // five 31 case 5: // five
|
D | typeUsedAsValueError.js | 21 let five = new TypeAliasForSomeClassNotFound(); variable 38 var five = new TypeAliasForSomeClassNotFound(); variable
|
D | typeUsedAsValueError.types | 41 let five = new TypeAliasForSomeClassNotFound(); 42 >five : any
|
/third_party/toybox/tests/ |
D | paste.test | 11 echo five > five
|
/third_party/boost/libs/assign/test/ |
D | std.cpp | 57 struct five struct 59 five( int, int, int, int, int ) { } in five() argument 60 five( const string&, const string&, const string&, in five() function 133 vector<five> v_five; in test_tuple()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/test/shaping/data/in-house/tests/ |
D | automatic-fractions.tests | 1 …umr=0+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.sma… 2 …umr=0+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.sma…
|
/third_party/grpc/test/core/gpr/ |
D | useful_test.cc | 27 int five[5]; in main() local 43 GPR_ASSERT(GPR_ARRAY_SIZE(five) == 5); in main()
|
/third_party/harfbuzz/test/shaping/data/in-house/tests/ |
D | automatic-fractions.tests | 1 …umr=0+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.sma… 2 …umr=0+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.sma…
|
/third_party/skia/third_party/externals/harfbuzz/test/shape/data/in-house/tests/ |
D | automatic-fractions.tests | 1 …umr=0+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.sma… 2 …umr=0+600|two.numr=1+600|three.numr=2+600|fraction=3+252|four.small=4+600|five.small=5+600|six.sma…
|
D | reverse-sub.tests | 3 …five.numr=4+350|six.numr=5+350|seven.numr=6+350|eight.numr=7+350|nine.numr=8+350|zero.numr=9+350|f…
|
/third_party/skia/third_party/externals/tint/test/vk-gl-cts/graphicsfuzz/cov-folding-rules-merge-var-sub/ |
D | 0-opt.wgsl | 3 five : i32; 12 let x_26 : i32 = x_6.five;
|
/third_party/curl/tests/data/ |
D | test3006 | 29 …wo --mail-rcpt invalid.three --mail-rcpt invalid.four --mail-rcpt invalid.five --mail-from sender@… 47 RCPT TO:<invalid.five>
|