/external/v8/test/unittests/heap/ |
D | memory-reducer-unittest.cc | 87 MemoryReducer::State state0(DoneState()), state1(DoneState()); in TEST() local 89 state1 = MemoryReducer::Step(state0, TimerEventLowAllocationRate(0)); in TEST() 90 EXPECT_EQ(MemoryReducer::kDone, state1.action); in TEST() 92 state1 = MemoryReducer::Step(state0, TimerEventHighAllocationRate(0)); in TEST() 93 EXPECT_EQ(MemoryReducer::kDone, state1.action); in TEST() 95 state1 = MemoryReducer::Step(state0, TimerEventPendingGC(0)); in TEST() 96 EXPECT_EQ(MemoryReducer::kDone, state1.action); in TEST() 103 MemoryReducer::State state0(DoneState()), state1(DoneState()); in TEST() local 105 state1 = MemoryReducer::Step(state0, MarkCompactEventGarbageLeft(2)); in TEST() 106 EXPECT_EQ(MemoryReducer::kWait, state1.action); in TEST() [all …]
|
/external/webrtc/webrtc/common_audio/signal_processing/ |
D | resample_by_2_mips.c | 39 register int32_t state1 = filtState[1]; in WebRtcSpl_DownsampleBy2() local 77 : [state1] "r" (state1), [state5] "r" (state5) in WebRtcSpl_DownsampleBy2() 110 [state1] "+r" (state1), in WebRtcSpl_DownsampleBy2() 157 diff = in32 - state1; in WebRtcSpl_DownsampleBy2() 161 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1); in WebRtcSpl_DownsampleBy2() 162 state1 = tmp1; in WebRtcSpl_DownsampleBy2() 186 diff = in32 - state1; in WebRtcSpl_DownsampleBy2() 190 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1); in WebRtcSpl_DownsampleBy2() 191 state1 = tmp1; in WebRtcSpl_DownsampleBy2() 215 diff = in32 - state1; in WebRtcSpl_DownsampleBy2() [all …]
|
D | resample_by_2.c | 76 register int32_t state1 = filtState[1]; in WebRtcSpl_DownsampleBy2() local 87 diff = in32 - state1; in WebRtcSpl_DownsampleBy2() 91 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1); in WebRtcSpl_DownsampleBy2() 92 state1 = tmp1; in WebRtcSpl_DownsampleBy2() 117 filtState[1] = state1; in WebRtcSpl_DownsampleBy2() 134 register int32_t state1 = filtState[1]; in WebRtcSpl_UpsampleBy2() local 145 diff = in32 - state1; in WebRtcSpl_UpsampleBy2() 149 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state1); in WebRtcSpl_UpsampleBy2() 150 state1 = tmp1; in WebRtcSpl_UpsampleBy2() 176 filtState[1] = state1; in WebRtcSpl_UpsampleBy2()
|
/external/autotest/client/common_lib/ |
D | base_job_unittest.py | 529 state1 = base_job.job_state() 530 state1.set('ns1', 'var0', 50) 531 state1.set('ns2', 'var10', 100) 532 state1.write_to_file('transfer_file') 552 state1 = base_job.job_state() 553 state1.set('ns', 'var1', 'value1') 554 state1.write_to_file('to_be_read') 598 state1 = base_job.job_state() 599 state1.set_backing_file('second_file') 600 state1.set('ns0', 'var1x', 100) [all …]
|
/external/v8/src/base/utils/ |
D | random-number-generator.h | 93 static inline double ToDouble(uint64_t state0, uint64_t state1) { in ToDouble() argument 97 uint64_t random = ((state0 + state1) & kMantissaMask) | kExponentBits; in ToDouble() 102 static inline void XorShift128(uint64_t* state0, uint64_t* state1) { in XorShift128() argument 104 uint64_t s0 = *state1; in XorShift128() 110 *state1 = s1; in XorShift128()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | filterbanks.c | 101 int32_t state1 = state[1]; in WebRtcIsacfix_HighpassFilterFixDec32C() local 127 [state1]"r"(state1) in WebRtcIsacfix_HighpassFilterFixDec32C() 134 b1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[7], state1) + in WebRtcIsacfix_HighpassFilterFixDec32C() 135 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[6], state1) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C() 140 b2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[3], state1) + in WebRtcIsacfix_HighpassFilterFixDec32C() 141 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[2], state1) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C() 150 state1 = state0; in WebRtcIsacfix_HighpassFilterFixDec32C() 154 state[1] = state1; in WebRtcIsacfix_HighpassFilterFixDec32C()
|
D | filterbanks_mips.c | 113 int32_t state1 = state[1]; in WebRtcIsacfix_HighpassFilterFixDec32MIPS() local 141 [state1] "r" (state1) in WebRtcIsacfix_HighpassFilterFixDec32MIPS()
|
/external/guice/core/test/com/google/inject/internal/ |
D | WeakKeySetTest.java | 110 TestState state1 = new TestState(); in testEviction_keyOverlap_2x() local 117 set.add(key1, state1, source1); in testEviction_keyOverlap_2x() 129 state1 = null; in testEviction_keyOverlap_2x() 158 TestState state1 = new TestState(); in testNoEviction_keyOverlap_2x() local 165 set.add(key1, state1, source1); in testNoEviction_keyOverlap_2x() 186 TestState state1 = new TestState(); in testEviction_keyAndSourceOverlap_null() local 192 set.add(key1, state1, source); in testEviction_keyAndSourceOverlap_null() 205 state1 = null; in testEviction_keyAndSourceOverlap_null() 229 TestState state1 = new TestState(); in testEviction_keyAndSourceOverlap_nonNull() local 235 set.add(key1, state1, source); in testEviction_keyAndSourceOverlap_nonNull() [all …]
|
/external/aac/libSBRenc/src/ |
D | resampler.cpp | 391 FIXP_BQS state1, state2, state1b, state2b; in AdvanceFilter() local 393 state1 = states[0][s1]; in AdvanceFilter() 405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]); in AdvanceFilter() 417 state1 = state1b; in AdvanceFilter() 433 FIXP_BQS state1, state2; in AdvanceFilter() 437 state1 = states[i][s1]; 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/v8/src/runtime/ |
D | runtime-maths.cc | 280 uint64_t state1 = double_to_uint64(array[kState1Offset]); in RUNTIME_FUNCTION() local 282 while (state0 == 0 || state1 == 0) { in RUNTIME_FUNCTION() 284 isolate->random_number_generator()->NextBytes(&state1, sizeof(state1)); in RUNTIME_FUNCTION() 289 base::RandomNumberGenerator::XorShift128(&state0, &state1); in RUNTIME_FUNCTION() 290 array[i] = base::RandomNumberGenerator::ToDouble(state0, state1); in RUNTIME_FUNCTION() 294 array[kState1Offset] = uint64_to_double(state1); in RUNTIME_FUNCTION()
|
/external/protobuf/java/src/test/java/com/google/protobuf/ |
D | IsValidUtf8TestUtil.java | 242 int state1 = Utf8.partialIsValidUtf8(Utf8.COMPLETE, bytes, 0, i); 243 int state2 = Utf8.partialIsValidUtf8(state1, bytes, i, j); 247 state1, state2, state3, i, j); 267 assertEquals(state1, 269 assertEquals(state1, 272 x.partialIsValidUtf8(state1, i, j - i)); 274 x.substring(i, j).partialIsValidUtf8(state1, 0, j - i));
|
/external/libweave/src/states/ |
D | state_change_queue_unittest.cc | 42 const std::string state1 = "{'prop': {'name1': 23}}"; in TEST_F() local 47 *CreateDictionaryValue(state1))); in TEST_F() 54 EXPECT_JSON_EQ(state1, *changes[0].changed_properties); in TEST_F()
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
D | radeon_code.c | 87 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state0, unsigned state1) in rc_constants_add_state() argument 95 c->Constants[index].u.State[1] == state1) in rc_constants_add_state() 104 constant.u.State[1] = state1; in rc_constants_add_state()
|
D | radeon_code.h | 98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
|
/external/curl/lib/ |
D | curl_sasl.c | 1383 saslstate state1 = SASL_STOP; in Curl_sasl_start() local 1395 state1 = SASL_EXTERNAL; in Curl_sasl_start() 1406 state1 = SASL_GSSAPI; in Curl_sasl_start() 1423 state1 = SASL_DIGESTMD5; in Curl_sasl_start() 1428 state1 = SASL_CRAMMD5; in Curl_sasl_start() 1436 state1 = SASL_NTLM; in Curl_sasl_start() 1448 state1 = SASL_XOAUTH2; in Curl_sasl_start() 1458 state1 = SASL_LOGIN; in Curl_sasl_start() 1467 state1 = SASL_PLAIN; in Curl_sasl_start() 1487 state(sasl, conn, resp? state2: state1); in Curl_sasl_start()
|
/external/v8/src/crankshaft/ |
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/webrtc/webrtc/libjingle/xmpp/ |
D | pubsubstateclient.h | 156 virtual bool StatesEqual(const C& state1, const C& state2) { in StatesEqual() argument 157 return state1 == state2; in StatesEqual()
|
D | hangoutpubsubclient.cc | 99 virtual bool StatesEqual(const bool& state1, const bool& state2) { in StatesEqual() argument
|
/external/libxml2/ |
D | relaxng.c | 668 xmlRelaxNGValidStatePtr state1, 1346 xmlRelaxNGValidStatePtr state1, 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/libweave/src/ |
D | component_manager_unittest.cc | 912 auto state1 = CreateDictionaryValue(kState1); in TEST_F() local 913 ASSERT_TRUE(manager_.SetStateProperties("comp1", *state1, nullptr)); in TEST_F()
|
/external/testng/ant/3rdparty/ |
D | cobertura.jar | META-INF/
META-INF/MANIFEST.MF
net/
net/sourceforge/
net/ ... |
/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 ... |
/external/icu/icu4c/source/test/cintltst/ |
D | cmsccoll.c | 4142 uint32_t state1[2] = { 0, 0 }; in TestHiragana() local 4173 keySize1 = ucol_nextSortKeyPart(ucol, &uiter1, state1, sortKey1, SORTKEYLEN, &status); in TestHiragana()
|
/external/guice/extensions/persist/lib/ |
D | ognl-2.6.7.jar | META-INF/
META-INF/MANIFEST.MF
ognl/
ognl/ASTAdd.class
ASTAdd ... |
/external/guice/extensions/struts2/lib/ |
D | ognl-3.0.jar | META-INF/
META-INF/MANIFEST.MF
ognl/
ognl/enhance/
ognl/ ... |