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

1 2

  /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);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
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;
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;
  /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++);
  /external/webrtc/webrtc/common_audio/signal_processing/
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...]
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...]
  /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));
  /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);
  /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/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/libweave/src/
component_manager_unittest.cc 943 auto state2 = CreateDictionaryValue(kState2); local
944 ASSERT_TRUE(manager_.SetStateProperties("comp1", *state2, nullptr));
    [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/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/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/C/
LzmaEnc.c 1294 UInt32 state2 = kLiteralNextStates[state]; local
1365 UInt32 state2 = kRepNextStates[state]; local
1455 UInt32 state2 = kMatchNextStates[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/icu/icu4c/source/test/cintltst/
cmsccoll.c 4143 uint32_t state2[2] = { 0, 0 }; local
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/
cssparser-0.9.13.jar 
  /external/testng/ant/3rdparty/
cobertura.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 
org.apache.lucene_1.9.1.v20100518-1140.jar 
  /external/guice/extensions/persist/lib/
ognl-2.6.7.jar 
  /external/guice/extensions/struts2/lib/
ognl-3.0.jar 
jsp-api-2.1.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 1629 milliseconds

1 2