Home
last modified time | relevance | path

Searched refs:state2 (Results 1 – 10 of 10) sorted by relevance

/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DDataTruncationTest.java45 String state2 = "Data truncation"; in testDataTruncationintbooleanbooleanintint() local
46 String[] theFinalStates2 = { state2, state2, state2, state2, state2, in testDataTruncationintbooleanbooleanintint()
47 state2, state2 }; in testDataTruncationintbooleanbooleanintint()
129 String state2 = "Data truncation"; in testGetIndex() local
130 String[] theFinalStates2 = { state2, state2, state2, state2, state2, in testGetIndex()
131 state2, state2 }; in testGetIndex()
201 String state2 = "Data truncation"; in testGetParameter() local
202 String[] theFinalStates2 = { state2, state2, state2, state2, state2, in testGetParameter()
203 state2, state2 }; in testGetParameter()
273 String state2 = "Data truncation"; in testGetRead() local
[all …]
/external/opencv/cv/src/
Dcvstereogc.cpp105 static void icvInitStereoTabs( CvStereoGCState2* state2 ) in icvInitStereoTabs() argument
107 int i, K = state2->K; in icvInitStereoTabs()
110 state2->dataCostFuncTab[i] = MIN(i*DENOMINATOR - K, 0); in icvInitStereoTabs()
113 state2->smoothnessR[i] = MIN(abs(i-CUTOFF), state2->interactionRadius); in icvInitStereoTabs()
118state2->smoothnessGrayDiff[i] = diff < state2->Ithreshold ? state2->lambda1 : state2->lambda2; in icvInitStereoTabs()
525 static int64 icvComputeEnergy( const CvStereoGCState* state, const CvStereoGCState2* state2, in icvComputeEnergy() argument
530 const int* dtab = state2->dataCostFuncTab; in icvComputeEnergy()
531 int maxR = state2->interactionRadius; in icvComputeEnergy()
532 const int* stabR = state2->smoothnessR + CUTOFF; in icvComputeEnergy()
533 const int* stabI = state2->smoothnessGrayDiff + 255; in icvComputeEnergy()
[all …]
/external/webrtc/src/common_audio/signal_processing/
Dresample_by_2.c76 register WebRtc_Word32 state2 = filtState[2]; in WebRtcSpl_DownsampleBy2() local
89 diff = tmp1 - state2; in WebRtcSpl_DownsampleBy2()
93 state3 = MUL_ACCUM_2(kResampleAllpass2[2], diff, state2); in WebRtcSpl_DownsampleBy2()
94 state2 = tmp2; in WebRtcSpl_DownsampleBy2()
117 filtState[2] = state2; in WebRtcSpl_DownsampleBy2()
133 register WebRtc_Word32 state2 = filtState[2]; in WebRtcSpl_UpsampleBy2() local
146 diff = tmp1 - state2; in WebRtcSpl_UpsampleBy2()
150 state3 = MUL_ACCUM_2(kResampleAllpass1[2], diff, state2); in WebRtcSpl_UpsampleBy2()
151 state2 = tmp2; in WebRtcSpl_UpsampleBy2()
175 filtState[2] = state2; in WebRtcSpl_UpsampleBy2()
/external/aac/libSBRenc/src/
Dresampler.cpp391 FIXP_BQS state1, state2, state1b, state2b; in AdvanceFilter() local
394 state2 = states[0][s2]; in AdvanceFilter()
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]); in AdvanceFilter()
418 state2 = state2b; in AdvanceFilter()
433 FIXP_BQS state1, state2; in AdvanceFilter()
438 state2 = states[i][s2]; in AdvanceFilter()
440 state0 = input - fMult(state1, coeff[A1]) - fMult(state2, coeff[A2]); in AdvanceFilter()
441 y = state0 + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]); in AdvanceFilter()
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
DMD5.java41 private int state0, state1, state2, state3; field in MD5
91 int c = state2; in transform()
175 state2 += c; in transform()
185 state2 = 0x98badcfe; in reset()
256 encode(dst, pos + 8, state2); in digest()
/external/quake/quake/src/WinQuake/
Dnet_main.cpp728 qboolean state2 [MAX_SCOREBOARD]; in NET_SendToAll() local
740 state2[i] = true; in NET_SendToAll()
745 state2[i] = false; in NET_SendToAll()
750 state2[i] = true; in NET_SendToAll()
775 if (! state2[i]) in NET_SendToAll()
779 state2[i] = true; in NET_SendToAll()
/external/chromium/chrome/browser/tab_contents/
Dweb_contents_unittest.cc1366 TestInterstitialPage::InterstitialState state2 = in TEST_F() local
1371 new TestInterstitialPage(contents(), true, url2, &state2, &deleted2); in TEST_F()
1382 EXPECT_EQ(TestInterstitialPage::UNDECIDED, state2); in TEST_F()
1422 TestInterstitialPage::InterstitialState state2 = in TEST_F() local
1427 new TestInterstitialPage(contents(), true, url2, &state2, &deleted2); in TEST_F()
1437 EXPECT_EQ(TestInterstitialPage::UNDECIDED, state2); in TEST_F()
1497 TestInterstitialPage::InterstitialState state2 = in TEST_F() local
1502 &state2, &deleted2); in TEST_F()
1512 EXPECT_EQ(TestInterstitialPage::UNDECIDED, state2); in TEST_F()
1573 TestInterstitialPage::InterstitialState state2 = in TEST_F() local
[all …]
/external/hyphenation/
Dhyphen.c196 hnj_add_trans (HyphenDict *dict, int state1, int state2, char ch) in hnj_add_trans() argument
212 dict->states[state1].trans[num_trans].new_state = state2; in hnj_add_trans()
/external/libxml2/
Drelaxng.c668 xmlRelaxNGValidStatePtr state2);
1346 xmlRelaxNGValidStatePtr state2) in xmlRelaxNGEqualValidState() argument
1350 if ((state1 == NULL) || (state2 == NULL)) in xmlRelaxNGEqualValidState()
1352 if (state1 == state2) in xmlRelaxNGEqualValidState()
1354 if (state1->node != state2->node) in xmlRelaxNGEqualValidState()
1356 if (state1->seq != state2->seq) in xmlRelaxNGEqualValidState()
1358 if (state1->nbAttrLeft != state2->nbAttrLeft) in xmlRelaxNGEqualValidState()
1360 if (state1->nbAttrs != state2->nbAttrs) in xmlRelaxNGEqualValidState()
1362 if (state1->endvalue != state2->endvalue) in xmlRelaxNGEqualValidState()
1364 if ((state1->value != state2->value) && in xmlRelaxNGEqualValidState()
[all …]
/external/icu4c/test/cintltst/
Dcmsccoll.c5450 uint32_t state2[2] = { 0, 0 }; in TestHiragana() local
5483 keySize2 = ucol_nextSortKeyPart(ucol, &uiter2, state2, sortKey2, SORTKEYLEN, &status); in TestHiragana()