HomeSort by relevance Sort by last modified time
    Searched defs:e2 (Results 151 - 175 of 851) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/eigen/Eigen/src/Eigenvalues/
SelfAdjointEigenSolver.h 743 // RealScalar e2 = numext::abs2(subdiag[end-1]);
744 // RealScalar mu = diag[end] - e2 / (td + (td>0 ? 1 : -1) * sqrt(td*td + e2));
751 RealScalar e2 = numext::abs2(subdiag[end-1]); local
753 if(e2==0) mu -= (e / (td + (td>0 ? 1 : -1))) * (e / h);
754 else mu -= e2 / (td + (td>0 ? h : -h));
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fmparse.cpp 279 CXFA_FMSimpleExpression *e1 = 0, *e2 = 0; local
287 e2 = ParseLogicalAndExpression();
289 e1 = new CXFA_FMLogicalOrExpression(line, TOKor, e1, e2);
303 CXFA_FMSimpleExpression *e1 = 0, *e2 = 0; local
311 e2 = ParseEqualityExpression();
313 e1 = new CXFA_FMLogicalAndExpression(line, TOKand, e1, e2);
327 CXFA_FMSimpleExpression *e1 = 0, *e2 = 0; local
335 e2 = ParseRelationalExpression();
337 e1 = new CXFA_FMEqualityExpression(line, TOKeq, e1, e2);
346 e2 = ParseRelationalExpression();
362 CXFA_FMSimpleExpression *e1 = 0, *e2 = 0; local
419 CXFA_FMSimpleExpression *e1 = 0, *e2 = 0; local
452 CXFA_FMSimpleExpression *e1 = 0, *e2 = 0; local
    [all...]
  /external/skia/src/animator/
SkDrawExtraPathEffect.cpp 383 SkPathEffect* e2 = effect2->getPathEffect(); local
384 SkPathEffect* composite = SkComposePathEffect::Create(e1, e2);
386 e2->unref();
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
bandwidth_estimator.c 614 float e1, e2; local
685 e2 = weight * ptrQuantizationTable[maxInd] + r;
687 e2 = (e2 > 0)? e2:-e2;
688 if(e1 < e2)
  /frameworks/av/media/libeffects/factory/
