HomeSort by relevance Sort by last modified time
    Searched defs:D3 (Results 1 - 25 of 50) sorted by null

1 2

  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/dep3/
dep3.go 19 func D3() int {
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/dep3/
dep3.go 19 func D3() int {
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/
pointer_type.pass.cpp 30 struct D3 {
52 typedef std::unique_ptr<VT, D3> P;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/
pointer_type.pass.cpp 30 struct D3 {
52 typedef std::unique_ptr<VT, D3> P;
  /external/clang/test/SemaTemplate/
elaborated-type-specifier.cpp 7 // expected-error{{no enum named 'X' in 'PR6915::D3'}}
16 struct D3 { };
20 template class D<D3>; // expected-note{{in instantiation of}}
  /external/clang/test/CXX/special/class.inhctor/
p3.cpp 30 struct D3 : B3 { // expected-note 2{{candidate constructor}}
33 D3 fd3() { return 1; } // expected-error {{no viable conversion}}
  /external/clang/test/CXX/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/
p1.cpp 19 template<typename T> static concept bool D3 = true; // expected-error {{concept declarations may only appear in namespace scope}}
  /external/clang/test/CodeGenCXX/
homogeneous-aggregates.cpp 29 struct D3 : Base1, Base2 { // non-homogeneous aggregate
53 // PPC: define void @_Z7func_D32D3(%struct.D3* noalias sret %agg.result, [4 x i64] %x.coerce)
54 // ARM32: define arm_aapcs_vfpcc void @_Z7func_D32D3(%struct.D3* noalias sret %agg.result, [4 x i64] %x.coerce)
55 // ARM64: define void @_Z7func_D32D3(%struct.D3* noalias sret %agg.result, %struct.D3* %x)
56 D3 CC func_D3(D3 x) { return x; }
  /external/clang/test/SemaCXX/
conversion-delete-expr.cpp 54 struct D3 : A3, B3 {
57 void f3 (D3 d)
59 delete d; // expected-error {{ambiguous conversion of delete expression of type 'D3' to a pointer}}
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-frv/
fdpic3.s 79 .global D3
80 D3:
  /external/pdfium/third_party/libtiff/
tif_color.c 260 float f3 = 2-2*LumaBlue; int32 D3 = FIX(CLAMP(f3,0.0F,2.0F));
284 ycbcr->Cb_b_tab[i] = (int32)((D3*Cb + ONE_HALF)>>SHIFT);
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 67 Double3 D3 = s.get_d3();
68 if (D3.x != 1.0 || D3.y != 2.0 || D3.z != 3.0) {
71 D3.x = 2.99;
72 D3.y = 3.99;
73 D3.z = 4.99;
74 s.set_d3(D3);
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_vector.java 82 Double3 D3 = s.get_d3();
83 if (D3.x != 1.0 || D3.y != 2.0 || D3.z != 3.0) {
86 D3.x = 2.99;
87 D3.y = 3.99;
88 D3.z = 4.99;
89 s.set_d3(D3);
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_vector.java 84 Double3 D3 = s.get_d3();
85 if (D3.x != 1.0 || D3.y != 2.0 || D3.z != 3.0) {
88 D3.x = 2.99;
89 D3.y = 3.99;
90 D3.z = 4.99;
91 s.set_d3(D3);
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UT_vector.java 67 Double3 D3 = s.get_d3();
68 if (D3.x != 1.0 || D3.y != 2.0 || D3.z != 3.0) {
71 D3.x = 2.99;
72 D3.y = 3.99;
73 D3.z = 4.99;
74 s.set_d3(D3);
  /frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
UT_vector.java 67 Double3 D3 = s.get_d3();
68 if (D3.x != 1.0 || D3.y != 2.0 || D3.z != 3.0) {
71 D3.x = 2.99;
72 D3.y = 3.99;
73 D3.z = 4.99;
74 s.set_d3(D3);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
DormandPrince54StepInterpolator.java 63 private static final double D3 = -10690763975.0 / 1880347072.0;
193 v4[i] = D0 * yDot0 + D2 * yDot2 + D3 * yDot3 + D4 * yDot4 + D5 * yDot5 + D6 * yDot6;
  /external/clang/test/Analysis/
const-method-call.cpp 125 struct D3 : public B1 {
155 D3 t;
  /external/clang/test/CXX/special/class.copy/
p23-cxx11.cpp 108 struct D3 {
131 template struct CopyAssign<D3>; // expected-note {{here}}
  /external/clang/test/CXX/special/class.dtor/
p5-0x.cpp 97 struct D3 { // expected-note {{virtual destructor requires an unambiguous, accessible 'operator delete'}}
98 virtual ~D3() = default; // expected-note {{explicitly defaulted function was implicitly deleted here}}
101 } d3; // expected-error {{deleted function}} variable in typeref:struct:D3
  /external/libopus/celt/
mathops.h 225 #define D3 10204
231 return ADD16(D0, MULT16_16_Q15(frac, ADD16(D1, MULT16_16_Q15(frac, ADD16(D2 , MULT16_16_Q15(D3,frac))))));
  /external/llvm/unittests/Analysis/
LazyCallGraphTest.cpp 45 d3--d2
78 " call void @d3()\n"
114 " call void @d3()\n"
117 "define void @d3() {\n"
154 LazyCallGraph::Node &D3 = (I++)->getNode(CG);
155 EXPECT_EQ("d3", D3.getFunction().getName());
179 EXPECT_EQ("d3", Nodes[1]);
202 EXPECT_EQ("d3", D2.begin()->getFunction().getName());
203 EXPECT_EQ(D3.end(), std::next(D3.begin()))
    [all...]
  /external/pdfium/core/fdrm/crypto/
fx_crypt_aes.cpp 386 const unsigned int D3[256] = {
    [all...]
  /external/speex/libspeex/
math_approx.h 248 #define D3 1301
260 frac = ADD16(D0, MULT16_16_Q14(frac, ADD16(D1, MULT16_16_Q14(frac, ADD16(D2 , MULT16_16_Q14(D3,frac))))));
  /art/compiler/utils/arm/
constants_arm.h 66 D3 = 3,

Completed in 647 milliseconds

1 2