HomeSort by relevance Sort by last modified time
    Searched refs:state2 (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/
resample_by_2_mips.c 40 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...]
resample_by_2.c 77 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/
DataTruncationTest.java 45 String state2 = "Data truncation"; local
46 String[] theFinalStates2 = { state2, state2, state2, state2, state2,
47 state2, state2 };
128 String state2 = "Data truncation"; local
129 String[] theFinalStates2 = { state2, state2, state2, state2, state2
200 String state2 = "Data truncation"; local
272 String state2 = "Data truncation"; local
344 String state2 = "Data truncation"; local
416 String state2 = "Data truncation"; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample_by_2.c 76 register WebRtc_Word32 state2 = filtState[2]; local
89 diff = tmp1 - state2;
93 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2);
94 state2 = tmp2;
117 filtState[2] = state2;
133 register WebRtc_Word32 state2 = filtState[2]; local
146 diff = tmp1 - state2;
150 state3 = MUL_ACCUM_2(kResampleAllpass1[2], diff, state2);
151 state2 = tmp2;
175 filtState[2] = state2;
    [all...]
  /cts/tests/tests/util/src/android/util/cts/
StateSetTest.java 166 int state2; local
169 state2 = 1;
170 assertFalse(StateSet.stateSetMatches(stateSpec9, state2));
172 state2 = 2;
173 assertTrue(StateSet.stateSetMatches(stateSpec9, state2));
176 assertTrue(StateSet.stateSetMatches(stateSpec9, state2));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_impl.hpp 69 typedef typename apply2< ForwardOp,state1,iter1 >::type state2; typedef in struct:boost::mpl::aux::iter_fold_impl
73 typedef state2 state;
89 typedef typename apply2< ForwardOp,state1,iter1 >::type state2; typedef in struct:boost::mpl::aux::iter_fold_impl
91 typedef typename apply2< ForwardOp,state2,iter2 >::type state3;
111 typedef typename apply2< ForwardOp,state1,iter1 >::type state2; typedef in struct:boost::mpl::aux::iter_fold_impl
113 typedef typename apply2< ForwardOp,state2,iter2 >::type state3;
fold_impl.hpp 69 typedef typename apply2< ForwardOp, state1, typename deref<iter1>::type >::type state2; typedef in struct:boost::mpl::aux::fold_impl
73 typedef state2 state;
89 typedef typename apply2< ForwardOp, state1, typename deref<iter1>::type >::type state2; typedef in struct:boost::mpl::aux::fold_impl
91 typedef typename apply2< ForwardOp, state2, typename deref<iter2>::type >::type state3;
111 typedef typename apply2< ForwardOp, state1, typename deref<iter1>::type >::type state2; typedef in struct:boost::mpl::aux::fold_impl
113 typedef typename apply2< ForwardOp, state2, typename deref<iter2>::type >::type state3;
  /external/opencv/cv/src/
cvstereogc.cpp 105 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,
844 CvStereoGCState2 state2; local
    [all...]
  /external/aac/libSBRenc/src/
resampler.cpp 391 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/chromium_org/net/http/
disk_cache_based_quic_server_info_unittest.cc 176 QuicServerInfo::State* state2 = quic_server_info2->mutable_state(); local
177 EXPECT_TRUE(state2->certs.empty());
183 state2->server_config = server_config_b;
184 state2->source_address_token = source_address_token_b;
185 state2->server_config_sig = server_config_sig_b;
186 state2->certs.push_back(cert_b);
  /external/chromium_org/third_party/protobuf/java/src/test/java/com/google/protobuf/
IsValidUtf8TestUtil.java 243 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/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 854 int state2 = Base.StateUpdateChar(state); local
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); local
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]);
989 int state2 = Base.StateUpdateMatch(state); local
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 854 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.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice1();
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_code.h 98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.h 98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
pubsubstateclient.h 173 virtual bool StatesEqual(const C& state1, const C& state2) {
174 return state1 == state2;
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 1281 UInt32 state2 = kLiteralNextStates[state]; local
1352 UInt32 state2 = kRepNextStates[state]; local
1442 UInt32 state2 = kMatchNextStates[state]; local
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 1282 UInt32 state2 = kLiteralNextStates[state]; local
1353 UInt32 state2 = kRepNextStates[state]; local
1443 UInt32 state2 = kMatchNextStates[state]; local
    [all...]
  /external/lzma/C/
LzmaEnc.c 1281 UInt32 state2 = kLiteralNextStates[state]; local
1352 UInt32 state2 = kRepNextStates[state]; local
1442 UInt32 state2 = kMatchNextStates[state]; local
    [all...]
  /external/chromium_org/chrome/browser/ui/fullscreen/
fullscreen_controller_state_unittest.cc 397 State state2 = static_cast<State>(state2_int); local
399 ShouldSkipStateAndEventPair(state2, EVENT_INVALID))
402 if (NextTransitionInShortestPath(state1, state2, NUM_STATES).state ==
405 << GetStateString(state1) << " " << GetStateString(state2);
    [all...]
fullscreen_controller_state_test.cc 808 State state2 = static_cast<State>(state2_int); local
    [all...]
  /external/chromium_org/v8/src/
hydrogen-check-elimination.cc 54 static State StateMerge(State state1, State state2) {
55 if (state1 == state2) return state1;
56 if ((state1 == CHECKED && state2 == CHECKED_STABLE) ||
57 (state2 == CHECKED && state1 == CHECKED_STABLE)) {
60 ASSERT((state1 == CHECKED_STABLE && state2 == UNCHECKED_STABLE) ||
61 (state2 == CHECKED_STABLE && state1 == UNCHECKED_STABLE));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_random.py 26 state2 = self.gen.getstate()
27 self.assertNotEqual(state1, state2)
50 state2 = self.gen.getstate() # s/b distinct from state1
51 self.assertNotEqual(state1, state2)
53 state3 = self.gen.getstate() # s/b distinct from state2
54 self.assertNotEqual(state2, state3)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_random.py 26 state2 = self.gen.getstate()
27 self.assertNotEqual(state1, state2)
50 state2 = self.gen.getstate() # s/b distinct from state1
51 self.assertNotEqual(state1, state2)
53 state3 = self.gen.getstate() # s/b distinct from state2
54 self.assertNotEqual(state2, state3)
  /external/chromium_org/content/browser/web_contents/
web_contents_impl_unittest.cc 1957 TestInterstitialPage::InterstitialState state2 = local
2016 TestInterstitialPage::InterstitialState state2 = local
2096 TestInterstitialPage::InterstitialState state2 = local
2177 TestInterstitialPage::InterstitialState state2 = local
    [all...]

Completed in 997 milliseconds

1 2