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

1 2

  /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]);
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBar.aidl 29 void disable(int state1, int state2);
  /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/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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
CommandQueue.java 89 public void disable(int state1, int state2, boolean animate);
135 public void disable(int state1, int state2) {
138 mHandler.obtainMessage(MSG_DISABLE, state1, state2, null).sendToTarget();
  /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 62 public void disable(int state1, int state2, boolean animate) {
  /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/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 DCHECK((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)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewManager.java     [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTokenManager.java 102 private final void jjCheckNAddTwoStates(int state1, int state2)
105 jjCheckNAdd(state2);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java 93 private final void jjCheckNAddTwoStates(int state1, int state2)
96 jjCheckNAdd(state2);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParserTokenManager.java 280 private final void jjCheckNAddTwoStates(int state1, int state2)
283 jjCheckNAdd(state2);
  /packages/services/Telephony/src/org/apache/james/mime4j/field/address/parser/
AddressListParserTokenManager.java 102 private final void jjCheckNAddTwoStates(int state1, int state2)
105 jjCheckNAdd(state2);
  /packages/services/Telephony/src/org/apache/james/mime4j/field/contenttype/parser/
ContentTypeParserTokenManager.java 93 private final void jjCheckNAddTwoStates(int state1, int state2)
96 jjCheckNAdd(state2);
  /packages/services/Telephony/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParserTokenManager.java 280 private final void jjCheckNAddTwoStates(int state1, int state2)
283 jjCheckNAdd(state2);

Completed in 782 milliseconds

1 2