Searched refs:state2 (Results 1 - 25 of 28) sorted by relevance

12

/external/webrtc/webrtc/common_audio/signal_processing/
H A Dresample_by_2_mips.c40 register int32_t state2 = filtState[2]; local
94 "subu %[diff1], %[tmp11], %[state2] \n\t"
111 [state2] "+r" (state2),
129 "addu %[state3], %[state2], %[state3] \n\t"
132 "addiu %[state2], %[tmp21], 0 \n\t"
140 [state2] "+r" (state2), [diff2] "=&r" (diff2),
160 diff = tmp1 - state2;
164 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2);
[all...]
H A Dresample_by_2.c77 register int32_t state2 = filtState[2]; local
90 diff = tmp1 - state2;
94 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2);
95 state2 = tmp2;
118 filtState[2] = state2;
135 register int32_t state2 = filtState[2]; local
148 diff = tmp1 - state2;
152 state3 = MUL_ACCUM_2(kResampleAllpass1[2], diff, state2);
153 state2 = tmp2;
177 filtState[2] = state2;
[all...]
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDataTruncationTest.java45 String state2 = "Data truncation";
46 String[] theFinalStates2 = { state2, state2, state2, state2, state2,
47 state2, state2 };
128 String state2 = "Data truncation";
129 String[] theFinalStates2 = { state2, state
[all...]
/external/opencv/cv/src/
H A Dcvstereogc.cpp105 static void icvInitStereoTabs( CvStereoGCState2* state2 )
107 int i, K = state2->K;
110 state2->dataCostFuncTab[i] = MIN(i*DENOMINATOR - K, 0);
113 state2->smoothnessR[i] = MIN(abs(i-CUTOFF), state2->interactionRadius);
118 state2->smoothnessGrayDiff[i] = diff < state2->Ithreshold ? state2->lambda1 : state2->lambda2;
525 static int64 icvComputeEnergy( const CvStereoGCState* state, const CvStereoGCState2* state2, argument
844 CvStereoGCState2 state2; local
[all...]
/external/autotest/client/common_lib/
H A Dbase_job_unittest.py539 state2 = base_job.job_state()
540 self.assertRaises(KeyError, state2.get, 'ns1', 'var0')
541 self.assertRaises(KeyError, state2.get, 'ns2', 'var10')
542 state2.read_from_file('transfer_file')
543 self.assertEqual(50, state2.get('ns1', 'var0'))
544 self.assertEqual(100, state2.get('ns2', 'var10'))
561 state2 = base_job.job_state()
562 state2.set_backing_file('backing_file')
563 state2.set('ns', 'var2', 'value2')
564 state2
[all...]
/external/aac/libSBRenc/src/
H A Dresampler.cpp391 FIXP_BQS state1, state2, state1b, state2b; local
394 state2 = states[0][s2];
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
418 state2 = state2b;
433 FIXP_BQS state1, state2; local
438 state2 = states[i][s2];
440 state0 = input - fMult(state1, coeff[A1]) - fMult(state2, coeff[A2]);
441 y = state0 + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
/external/guice/core/test/com/google/inject/internal/
H A DWeakKeySetTest.java111 TestState state2 = new TestState();
120 set.add(key2, state2, source2);
142 // Should not be GC'd until state2 goes away.
145 state2 = null;
159 TestState state2 = new TestState();
168 set.add(key2, state2, source2);
187 TestState state2 = new TestState();
195 set.add(key2, state2, source);
217 state2 = null;
230 TestState state2
[all...]
/external/protobuf/java/core/src/test/java/com/google/protobuf/
H A DIsValidUtf8TestUtil.java286 int state2 = Utf8.partialIsValidUtf8(state1, bytes, i, j);
287 int state3 = Utf8.partialIsValidUtf8(state2, bytes, j, numBytes);
289 System.out.printf("state=%04x %04x %04x i=%d j=%d%n", state1, state2, state3, i, j);
307 assertEquals(state2, x.partialIsValidUtf8(state1, i, j - i));
308 assertEquals(state2, x.substring(i, j).partialIsValidUtf8(state1, 0, j - i));
309 assertEquals(state3, x.partialIsValidUtf8(state2, j, numBytes - j));
310 assertEquals(state3, x.substring(j, numBytes).partialIsValidUtf8(state2, 0, numBytes - j));
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs854 Base.State state2 = state;
855 state2.UpdateChar();
858 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice1() +
859 _isRep[state2.Index].GetPrice1();
865 0, lenTest2, state2, posStateNext);
914 Base.State state2 = state;
915 state2.UpdateRep();
919 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice0() +
924 state2.UpdateChar();
926 UInt32 nextMatchPrice = curAndLenCharPrice + _isMatch[(state2
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java854 int state2 = Base.StateUpdateChar(state);
858 SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]) +
859 SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state2]);
865 0, lenTest2, state2, posStateNext);
914 int state2 = Base.StateUpdateRep(state);
919 SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]) +
924 state2 = Base.StateUpdateChar(state2);
926 int nextMatchPrice = curAndLenCharPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]);
927 int nextRepMatchPrice = nextMatchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state2]);
[all...]
/external/curl/lib/
H A Dcurl_sasl.c264 saslstate state2 = SASL_FINAL; local
297 state2 = SASL_GSSAPI_TOKEN;
330 state2 = SASL_NTLM_TYPE2MSG;
342 state2 = SASL_OAUTH2_RESP;
366 state2 = SASL_LOGIN_PASSWD;
393 state(sasl, conn, resp ? state2 : state1);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.h98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
/external/webrtc/webrtc/libjingle/xmpp/
H A Dpubsubstateclient.h156 virtual bool StatesEqual(const C& state1, const C& state2) { argument
157 return state1 == state2;
H A Dhangoutpubsubclient.cc99 virtual bool StatesEqual(const bool& state1, const bool& state2) { argument
/external/lzma/C/
H A DLzmaEnc.c1344 UInt32 state2 = kLiteralNextStates[state]; local
1347 GET_PRICE_1(p->isMatch[state2][posStateNext]) +
1348 GET_PRICE_1(p->isRep[state2]);
1356 curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext);
1415 UInt32 state2 = kRepNextStates[state]; local
1419 GET_PRICE_0(p->isMatch[state2][posStateNext]) +
1422 state2 = kLiteralNextStates[state2];
1425 GET_PRICE_1(p->isMatch[state2][posStateNext]) +
1426 GET_PRICE_1(p->isRep[state2]);
1507 UInt32 state2 = kMatchNextStates[state]; local
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-check-elimination.cc55 static State StateMerge(State state1, State state2) { argument
56 if (state1 == state2) return state1;
57 if ((state1 == CHECKED && state2 == CHECKED_STABLE) ||
58 (state2 == CHECKED && state1 == CHECKED_STABLE)) {
61 DCHECK((state1 == CHECKED_STABLE && state2 == UNCHECKED_STABLE) ||
62 (state2 == CHECKED_STABLE && state1 == UNCHECKED_STABLE));
/external/python/cpython2/Lib/test/
H A Dtest_random.py24 state2 = self.gen.getstate()
25 self.assertNotEqual(state1, state2)
48 state2 = self.gen.getstate() # s/b distinct from state1
49 self.assertNotEqual(state1, state2)
51 state3 = self.gen.getstate() # s/b distinct from state2
52 self.assertNotEqual(state2, state3)
/external/fio/
H A Dstat.c557 int state2 = BLOCK_INFO_STATE(block2); local
559 int bscat2 = block_state_category(state2);
573 if (state1 < state2)
575 if (state1 > state2)
/external/libxml2/
H A Drelaxng.c669 xmlRelaxNGValidStatePtr state2);
1338 * @state2: a validation state
1347 xmlRelaxNGValidStatePtr state2)
1351 if ((state1 == NULL) || (state2 == NULL))
1353 if (state1 == state2)
1355 if (state1->node != state2->node)
1357 if (state1->seq != state2->seq)
1359 if (state1->nbAttrLeft != state2->nbAttrLeft)
1361 if (state1->nbAttrs != state2->nbAttrs)
1363 if (state1->endvalue != state2
1345 xmlRelaxNGEqualValidState(xmlRelaxNGValidCtxtPtr ctxt ATTRIBUTE_UNUSED, xmlRelaxNGValidStatePtr state1, xmlRelaxNGValidStatePtr state2) argument
[all...]
/external/testng/ant/3rdparty/
H A Dcobertura.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sourceforge/ net/sourceforge/cobertura/ net/sourceforge/cobertura/ant/ ...
/external/guice/extensions/persist/lib/
H A Dognl-2.6.7.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/ASTAdd.class ASTAdd.java package ognl ...
/external/icu/icu4c/source/test/cintltst/
H A Dcmsccoll.c4142 uint32_t state2[2] = { 0, 0 }; local
4175 keySize2 = ucol_nextSortKeyPart(ucol, &uiter2, state2, sortKey2, SORTKEYLEN, &status);
/external/guice/extensions/struts2/lib/
H A Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/internal/ ognl/SimpleNode.class SimpleNode ...
H A Djsp-api-2.1.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/servlet/ javax/servlet/jsp/ javax/servlet/jsp/resources/ ...
/external/icu/tools/srcgen/currysrc/libs/
H A Dorg.eclipse.core.resources_3.10.0.v20150423-0755.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSE_.SF META-INF/ECLIPSE_.RSA META ...

Completed in 1109 milliseconds

12