Home
last modified time | relevance | path

Searched refs:state1 (Results 1 – 25 of 34) sorted by relevance

12

/external/v8/test/unittests/heap/
Dmemory-reducer-unittest.cc87 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/
Dresample_by_2_mips.c39 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 …]
Dresample_by_2.c76 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/
Dbase_job_unittest.py529 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/
Drandom-number-generator.h93 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/
Dfilterbanks.c101 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()
Dfilterbanks_mips.c113 int32_t state1 = state[1]; in WebRtcIsacfix_HighpassFilterFixDec32MIPS() local
141 [state1] "r" (state1) in WebRtcIsacfix_HighpassFilterFixDec32MIPS()
/external/guice/core/test/com/google/inject/internal/
DWeakKeySetTest.java110 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/
Dresampler.cpp391 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/
Druntime-maths.cc280 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/
DIsValidUtf8TestUtil.java242 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/
Dstate_change_queue_unittest.cc42 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/
Dradeon_code.c87 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()
Dradeon_code.h98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
/external/curl/lib/
Dcurl_sasl.c1383 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/
Dhydrogen-check-elimination.cc54 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/
Dpubsubstateclient.h156 virtual bool StatesEqual(const C& state1, const C& state2) { in StatesEqual() argument
157 return state1 == state2; in StatesEqual()
Dhangoutpubsubclient.cc99 virtual bool StatesEqual(const bool& state1, const bool& state2) { in StatesEqual() argument
/external/libxml2/
Drelaxng.c668 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/
Dcomponent_manager_unittest.cc912 auto state1 = CreateDictionaryValue(kState1); in TEST_F() local
913 ASSERT_TRUE(manager_.SetStateProperties("comp1", *state1, nullptr)); in TEST_F()
/external/testng/ant/3rdparty/
Dcobertura.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sourceforge/ net/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.apache.commons.el_1.0.0.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/icu/icu4c/source/test/cintltst/
Dcmsccoll.c4142 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/
Dognl-2.6.7.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/ASTAdd.class ASTAdd ...
/external/guice/extensions/struts2/lib/
Dognl-3.0.jarMETA-INF/ META-INF/MANIFEST.MF ognl/ ognl/enhance/ ognl/ ...

12