Searched refs:state2 (Results 1 - 25 of 33) 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.py533 state2 = base_job.job_state()
534 self.assertRaises(KeyError, state2.get, 'ns1', 'var0')
535 self.assertRaises(KeyError, state2.get, 'ns2', 'var10')
536 state2.read_from_file('transfer_file')
537 self.assertEqual(50, state2.get('ns1', 'var0'))
538 self.assertEqual(100, state2.get('ns2', 'var10'))
555 state2 = base_job.job_state()
556 state2.set_backing_file('backing_file')
557 state2.set('ns', 'var2', 'value2')
558 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/libweave/src/states/
H A Dstate_change_queue_unittest.cc44 const std::string state2 = local
49 *CreateDictionaryValue(state2)));
56 EXPECT_JSON_EQ(state2, *changes[1].changed_properties);
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DIsValidUtf8TestUtil.java243 int state2 = Utf8.partialIsValidUtf8(state1, bytes, i, j);
244 int state3 = Utf8.partialIsValidUtf8(state2, bytes, j, numBytes);
247 state1, state2, state3, i, j);
271 assertEquals(state2,
273 assertEquals(state2,
276 x.partialIsValidUtf8(state2, j, numBytes - j));
279 .partialIsValidUtf8(state2, 0, numBytes - j));
/external/curl/lib/
H A Dcurl_sasl.c266 saslstate state2 = SASL_FINAL; local
295 state2 = SASL_GSSAPI_TOKEN;
327 state2 = SASL_NTLM_TYPE2MSG;
339 state2 = SASL_OAUTH2_RESP;
363 state2 = SASL_LOGIN_PASSWD;
390 state(sasl, conn, resp ? state2 : state1);
/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/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.c1294 UInt32 state2 = kLiteralNextStates[state]; local
1297 GET_PRICE_1(p->isMatch[state2][posStateNext]) +
1298 GET_PRICE_1(p->isRep[state2]);
1306 curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext);
1365 UInt32 state2 = kRepNextStates[state]; local
1369 GET_PRICE_0(p->isMatch[state2][posStateNext]) +
1372 state2 = kLiteralNextStates[state2];
1375 GET_PRICE_1(p->isMatch[state2][posStateNext]) +
1376 GET_PRICE_1(p->isRep[state2]);
1455 UInt32 state2 = kMatchNextStates[state]; local
[all...]
/external/v8/src/crankshaft/
H A Dhydrogen-check-elimination.cc54 static State StateMerge(State state1, State state2) { argument
55 if (state1 == state2) return state1;
56 if ((state1 == CHECKED && state2 == CHECKED_STABLE) ||
57 (state2 == CHECKED && state1 == CHECKED_STABLE)) {
60 DCHECK((state1 == CHECKED_STABLE && state2 == UNCHECKED_STABLE) ||
61 (state2 == CHECKED_STABLE && state1 == UNCHECKED_STABLE));
/external/libweave/src/
H A Dcomponent_manager_unittest.cc943 auto state2 = CreateDictionaryValue(kState2); local
944 ASSERT_TRUE(manager_.SetStateProperties("comp1", *state2, nullptr));
/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.lucene_1.9.1.v20100518-1140.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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.c4143 uint32_t state2[2] = { 0, 0 }; local
4176 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 ...

Completed in 1029 milliseconds

12