/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/ |
D | DataTruncationTest.java | 45 String state2 = "Data truncation"; in testDataTruncationintbooleanbooleanintint() local 46 String[] theFinalStates2 = { state2, state2, state2, state2, state2, in testDataTruncationintbooleanbooleanintint() 47 state2, state2 }; in testDataTruncationintbooleanbooleanintint() 128 String state2 = "Data truncation"; in testGetIndex() local 129 String[] theFinalStates2 = { state2, state2, state2, state2, state2, in testGetIndex() 130 state2, state2 }; in testGetIndex() 200 String state2 = "Data truncation"; in testGetParameter() local 201 String[] theFinalStates2 = { state2, state2, state2, state2, state2, in testGetParameter() 202 state2, state2 }; in testGetParameter() 272 String state2 = "Data truncation"; in testGetRead() local [all …]
|
/external/opencv/cv/src/ |
D | cvstereogc.cpp | 105 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() 118 … state2->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/ |
D | resample_by_2.c | 76 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/ |
D | resampler.cpp | 391 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/protobuf/java/src/test/java/com/google/protobuf/ |
D | 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/ |
D | Encoder.java | 854 int state2 = Base.StateUpdateChar(state); in GetOptimum() local 858 …SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state2 << Base.kNumPosStatesBitsMax) +… in GetOptimum() 859 SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state2]); in GetOptimum() 865 0, lenTest2, state2, posStateNext); in GetOptimum() 914 int state2 = Base.StateUpdateRep(state); in GetOptimum() local 919 …SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isMatch[(state2 << Base.kNumPosStatesBitsMax) +… in GetOptimum() 924 state2 = Base.StateUpdateChar(state2); in GetOptimum() 926 …nCharPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state2 << Base.kNumPosSta… in GetOptimum() 927 …RepMatchPrice = nextMatchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state2]); in GetOptimum() 934 int curAndLenPrice = nextRepMatchPrice + GetRepPrice(0, lenTest2, state2, posStateNext); in GetOptimum() [all …]
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 854 Base.State state2 = state; in GetOptimum() 855 state2.UpdateChar(); in GetOptimum() 858 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice1() + in GetOptimum() 859 _isRep[state2.Index].GetPrice1(); in GetOptimum() 865 0, lenTest2, state2, posStateNext); in GetOptimum() 914 Base.State state2 = state; in GetOptimum() 915 state2.UpdateRep(); in GetOptimum() 919 _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) + posStateNext].GetPrice0() + in GetOptimum() 924 state2.UpdateChar(); in GetOptimum() 926 …UInt32 nextMatchPrice = curAndLenCharPrice + _isMatch[(state2.Index << Base.kNumPosStatesBitsMax) … in GetOptimum() [all …]
|
/external/lzma/C/ |
D | LzmaEnc.c | 1281 UInt32 state2 = kLiteralNextStates[state]; in GetOptimum() local 1284 GET_PRICE_1(p->isMatch[state2][posStateNext]) + in GetOptimum() 1285 GET_PRICE_1(p->isRep[state2]); in GetOptimum() 1293 curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext); in GetOptimum() 1352 UInt32 state2 = kRepNextStates[state]; in GetOptimum() local 1356 GET_PRICE_0(p->isMatch[state2][posStateNext]) + in GetOptimum() 1359 state2 = kLiteralNextStates[state2]; in GetOptimum() 1362 GET_PRICE_1(p->isMatch[state2][posStateNext]) + in GetOptimum() 1363 GET_PRICE_1(p->isRep[state2]); in GetOptimum() 1372 … curAndLenPrice = nextRepMatchPrice + GetRepPrice(p, 0, lenTest2, state2, posStateNext); in GetOptimum() [all …]
|
/external/v8/src/ |
D | hydrogen-check-elimination.cc | 54 static State StateMerge(State state1, State state2) { in StateMerge() 55 if (state1 == state2) return state1; in StateMerge() 56 if ((state1 == CHECKED && state2 == CHECKED_STABLE) || in StateMerge() 57 (state2 == CHECKED && state1 == CHECKED_STABLE)) { in StateMerge() 60 DCHECK((state1 == CHECKED_STABLE && state2 == UNCHECKED_STABLE) || in StateMerge() 61 (state2 == CHECKED_STABLE && state1 == UNCHECKED_STABLE)); in StateMerge()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_code.h | 98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
|
/external/libxml2/ |
D | relaxng.c | 669 xmlRelaxNGValidStatePtr state2); 1347 xmlRelaxNGValidStatePtr state2) in xmlRelaxNGEqualValidState() argument 1351 if ((state1 == NULL) || (state2 == NULL)) in xmlRelaxNGEqualValidState() 1353 if (state1 == state2) in xmlRelaxNGEqualValidState() 1355 if (state1->node != state2->node) in xmlRelaxNGEqualValidState() 1357 if (state1->seq != state2->seq) in xmlRelaxNGEqualValidState() 1359 if (state1->nbAttrLeft != state2->nbAttrLeft) in xmlRelaxNGEqualValidState() 1361 if (state1->nbAttrs != state2->nbAttrs) in xmlRelaxNGEqualValidState() 1363 if (state1->endvalue != state2->endvalue) in xmlRelaxNGEqualValidState() 1365 if ((state1->value != state2->value) && in xmlRelaxNGEqualValidState() [all …]
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.apache.commons.el_1.0.0.v201004212143.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.apache.lucene_1.9.1.v20100518-1140.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.help.base_3.5.2.v201011171123.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/icu/icu4c/source/test/cintltst/ |
D | cmsccoll.c | 4143 uint32_t state2[2] = { 0, 0 }; in TestHiragana() local 4176 keySize2 = ucol_nextSortKeyPart(ucol, &uiter2, state2, sortKey2, SORTKEYLEN, &status); in TestHiragana()
|