/third_party/boost/boost/thread/detail/ |
D | make_tuple_indices.hpp | 1 // Copyright (C) 2012-2013 Vicente J. Botet Escriba 11 //===----------------------------------------------------------------------===// 19 //===----------------------------------------------------------------------===// 61 // - tuple forward declaration ----------------------------------------------- 82 template <std::size_t Sp, std::size_t I0, std::size_t I1, std::size_t Ep> 83 struct make_indices_imp<Sp, tuple_indices<I0, I1>, Ep> 85 typedef typename make_indices_imp<Sp+1, tuple_indices<I0, I1, Sp>, Ep>::type type; 87 template <std::size_t Sp, std::size_t I0, std::size_t I1, std::size_t I2, std::size_t Ep> 88 struct make_indices_imp<Sp, tuple_indices<I0, I1 , I2>, Ep> 90 typedef typename make_indices_imp<Sp+1, tuple_indices<I0, I1, I2, Sp>, Ep>::type type; [all …]
|
/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 | 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 | 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 | interfaceInheritance.types | 2 interface I1 { 10 interface I2 extends I1 { 16 i2P1: string; // has a member from i2P1, but not from I1 30 class C1 implements I2 { // should be an error - it doesn't implement the members of I1 40 var i1: I1; 41 >i1 : I1 46 i1 = i2; 47 >i1 = i2 : I2 48 >i1 : I1 51 i2 = i3; // should be an error - i3 does not implement the members of i1
|
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 | interfaceInheritance.js | 2 interface I1 { 7 interface I2 extends I1 { 12 i2P1: string; // has a member from i2P1, but not from I1 23 class C1 implements I2 { // should be an error - it doesn't implement the members of I1 28 var i1: I1; variable 30 i1 = i2; 31 i2 = i3; // should be an error - i3 does not implement the members of i1 50 var i1; variable 52 i1 = i2; 53 i2 = i3; // should be an error - i3 does not implement the members of i1
|
D | interfaceInheritance.symbols | 2 interface I1 { 3 >I1 : Symbol(I1, Decl(interfaceInheritance.ts, 0, 0)) 6 >i1P1 : Symbol(I1.i1P1, Decl(interfaceInheritance.ts, 0, 14)) 9 >i1P2 : Symbol(I1.i1P2, Decl(interfaceInheritance.ts, 1, 17)) 12 interface I2 extends I1 { 14 >I1 : Symbol(I1, Decl(interfaceInheritance.ts, 0, 0)) 23 i2P1: string; // has a member from i2P1, but not from I1 41 class C1 implements I2 { // should be an error - it doesn't implement the members of I1 53 var i1: I1; 54 >i1 : Symbol(i1, Decl(interfaceInheritance.ts, 26, 3)) [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/boost/libs/iterator/test/detail/ |
D | zip_iterator_test.ipp | 29 boost::zip_iterator<iterator_tuple> i1(MAKE_TUPLE(vi.begin(), vs.begin())); 30 boost::zip_iterator<iterator_tuple> i2 = i1; 32 BOOST_TEST( i1 == i2); 33 BOOST_TEST( i1++ == i2); 34 BOOST_TEST( i1 == (i2 + 1)); 35 BOOST_TEST((i1 - 1) == i2); 36 BOOST_TEST( i1-- == ++i2); 37 BOOST_TEST( i1 == --i2); 41 boost::zip_iterator<iterator_tuple> i1(MAKE_TUPLE(vi.begin(), vs.begin())); 42 boost::zip_iterator<iterator_tuple> i2 = i1 + 1; [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/boost/libs/interprocess/test/ |
D | map_test.hpp | 3 // (C) Copyright Ion Gaztanaga 2006-2012. Distributed under the Boost 81 IntType i1(i/2); in map_test() local 83 new(&aux_vect[i])IntPairType(boost::move(i1), boost::move(i2)); in map_test() 96 IntType i1(i/2); in map_test() local 98 new(&aux_vect3[i])IntPairType(boost::move(i1), boost::move(i2)); in map_test() 122 IntType i1(i); in map_test() local 124 new(&aux_vect[i])IntPairType(boost::move(i1), boost::move(i2)); in map_test() 132 IntType i1(i); in map_test() local 134 new(&aux_vect3[i])IntPairType(boost::move(i1), boost::move(i2)); in map_test() 177 IntType i1(i); in map_test() local [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 …]
|
/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/boost/libs/histogram/test/ |
D | utility_iterator.hpp | 12 // - boost::core::iterator; boost/pending/iterator_tests.hpp 13 // - boost::core::conversion; boost/implicit_cast.hpp 57 BOOST_TEST(v == i->foo()); in trivial_iterator_test() 76 Iterator i1(i); in input_iterator_test() local 78 BOOST_TEST(i == i1); in input_iterator_test() 79 BOOST_TEST(!(i != i1)); in input_iterator_test() 91 BOOST_TEST(*i1 == v1); in input_iterator_test() 97 ignore_unused(i1); in input_iterator_test() 99 i1 = i; in input_iterator_test() 101 BOOST_TEST(i == i1); in input_iterator_test() [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/boost/boost/pending/ |
D | iterator_tests.hpp | 17 // --i is no longer a precondition. 68 // this should be separated out into a stand-alone test since there in trivial_iterator_test() 71 BOOST_TEST(v == i->foo()); in trivial_iterator_test() 95 Iterator i1(i); in input_iterator_test() local 97 BOOST_TEST(i == i1); in input_iterator_test() 98 BOOST_TEST(!(i != i1)); in input_iterator_test() 110 BOOST_TEST(*i1 == v1); in input_iterator_test() 116 boost::ignore_unused(i1); in input_iterator_test() 118 i1 = i; in input_iterator_test() 120 BOOST_TEST(i == i1); in input_iterator_test() [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/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/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 …]
|