HomeSort by relevance Sort by last modified time
    Searched defs:L2 (Results 51 - 70 of 70) sorted by null

1 23

  /external/opencv/cvaux/src/
cvmorphcontours.cpp 86 double L1,L2, L_min, dL;
89 L2 = sqrt( (double)P2->x*P2->x + P2->y*P2->y);
91 L_min = MIN(L1, L2);
92 dL = fabs( L1 - L2 );
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 322 WebRtc_Word16 L, L2; // samples/subframe
328 L2 = 3;
332 L2 = 4;
336 L2 = 4;
568 delta = WEBRTC_SPL_LSHIFT_W32(gains[1] - gains[0], (4 - L2));
613 delta = WEBRTC_SPL_LSHIFT_W32(gains[k+1] - gains[k], (4 - L2));
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
rate_control.cpp 172 double L1, L2, L3, bpp;
251 L2 = 0.3;
257 L2 = 0.6;
263 L2 = 1.4;
271 else if (bpp <= L2)
    [all...]
  /hardware/intel/img/psb_video/src/mrst/
lnc_hostcode.c 849 double L1, L2, L3, L4, L5, flBpp;
    [all...]
  /external/chromium_org/third_party/opus/src/src/
analysis.c 323 float L1, L2;
351 L1=L2=0;
355 L2 += tonal->E[i][b];
358 stationarity = MIN16(0.99f,L1/(float)sqrt(1e-15+NB_FRAMES*L2));
  /external/libopus/src/
analysis.c 323 float L1, L2;
351 L1=L2=0;
355 L2 += tonal->E[i][b];
358 stationarity = MIN16(0.99f,L1/(float)sqrt(1e-15+NB_FRAMES*L2));
  /external/llvm/lib/Target/AArch64/
AArch64CollectLOH.cpp 21 // L2: add xB, xA, sym@PAGEOFF
39 // - L1, L2, and L3 instructions are of the expected type, i.e.,
41 // - The result of L1 is used only by L2.
44 // - The result of L2 is used only by L3.
45 // - The base address (xB) in L3 is defined only L2.
46 // - The ADRP in L1 and the ADD in L2 must reference the same symbol using
51 // - .loh AdrpAddLdr L1, L2, L3:
53 // L2: add xB, xA, sym@PAGEOFF
55 // - .loh AdrpLdrGotLdr L1, L2, L3:
57 // L2: ldr xB, [xA, sym@GOTPAGEOFF
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/common/src/
deblock.cpp     [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 83 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
88 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ComputeTest.java 154 Long2 l2 = new Long2(); local
155 l2.x = 1;
156 l2.y = 2;
157 l2 = new Long2(1, 2);
158 assertTrue(l2.x == 1);
159 assertTrue(l2.y == 2);
584 Long2 L2 = s.get_u32_2();
585 if (L2.x != 1 || L2.y != 2) {
588 L2.x = 2
    [all...]
  /external/libpcap/
tokdefs.h 117 L2 = 335,
238 #define L2 335
grammar.c 424 L2 = 335,
545 #define L2 335
    [all...]
  /hardware/intel/img/psb_video/src/
pnw_hostcode.c     [all...]
tng_hostcode.c     [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 935 ECFieldElement L2 = two(Y1).multiply(X).multiply(dx).multiply(I).subtract(L1);
936 ECFieldElement X4 = (L2.subtract(L1)).multiply(L1.add(L2)).add(X2);
937 ECFieldElement Y4 = (X1.subtract(X4)).multiply(L2).subtract(Y1);
982 ECFieldElement L2 = X.square().multiply(I).subtract(L1);
984 ECFieldElement X4 = (L2.subtract(L1)).multiply(L1.add(L2)).add(X1);
985 ECFieldElement Y4 = (X1.subtract(X4)).multiply(L2).subtract(Y1);
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
pa-risc2.s 899 $L2
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 571 Value *L2 = LHS->getOperand(1);
574 if (decomposeBitTestICmp(LHS, LHSCC, L11, L12, L2)) {
588 if (!L2->getType()->isIntegerTy()) {
591 } else if (!match(L2, m_And(m_Value(L21), m_Value(L22)))) {
592 L21 = L2;
593 L22 = Constant::getAllOnesValue(L2->getType());
652 B = L12; C = L2;
654 B = L11; C = L2;
    [all...]
  /external/openssl/crypto/bn/asm/
pa-risc2.s 899 $L2
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 571 llvm::APInt L2 = IntLiteral2->getValue();
572 if ((BitOp->getOpcode() == BO_And && (L2 & L1) != L1) ||
573 (BitOp->getOpcode() == BO_Or && (L2 | L1) != L1)) {
674 llvm::APSInt L1, L2;
677 !Literal2->EvaluateAsInt(L2, *Context))
681 if (L1.isSigned() != L2.isSigned() || L1.getBitWidth() != L2.getBitWidth())
692 ((L1 < L2) ? L1 : L2) + llvm::APSInt(llvm::APInt(L1.getBitWidth(), 1),
694 // L2
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3con.c     [all...]

Completed in 2419 milliseconds

1 23