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

1 2 3

  /external/webrtc/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...]
  /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...]
  /device/google/contexthub/lib/nanohub/
rsa.c 23 static bool biModIterative(uint32_t *num, const uint32_t *denum, uint32_t *tmp, uint32_t *state1, uint32_t *state2, uint32_t step)
27 uint32_t bitsh = *state1, limbsh = *state2;
108 *state2 = limbsh;
168 const uint32_t* rsaPubOpIterative(struct RsaState* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP)
193 if (biModIterative(state->tmpA, c, state->tmpB, state1, state2, gigastepSubstep - RSA_LEN)) { //MOD is done
217 uint32_t state1 = 0, state2 = 0, step = 0, ns = 0; local
220 ret = rsaPubOpIterative(state, a, c, &state1, &state2, &step);
231 uint32_t state1 = 0, state2 = 0, step; local
233 for (step = 0; !biModIterative(num, denum, tmp, &state1, &state2, step); step++);
  /packages/apps/Settings/src/com/android/settings/fuelgauge/
BatteryFlagParser.java 34 public BatteryFlagParser(int accent, boolean state2, int flag) {
37 mState2 = state2;
  /external/autotest/client/common_lib/
base_job_unittest.py 533 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.read_from_file('to_be_read'
    [all...]
  /device/google/contexthub/lib/include/nanohub/
rsa.h 39 const uint32_t* rsaPubOpIterative(struct RsaState* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP);
  /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]);
  /cts/tests/tests/print/src/android/print/cts/
PrintJobTest.java 399 for (final int state2 : states) {
402 if (state1 == state2 && state2 == state3) {
407 if (knownFailures[state1][state2]
408 || knownFailures[state2][state3]) {
417 Log.i(LOG_TAG, "Test " + state1 + " -> " + state2 + " -> " + state3);
434 knownFailures[state1][state2] = true;
436 success = setState(printJob, state2);
437 assertEquals(isStateTransitionAllowed(state1, state2), success);
441 checkState(printJob, state2);
    [all...]
  /external/guice/core/test/com/google/inject/internal/
WeakKeySetTest.java 111 TestState state2 = new TestState(); local
120 set.add(key2, state2, source2);
142 // Should not be GC'd until state2 goes away.
145 state2 = null;
159 TestState state2 = new TestState(); local
168 set.add(key2, state2, source2);
187 TestState state2 = new TestState(); local
195 set.add(key2, state2, source);
217 state2 = null;
230 TestState state2 = new TestState() local
276 TestState state2 = new TestState(); local
    [all...]
  /external/libweave/src/states/
state_change_queue_unittest.cc 44 const std::string state2 = local
49 *CreateDictionaryValue(state2)));
56 EXPECT_JSON_EQ(state2, *changes[1].changed_properties);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2Collision.cpp 88 void b2GetPointStates(b2PointState state1[b2_maxManifoldPoints], b2PointState state2[b2_maxManifoldPoints],
94 state2[i] = b2_nullState;
119 state2[i] = b2_addState;
125 state2[i] = b2_persistState;
  /external/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/curl/lib/
curl_sasl.c 266 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);
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBar.aidl 31 void disable(int state1, int state2);
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/
Encoder.java 754 int state2 = Base.StateUpdateChar(state); local
759 .GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext])
760 + com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice1(_isRep[state2]);
765 int curAndLenPrice = nextRepMatchPrice + GetRepPrice(0, lenTest2, state2, posStateNext);
805 int state2 = Base.StateUpdateRep(state); local
811 .GetPrice0(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext])
814 state2 = Base.StateUpdateChar(state2);
818 .GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) + posStateNext]);
820 + com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice1(_isRep[state2]);
875 int state2 = Base.StateUpdateMatch(state); local
    [all...]
  /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...]
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/
bl.h 77 const uint32_t* (*blRsaPubOpIterative)(struct RsaState* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP);
  /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);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
TvStatusBar.java 60 public void disable(int state1, int state2, boolean animate) {

Completed in 1468 milliseconds

1 2 3