EffectsFactory.c 346 list_elem_t *e2; local
356 e2 = NULL;
359 if (e2) {
360 e2->next = e1->next;
368 e2 = e1;
  /system/core/libutils/
Unicode.cpp 314 const char16_t* e2 = s2+n2; local
316 while (s1 < e1 && s2 < e2) {
333 const char16_t* e2 = s2N+n2; local
335 while (s1H < e1 && s2N < e2) {
  /toolchain/binutils/binutils-2.25/bfd/
elf32-mep.c 247 int e2, e4;
251 e2 = 0;
256 e2 = 1;
293 byte[0^e2] = ((u >> 8) & 0xff);
294 byte[1^e2] = (u & 0xff);
304 byte[1^e2] = (byte[1^e2] & 0x01) | (s & 0xfe);
308 byte[0^e2] = (byte[0^e2] & 0xf0) | ((s >> 8) & 0x0f);
309 byte[1^e2] = (byte[1^e2] & 0x01) | (s & 0xfe)
244 int e2, e4; local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoDecoder.java 506 LocalEntry e2 = decodedLocals.get(j); local
507 if (e2.address != 0) {
510 if ((entry.reg == e2.reg) && e2.isStart) {
511 decodedLocals.set(i, e2);
  /external/aac/libAACenc/src/
aacenc_tns.cpp 1067 INT i, e1, e2, gaussExp_e; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/xslt/
EnvironmentCheck.java 483 catch (Exception e2)
485 System.err.println("appendEnvironmentReport threw: " + e2.toString());
486 e2.printStackTrace();
885 catch (Exception e2)
905 catch (Exception e2)
    [all...]
  /external/clang/test/CodeGenCXX/
catch-undef-behavior.cpp 175 enum E2 { e2a = -1, e2b = 64 } e2; variable in typeref:enum:E2
187 // CHECK: %[[E2:.*]] = and i1 %[[E2HI]], %[[E2LO]]
188 // CHECK: br i1 %[[E2]]
190 int b = e2;
212 // CHECK: %[[E2:.*]] = icmp eq i64 %[[MISALIGN]], 0
213 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
232 // CHECK: %[[E2:.*]] = icmp uge i64 %[[SIZE]], 24
237 // CHECK: %[[E12:.*]] = and i1 %[[E1]], %[[E2]]
temporaries.cpp 727 E e2 = { A(), B(), D().c }; member in namespace:MultipleExtension
759 E e2 = { A(), B(), D().c }; local
760 // CHECK: %[[TEMPE2_A:.*]] = getelementptr inbounds {{.*}} %[[E2:.*]], i32 0, i32 0
763 // CHECK: %[[TEMPE2_B:.*]] = getelementptr inbounds {{.*}} %[[E2]], i32 0, i32 1
765 // CHECK: %[[TEMPE2_C:.*]] = getelementptr inbounds {{.*}} %[[E2]], i32 0, i32 2
773 // CHECK: call void @[[NS]]1ED1Ev({{.*}} %[[E2]])
  /external/clang/test/SemaCXX/
conditional-expr.cpp 152 // "the type [it] woud have if E2 were converted to an rvalue"
335 Enum e2 = false ? v2 : v; local
enum-scoped.cpp 7 enum struct E2 {
16 static_assert(sizeof(E2) == sizeof(int), "bad size");
17 static_assert(sizeof(E2::Val1) == sizeof(int), "bad size");
19 E1 v3 = E2::Val1; // expected-error{{cannot initialize a variable}}
41 e2 = 2147483647, // ok member in class:E1::E2::E4
47 e2 // expected-error{{2147483648 is not representable in the underlying}}
51 e1 = false, e2 = true, member in class:E1::E2::E4::E6
56 e1 = false, e2 = true,
63 e1, e2, member in struct:E1::E2::E4::X
260 enum class E2 : T
    [all...]
  /external/gmock/test/
gmock-spec-builders_test.cc 1405 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1435 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1455 const Expectation e2; local
1498 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1557 const Expectation e2 = EXPECT_CALL(b, DoB()) local
1576 Expectation e2 = EXPECT_CALL(b, DoB()) local
1598 Expectation e2 = EXPECT_CALL(b, DoB()) local
1680 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1697 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1722 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1743 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-spec-builders_test.cc 1371 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1401 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1421 const Expectation e2; local
1464 Expectation e2 = EXPECT_CALL(a, DoA(1)); local
1523 const Expectation e2 = EXPECT_CALL(b, DoB()) local
1539 Expectation e2 = EXPECT_CALL(b, DoB()) local
1605 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1622 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1641 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
1661 Expectation e2 = EXPECT_CALL(a, DoA(2)); local
    [all...]
  /external/opencv3/modules/features2d/src/
evaluation.cpp 271 float e2 = (float)(ellipse2[0]*rx2*rx2 + 2*ellipse2[1]*rx2*ry2 + ellipse2[2]*ry2*ry2); local
273 if( e1<1 && e2<1 ) temp_bna++;
274 if( e1<1 || e2<1 ) temp_bua++;
  /external/skia/src/pathops/
SkOpCoincidence.cpp 335 SkOpPtT* e2 = overE->find(seg2); local
336 if (!s2->starter(e2)->span()->upCast()->windValue()) {
338 e2 = overE->find(seg2o);
339 if (!s2->starter(e2)->span()->upCast()->windValue()) {
348 SkTSwap(s2, e2);
350 this->add(s1, e1, s2, e2, allocator);
  /external/vboot_reference/tests/
cgptlib_test.c 682 GptEntry *e2 = (GptEntry *)(gpt->secondary_entries); local
687 EXPECT(0 == CheckEntries(e2, h1));
691 EXPECT(GPT_ERROR_CRC_CORRUPTED == CheckEntries(e2, h1));
967 /* Test cross-correction (h1+e2, h2+e1) */
993 * Test mismatched pairs (h1+e1 valid, h2+e2 valid but different. This
1226 GptEntry *e2 = (GptEntry *)(gpt->secondary_entries); local
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Arrays.java 4272 Object e2 = a2[i]; local
    [all...]
  /ndk/sources/android/support/src/stdio/
vfprintf.c 235 int e2=0, e, i, j, l; local
260 y = frexpl(y, &e2) * 2;
261 if (y) e2--;
286 estr=fmt_u(e2<0 ? -e2 : e2, ebuf);
288 *--estr = (e2<0 ? '-' : '+');
315 if (y) y *= 0x1p28, e2-=28;
317 if (e2<0) a=r=z=big;
325 while (e2>0)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-launcher.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant-launcher/1.7.0/
ant-launcher-1.7.0.jar 
  /art/compiler/optimizing/
code_generator.h 766 HEnvironment* e2 = i2->GetEnvironment(); local
767 if (e1->GetParent() != e2->GetParent() || e1->Size() != e2->Size()) {
771 if (e1->GetInstructionAt(i) != e2->GetInstructionAt(i) ||
772 !e1->GetLocationAt(i).Equals(e2->GetLocationAt(i))) {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeySourceScript.java 456 MonkeyMotionEvent e2 = new MonkeyTouchEvent(MotionEvent.ACTION_UP) local
460 mQ.addLast(e2);
481 MonkeyWaitEvent e2 = new MonkeyWaitEvent(pressDuration); local
487 mQ.addLast(e2);
488 mQ.addLast(e2);
    [all...]

Completed in 936 milliseconds

1 2 3 4 5 67 8 91011>>