/third_party/typescript/tests/baselines/reference/ |
D | overEagerReturnTypeSpecialization.symbols | 4 interface I1<T> { 5 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0)) 8 func<U>(callback: (value: T) => U): I1<U>; 9 >func : Symbol(I1.func, Decl(overEagerReturnTypeSpecialization.ts, 2, 17)) 15 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0)) 19 declare var v1: I1<number>; 21 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0)) 23 var r1: I1<string> = v1.func(num => num.toString()) // Correctly returns an I1<string> 25 >I1 : Symbol(I1, Decl(overEagerReturnTypeSpecialization.ts, 0, 0)) 26 >v1.func(num => num.toString()) // Correctly returns an I1<string> .func : Symbol(I1.func… [all …]
|
D | arrayAssignmentTest1.types | 2 interface I1 { 7 class C1 implements I1 { 56 var i1 : I1 = c1; 57 >i1 : I1 86 var arr_i1: I1[] = []; 87 >arr_i1 : I1[] 98 var arr_i1_2: I1[] = []; 99 >arr_i1_2 : I1[] 114 var i1_error: I1 = []; // should be an error - is 115 >i1_error : I1 [all …]
|
D | genericChainedCalls.symbols | 2 interface I1<T> { 3 >I1 : Symbol(I1, Decl(genericChainedCalls.ts, 0, 0)) 6 func<U>(callback: (value: T) => U): I1<T>; 7 >func : Symbol(I1.func, Decl(genericChainedCalls.ts, 0, 17)) 13 >I1 : Symbol(I1, Decl(genericChainedCalls.ts, 0, 0)) 17 declare var v1: I1<number>; 19 >I1 : Symbol(I1, Decl(genericChainedCalls.ts, 0, 0)) 23 …tr.length) // error, number doesn't have a length .func : Symbol(I1.func, Decl(genericCh… 24 >v1.func(num => num.toString()) .func : Symbol(I1.func, Decl(genericChainedCalls.ts, 0, … 25 >v1.func : Symbol(I1.func, Decl(genericChainedCalls.ts, 0, 17)) [all …]
|
D | constEnums.types | 112 Q = -D, 114 >-D : number 201 "<!--", 202 >"<!--" : (typeof Comments)["<!--"] 204 "-->", 205 >"-->" : (typeof Comments)["-->"] 329 import I1 = A1.B; 330 >I1 : typeof I1 332 >B : typeof I1 359 function foo1(e: I1.C.E): void { [all …]
|
D | arrayAssignmentTest1.errors.txt | 1 ….ts(46,5): error TS2741: Property 'IM1' is missing in type 'undefined[]' but required in type 'I1'. 5 …compiler/arrayAssignmentTest1.ts(60,1): error TS2322: Type 'C3[]' is not assignable to type 'I1[]'. 6 Property 'IM1' is missing in type 'C3' but required in type 'I1'. 7 tests/cases/compiler/arrayAssignmentTest1.ts(64,1): error TS2322: Type 'I1[]' is not assignable to … 8 Property 'C1M1' is missing in type 'I1' but required in type 'C1'. 13 tests/cases/compiler/arrayAssignmentTest1.ts(69,1): error TS2322: Type 'I1[]' is not assignable to … 14 Type 'I1' is missing the following properties from type 'C2': C2M1, C1M1 21 tests/cases/compiler/arrayAssignmentTest1.ts(77,1): error TS2322: Type 'I1[]' is not assignable to … 22 Property 'CM3M1' is missing in type 'I1' but required in type 'C3'. 28 tests/cases/compiler/arrayAssignmentTest1.ts(85,1): error TS2740: Type 'I1' is missing the followin… [all …]
|
D | arrayAssignmentTest2.types | 2 interface I1 { 7 class C1 implements I1 { 56 var i1 : I1 = c1; 57 >i1 : I1 86 var arr_i1: I1[] = []; 87 >arr_i1 : I1[] 98 var arr_i1_2: I1[] = []; 99 >arr_i1_2 : I1[] 115 arr_c3 = arr_c2_2; // should be an error - is 120 arr_c3 = arr_c1_2; // should be an error - is [all …]
|
D | arrayAssignmentTest2.symbols | 2 interface I1 { 3 >I1 : Symbol(I1, Decl(arrayAssignmentTest2.ts, 0, 0)) 6 >IM1 : Symbol(I1.IM1, Decl(arrayAssignmentTest2.ts, 0, 14)) 9 class C1 implements I1 { 11 >I1 : Symbol(I1, Decl(arrayAssignmentTest2.ts, 0, 0)) 56 var i1 : I1 = c1; 57 >i1 : Symbol(i1, Decl(arrayAssignmentTest2.ts, 30, 3)) 58 >I1 : Symbol(I1, Decl(arrayAssignmentTest2.ts, 0, 0)) 82 var arr_i1: I1[] = []; 84 >I1 : Symbol(I1, Decl(arrayAssignmentTest2.ts, 0, 0)) [all …]
|
D | contextualTypeWithUnionTypeMembers.symbols | 4 interface I1<T> { 5 >I1 : Symbol(I1, Decl(contextualTypeWithUnionTypeMembers.ts, 0, 0)) 9 >commonMethodType : Symbol(I1.commonMethodType, Decl(contextualTypeWithUnionTypeMembers.ts, 2, 17)) 13 >commonPropertyType : Symbol(I1.commonPropertyType, Decl(contextualTypeWithUnionTypeMembers.ts, 3, … 16 >commonMethodWithTypeParameter : Symbol(I1.commonMethodWithTypeParameter, Decl(contextualTypeWithUn… 22 >methodOnlyInI1 : Symbol(I1.methodOnlyInI1, Decl(contextualTypeWithUnionTypeMembers.ts, 5, 43)) 26 >propertyOnlyInI1 : Symbol(I1.propertyOnlyInI1, Decl(contextualTypeWithUnionTypeMembers.ts, 7, 38)) 55 var i1: I1<number>; 56 >i1 : Symbol(i1, Decl(contextualTypeWithUnionTypeMembers.ts, 21, 3)) 57 >I1 : Symbol(I1, Decl(contextualTypeWithUnionTypeMembers.ts, 0, 0)) [all …]
|
D | arrayAssignmentTest1.symbols | 2 interface I1 { 3 >I1 : Symbol(I1, Decl(arrayAssignmentTest1.ts, 0, 0)) 6 >IM1 : Symbol(I1.IM1, Decl(arrayAssignmentTest1.ts, 0, 14)) 9 class C1 implements I1 { 11 >I1 : Symbol(I1, Decl(arrayAssignmentTest1.ts, 0, 0)) 56 var i1 : I1 = c1; 57 >i1 : Symbol(i1, Decl(arrayAssignmentTest1.ts, 30, 3)) 58 >I1 : Symbol(I1, Decl(arrayAssignmentTest1.ts, 0, 0)) 82 var arr_i1: I1[] = []; 84 >I1 : Symbol(I1, Decl(arrayAssignmentTest1.ts, 0, 0)) [all …]
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | cse.c | 2 * CSE - walk the linearized instruction flow, and 27 const struct instruction *def1 = phi1->def; in phi_compare() 28 const struct instruction *def2 = phi2->def; in phi_compare() 30 if (def1->src1 != def2->src1) in phi_compare() 31 return def1->src1 < def2->src1 ? -1 : 1; in phi_compare() 32 if (def1->bb != def2->bb) in phi_compare() 33 return def1->bb < def2->bb ? -1 : 1; in phi_compare() 42 hash = (insn->opcode << 3) + (insn->size >> 3); in cse_collect() 43 switch (insn->opcode) { in cse_collect() 45 hash += hashval(insn->src3); in cse_collect() [all …]
|
/third_party/selinux/libsepol/cil/src/ |
D | cil_policy.c | 82 switch (node->flavor) { in __cil_gather_statements_helper() 84 struct cil_block *blk = node->data; in __cil_gather_statements_helper() 85 if (blk->is_abstract == CIL_TRUE) { in __cil_gather_statements_helper() 127 struct cil_typeattribute *attr = node->data; in __cil_gather_statements_helper() 128 if (strcmp(attr->datum.fqn, "cil_gen_require") != 0) { in __cil_gather_statements_helper() 134 struct cil_roleattribute *attr = node->data; in __cil_gather_statements_helper() 135 if (strcmp(attr->datum.fqn, "cil_gen_require") != 0) { in __cil_gather_statements_helper() 150 struct cil_role *role = node->data; in __cil_gather_statements_helper() 151 if (strcmp(role->datum.fqn, "object_r") != 0) { in __cil_gather_statements_helper() 176 cil_list_append(lists[kind], node->flavor, node->data); in __cil_gather_statements_helper() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/ |
D | PresentSemaphores.md | 5 - PE: Presentation Engine 6 - ANI: vkAcquireNextImageKHR 7 - QS: vkQueueSubmit 8 - QP: vkQueuePresentKHR 9 - W: Wait 10 - S: Signal 11 - R: Render 12 - P: Present 13 - SN: Semaphore N 14 - IN: Swapchain image N [all …]
|
/third_party/glslang/Test/baseResults/ |
D | spv.accessChain.frag.out | 15 Name 11 "GetColor1(struct-S-vf31;" 17 Name 18 "GetColor2(struct-S-vf31;i1;" 20 Name 22 "GetColor3(struct-S-vf31;i1;" 23 Name 26 "GetColor4(struct-S-vf31;i1;" 26 Name 30 "GetColor5(struct-S-vf31;i1;" 29 Name 34 "GetColor6(struct-S-vf31;i1;" 32 Name 38 "GetColor7(struct-S-vf31;i1;" 35 Name 42 "GetColor8(struct-S-vf31;i1;" 38 Name 46 "GetColor9(struct-S-vf31;i1;" 41 Name 50 "GetColor10(struct-S-vf31;i1;" [all …]
|
D | hlsl.rw.atomics.frag.out | 5 0:45 Function Definition: @main( ( temp structure{ temp 4-component vector of float Color}) 10 0:50 i1: direct index for structure ( uniform int) 11 …-component vector of uint u2, uniform 3-component vector of uint u3, uniform uint u1b, uniform … 15 …-component vector of uint u2, uniform 3-component vector of uint u3, uniform uint u1b, uniform … 22 0:51 i1: direct index for structure ( uniform int) 23 …-component vector of uint u2, uniform 3-component vector of uint u3, uniform uint u1b, uniform … 26 0:51 i1: direct index for structure ( uniform int) 27 …-component vector of uint u2, uniform 3-component vector of uint u3, uniform uint u1b, uniform … 32 0:52 i1: direct index for structure ( uniform int) 33 …-component vector of uint u2, uniform 3-component vector of uint u3, uniform uint u1b, uniform … [all …]
|
D | hlsl.precedence2.frag.out | 5 0:7 Function Definition: @PixelShaderFunction(i1;i1;i1;i1; ( temp int) 14 0:8 left-shift ( temp int) 16 0:8 component-wise multiply ( temp int) 21 0:8 left-shift ( temp int) 25 0:8 component-wise multiply ( temp int) 45 0:7 Function Call: @PixelShaderFunction(i1;i1;i1;i1; ( temp int) 64 0:7 Function Definition: @PixelShaderFunction(i1;i1;i1;i1; ( temp int) 73 0:8 left-shift ( temp int) 75 0:8 component-wise multiply ( temp int) 80 0:8 left-shift ( temp int) [all …]
|
D | hlsl.params.default.frag.out | 5 0:9 Function Definition: fn1(vi4;b1;b1; ( temp 4-component vector of int) 7 0:9 'p0' ( in 4-component vector of int) 12 0:10 'p0' ( in 4-component vector of int) 13 0:17 Function Definition: fn1(vi4;vi4;i1[2];i1; ( temp 4-component vector of int) 15 0:17 'p0' ( in 4-component vector of int) 16 0:17 'p1' ( in 4-component vector of int) 17 0:17 'p2' ( in 2-element array of int) 21 0:18 add ( temp 4-component vector of int) 22 0:18 add ( temp 4-component vector of int) 23 0:18 add ( temp 4-component vector of int) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | test_fcmp.pnacl.ll | 1 ; This file is extracted from fp.pnacl.ll and vector-fcmp.ll in the lit 7 %cmp.ret_ext = zext i1 %cmp to i32 16 %cmp.ret_ext = zext i1 %cmp to i32 25 %cmp.ret_ext = zext i1 %cmp to i32 36 %cmp.ret_ext = zext i1 %cmp to i32 47 %cmp.ret_ext = zext i1 %cmp to i32 57 %cmp.ret_ext = zext i1 %cmp to i32 67 %cmp.ret_ext = zext i1 %cmp to i32 77 %cmp.ret_ext = zext i1 %cmp to i32 87 %cmp.ret_ext = zext i1 %cmp to i32 [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTypes.def | 1 //===- subzero/src/IceTypes.def - X-macros for ICE types --------*- C++ -*-===// 8 //===----------------------------------------------------------------------===// 10 // This file defines properties of ICE primitive types in the form of x-macros. 12 //===----------------------------------------------------------------------===// 19 // 1- At some point NaCl would like to use ELF32 for all ILP32 sandboxes, but 20 // for now the 64-bit architectures use ELF64: 23 // 2- native code is always emitted as ELF32. 28 X(Target_X8632, "x86-32", false, EM_386, 0) \ 29 X(Target_X8664, "x86-64", true, EM_X86_64, 0) \ 39 X(void, -1, 0, 1, void, "void", "void") \ [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | jpeg2000dwt.c | 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 51 static inline void extend53(int *p, int i0, int i1) in extend53() argument 53 p[i0 - 1] = p[i0 + 1]; in extend53() 54 p[i1] = p[i1 - 2]; in extend53() 55 p[i0 - 2] = p[i0 + 2]; in extend53() 56 p[i1 + 1] = p[i1 - 3]; in extend53() 59 static inline void extend97_float(float *p, int i0, int i1) in extend97_float() argument 64 p[i0 - i] = p[i0 + i]; in extend97_float() 65 p[i1 + i - 1] = p[i1 - i - 1]; in extend97_float() 69 static inline void extend97_int(int32_t *p, int i0, int i1) in extend97_int() argument [all …]
|
/third_party/openssl/crypto/aes/asm/ |
D | aes-armv4.pl | 2 # Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved. 21 # Code uses single 1K S-box and is >2 times faster than code generated 22 # by gcc-3.4.1. This is thanks to unique feature of ARMv4 ISA, which 25 # is endian-neutral. The performance is ~42 cycles/byte for 128-bit 26 # key [on single-issue Xscale PXA250 core]. 34 # Rescheduling for dual-issue pipeline resulted in 12% improvement on 35 # Cortex A8 core and ~25 cycles per byte processed with 128-bit key. 39 # Profiler-assisted and platform-specific optimization resulted in 16% 49 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 50 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or [all …]
|
/third_party/node/deps/openssl/openssl/crypto/aes/asm/ |
D | aes-armv4.pl | 2 # Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved. 21 # Code uses single 1K S-box and is >2 times faster than code generated 22 # by gcc-3.4.1. This is thanks to unique feature of ARMv4 ISA, which 25 # is endian-neutral. The performance is ~42 cycles/byte for 128-bit 26 # key [on single-issue Xscale PXA250 core]. 34 # Rescheduling for dual-issue pipeline resulted in 12% improvement on 35 # Cortex A8 core and ~25 cycles per byte processed with 128-bit key. 39 # Profiler-assisted and platform-specific optimization resulted in 16% 49 ( $xlate="${dir}arm-xlate.pl" and -f $xlate ) or 50 ( $xlate="${dir}../../perlasm/arm-xlate.pl" and -f $xlate) or [all …]
|
/third_party/gstreamer/gstplugins_good/tests/check/elements/ |
D | imagefreeze.c | 18 * Boston, MA 02110-1301, USA. 32 switch (message->type) { in bus_handler() 41 if (message->type == GST_MESSAGE_WARNING) in bus_handler() 46 GST_ELEMENT_NAME (GST_MESSAGE_SRC (message)), gerror->message, in bus_handler() 72 g_object_set (videotestsrc, "num-buffers", 1, NULL); in setup_imagefreeze() 87 g_object_set (fakesink, "signal-handoffs", TRUE, "async", FALSE, NULL); in setup_imagefreeze() 129 GstVideoInfo i1, i2; in GST_START_TEST() local 131 gst_video_info_init (&i1); in GST_START_TEST() 132 gst_video_info_set_format (&i1, GST_VIDEO_FORMAT_xRGB, 640, 480); in GST_START_TEST() 133 i1.fps_n = 25; in GST_START_TEST() [all …]
|
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
D | mips_macro.h | 3 // Use of this source code is governed by a BSD-style license 8 // ----------------------------------------------------------------------------- 22 // O0[31..16 | 15..0] = I0[31..16 | 15..0] + I1[31..16 | 15..0] 23 // O1[31..16 | 15..0] = I0[31..16 | 15..0] - I1[31..16 | 15..0] 24 // O - output 25 // I - input (macro doesn't change it) 27 I0, I1) \ argument 28 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I1 "] \n\t" \ 29 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I1 "] \n\t" 31 // O - output [all …]
|
/third_party/jerryscript/jerry-libm/ |
D | floor.c | 7 * http://www.apache.org/licenses/LICENSE-2.0 28 #include "jerry-libm-internal.h" 31 * Return x rounded toward -inf to integral value 45 int i0, i1, j0; in floor() local 49 i1 = __LO (x); in floor() 50 j0 = ((i0 >> 20) & 0x7ff) - 0x3ff; in floor() 59 i0 = i1 = 0; in floor() 61 else if (((i0 & 0x7fffffff) | i1) != 0) in floor() 64 i1 = 0; in floor() 71 if (((i0 & i) | i1) == 0) /* x is integral */ in floor() [all …]
|
D | ceil.c | 7 * http://www.apache.org/licenses/LICENSE-2.0 28 #include "jerry-libm-internal.h" 31 * Return x rounded toward -inf to integral value 45 int i0, i1, j0; in ceil() local 49 i1 = __LO (x); in ceil() 50 j0 = ((i0 >> 20) & 0x7ff) - 0x3ff; in ceil() 60 i1 = 0; in ceil() 62 else if ((i0 | i1) != 0) in ceil() 65 i1 = 0; in ceil() 72 if (((i0 & i) | i1) == 0) /* x is integral */ in ceil() [all …]
|