Home
last modified time | relevance | path

Searched refs:state0 (Results 1 – 11 of 11) sorted by relevance

/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()
92 state1 = MemoryReducer::Step(state0, TimerEventHighAllocationRate(0)); in TEST()
95 state1 = MemoryReducer::Step(state0, TimerEventPendingGC(0)); in TEST()
103 MemoryReducer::State state0(DoneState()), state1(DoneState()); in TEST() local
105 state1 = MemoryReducer::Step(state0, MarkCompactEventGarbageLeft(2)); in TEST()
111 state1 = MemoryReducer::Step(state0, MarkCompactEventNoGarbageLeft(2)); in TEST()
117 state1 = MemoryReducer::Step(state0, ContextDisposedEvent(0)); in TEST()
121 EXPECT_EQ(state0.last_gc_time_ms, state1.last_gc_time_ms); in TEST()
128 MemoryReducer::State state0(WaitState(2, 1000.0)), state1(DoneState()); in TEST() local
[all …]
/external/webrtc/webrtc/common_audio/signal_processing/
Dresample_by_2_mips.c38 register int32_t state0 = filtState[0]; in WebRtcSpl_DownsampleBy2() local
109 [tmp11] "=&r" (tmp11), [state0] "+r" (state0), in WebRtcSpl_DownsampleBy2()
158 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0); in WebRtcSpl_DownsampleBy2()
159 state0 = in32; in WebRtcSpl_DownsampleBy2()
187 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0); in WebRtcSpl_DownsampleBy2()
188 state0 = in32; in WebRtcSpl_DownsampleBy2()
216 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0); in WebRtcSpl_DownsampleBy2()
217 state0 = in32; in WebRtcSpl_DownsampleBy2()
245 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0); in WebRtcSpl_DownsampleBy2()
246 state0 = in32; in WebRtcSpl_DownsampleBy2()
[all …]
Dresample_by_2.c75 register int32_t state0 = filtState[0]; in WebRtcSpl_DownsampleBy2() local
88 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0); in WebRtcSpl_DownsampleBy2()
89 state0 = in32; in WebRtcSpl_DownsampleBy2()
116 filtState[0] = state0; in WebRtcSpl_DownsampleBy2()
133 register int32_t state0 = filtState[0]; in WebRtcSpl_UpsampleBy2() local
146 tmp1 = MUL_ACCUM_1(kResampleAllpass1[0], diff, state0); in WebRtcSpl_UpsampleBy2()
147 state0 = in32; in WebRtcSpl_UpsampleBy2()
175 filtState[0] = state0; in WebRtcSpl_UpsampleBy2()
/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
103 uint64_t s1 = *state0; in XorShift128()
105 *state0 = s0; in XorShift128()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dfilterbanks.c100 int32_t state0 = state[0]; in WebRtcIsacfix_HighpassFilterFixDec32C() local
126 [state0]"r"(state0), in WebRtcIsacfix_HighpassFilterFixDec32C()
132 a1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[5], state0) + in WebRtcIsacfix_HighpassFilterFixDec32C()
133 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[4], state0) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
138 a2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[1], state0) + in WebRtcIsacfix_HighpassFilterFixDec32C()
139 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[0], state0) >> 16); in WebRtcIsacfix_HighpassFilterFixDec32C()
150 state1 = state0; in WebRtcIsacfix_HighpassFilterFixDec32C()
151 state0 = c << 2; // Write state as Q4 in WebRtcIsacfix_HighpassFilterFixDec32C()
153 state[0] = state0; in WebRtcIsacfix_HighpassFilterFixDec32C()
Dfilterbanks_mips.c112 int32_t state0 = state[0]; in WebRtcIsacfix_HighpassFilterFixDec32MIPS() local
140 : [coeff_ptr] "r" (coefficient), [state0] "r" (state0), in WebRtcIsacfix_HighpassFilterFixDec32MIPS()
/external/aac/libSBRenc/src/
Dresampler.cpp399 FIXP_DBL state0; in AdvanceFilter() local
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]); in AdvanceFilter()
406 y = state0 - fMult(state1b, coeff[A1]) - fMult(state2b, coeff[A2]); in AdvanceFilter()
434 FIXP_DBL state0; 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()
448 …states[i][s2] = (FIXP_BQS)(LONG)((state0 + (FIXP_DBL)(1<<(DFRACT_BITS-FRACT_BITS-2))) >> (DFRACT_B… in AdvanceFilter()
450 states[i][s2] = state0<<1; in AdvanceFilter()
/external/v8/src/runtime/
Druntime-maths.cc279 uint64_t state0 = double_to_uint64(array[kState0Offset]); in RUNTIME_FUNCTION() local
282 while (state0 == 0 || state1 == 0) { in RUNTIME_FUNCTION()
283 isolate->random_number_generator()->NextBytes(&state0, sizeof(state0)); in RUNTIME_FUNCTION()
289 base::RandomNumberGenerator::XorShift128(&state0, &state1); in RUNTIME_FUNCTION()
290 array[i] = base::RandomNumberGenerator::ToDouble(state0, state1); in RUNTIME_FUNCTION()
293 array[kState0Offset] = uint64_to_double(state0); in RUNTIME_FUNCTION()
/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
94 if (c->Constants[index].u.State[0] == state0 && in rc_constants_add_state()
103 constant.u.State[0] = state0; in rc_constants_add_state()
/external/protobuf/src/google/protobuf/stubs/
Dstructurally_valid.cc53 const uint32 state0; member
349 const uint8* Tbl0 = &st->state_table[st->state0]; in InStateZero()
368 const uint8* Tbl_0 = &st->state_table[st->state0]; in UTF8GenericScan()
/external/icu/icu4c/source/common/
Ducnvmbcs.cpp5620 const int32_t *state0; in ucnv_MBCSGetStarters() local
5623 state0=cnv->sharedData->mbcs.stateTable[cnv->sharedData->mbcs.dbcsOnlyState]; in ucnv_MBCSGetStarters()
5626 starters[i]= (UBool)MBCS_ENTRY_IS_TRANSITION(state0[i]); in ucnv_MBCSGetStarters()