HomeSort by relevance Sort by last modified time
    Searched refs:state1 (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/v8/test/unittests/heap/
memory-reducer-unittest.cc 86 MemoryReducer::State state0(DoneState()), state1(DoneState());
88 state1 = MemoryReducer::Step(state0, TimerEventLowAllocationRate(0));
89 EXPECT_EQ(MemoryReducer::kDone, state1.action);
91 state1 = MemoryReducer::Step(state0, TimerEventHighAllocationRate(0));
92 EXPECT_EQ(MemoryReducer::kDone, state1.action);
94 state1 = MemoryReducer::Step(state0, TimerEventPendingGC(0));
95 EXPECT_EQ(MemoryReducer::kDone, state1.action);
102 MemoryReducer::State state0(DoneState()), state1(DoneState());
104 state1 = MemoryReducer::Step(state0, MarkCompactEventGarbageLeft(2));
105 EXPECT_EQ(MemoryReducer::kWait, state1.action)
    [all...]
  /external/v8/src/base/utils/
random-number-generator.h 93 static inline double ToDouble(uint64_t state0, uint64_t state1) {
97 uint64_t random = ((state0 + state1) & kMantissaMask) | kExponentBits;
102 static inline void XorShift128(uint64_t* state0, uint64_t* state1) {
104 uint64_t s0 = *state1;
110 *state1 = s1;
  /external/webrtc/webrtc/common_audio/signal_processing/
resample_by_2_mips.c 39 register int32_t state1 = filtState[1]; local
72 "subu %[diff1], %[in321], %[state1] \n\t"
77 : [state1] "r" (state1), [state5] "r" (state5)
103 "addu %[tmp21], %[state1], %[tmp21] \n\t"
106 "addiu %[state1], %[tmp11], 0 \n\t"
110 [state1] "+r" (state1),
157 diff = in32 - state1;
161 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
    [all...]
resample_by_2.c 76 register int32_t state1 = filtState[1]; local
87 diff = in32 - state1;
91 tmp2 = MUL_ACCUM_2(kResampleAllpass2[1], diff, state1);
92 state1 = tmp1;
117 filtState[1] = state1;
134 register int32_t state1 = filtState[1]; local
145 diff = in32 - state1;
149 tmp2 = MUL_ACCUM_1(kResampleAllpass1[1], diff, state1);
150 state1 = tmp1;
176 filtState[1] = state1;
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
iter_fold_impl.hpp 49 typedef typename apply2< ForwardOp,state0,iter0 >::type state1; typedef in struct:boost::mpl::aux::iter_fold_impl
53 typedef state1 state;
67 typedef typename apply2< ForwardOp,state0,iter0 >::type state1; typedef in struct:boost::mpl::aux::iter_fold_impl
69 typedef typename apply2< ForwardOp,state1,iter1 >::type state2;
87 typedef typename apply2< ForwardOp,state0,iter0 >::type state1; typedef in struct:boost::mpl::aux::iter_fold_impl
89 typedef typename apply2< ForwardOp,state1,iter1 >::type state2;
109 typedef typename apply2< ForwardOp,state0,iter0 >::type state1; typedef in struct:boost::mpl::aux::iter_fold_impl
111 typedef typename apply2< ForwardOp,state1,iter1 >::type state2;
fold_impl.hpp 49 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1; typedef in struct:boost::mpl::aux::fold_impl
53 typedef state1 state;
67 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1; typedef in struct:boost::mpl::aux::fold_impl
69 typedef typename apply2< ForwardOp, state1, typename deref<iter1>::type >::type state2;
87 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1; typedef in struct:boost::mpl::aux::fold_impl
89 typedef typename apply2< ForwardOp, state1, typename deref<iter1>::type >::type state2;
109 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1; typedef in struct:boost::mpl::aux::fold_impl
111 typedef typename apply2< ForwardOp, state1, typename deref<iter1>::type >::type state2;
  /external/v8/src/runtime/
runtime-maths.cc 118 uint64_t state1 = double_to_uint64(array[kState1Offset]); local
120 while (state0 == 0 || state1 == 0) {
122 isolate->random_number_generator()->NextBytes(&state1, sizeof(state1));
127 base::RandomNumberGenerator::XorShift128(&state0, &state1);
128 array[i] = base::RandomNumberGenerator::ToDouble(state0, state1);
132 array[kState1Offset] = uint64_to_double(state1);
  /cts/tests/tests/util/src/android/util/cts/
StateSetTest.java 152 int state1; local
155 state1 = 1;
156 assertTrue(StateSet.stateSetMatches(stateSpec8, state1));
158 state1 = 2;
159 assertFalse(StateSet.stateSetMatches(stateSpec8, state1));
162 assertFalse(StateSet.stateSetMatches(stateSpec8, state1));
  /device/google/contexthub/lib/nanohub/
rsa.c 23 static bool biModIterative(uint32_t *num, const uint32_t *denum, uint32_t *tmp, uint32_t *state1, uint32_t *state2, uint32_t step)
27 uint32_t bitsh = *state1, limbsh = *state2;
107 *state1 = bitsh;
168 const uint32_t* rsaPubOpIterative(struct RsaState* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP)
193 if (biModIterative(state->tmpA, c, state->tmpB, state1, state2, gigastepSubstep - RSA_LEN)) { //MOD is done
217 uint32_t state1 = 0, state2 = 0, step = 0, ns = 0; local
220 ret = rsaPubOpIterative(state, a, c, &state1, &state2, &step);
231 uint32_t state1 = 0, state2 = 0, step; local
233 for (step = 0; !biModIterative(num, denum, tmp, &state1, &state2, step); step++);
  /external/autotest/client/common_lib/
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/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks.c 101 int32_t state1 = state[1]; local
114 "smmulr %[b2], %[tmp_coeff1], %[state1]\n\t"
118 "smmulr %[b1], %[tmp_coeff1], %[state1]\n\t"
127 [state1]"r"(state1)
134 b1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[7], state1) +
135 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[6], state1) >> 16);
140 b2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[3], state1) +
141 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[2], state1) >> 16);
150 state1 = state0
    [all...]
filterbanks_mips.c 113 int32_t state1 = state[1]; local
127 "sra %[state1_hi], %[state1], 16 \n\t"
129 "andi %[state1_lo], %[state1], 0xFFFF \n\t"
141 [state1] "r" (state1)
  /device/google/contexthub/lib/include/nanohub/
rsa.h 39 const uint32_t* rsaPubOpIterative(struct RsaState* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP);
  /external/curl/lib/
curl_sasl.c 265 saslstate state1 = SASL_STOP; local
282 state1 = SASL_EXTERNAL;
294 state1 = SASL_GSSAPI;
313 state1 = SASL_DIGESTMD5;
318 state1 = SASL_CRAMMD5;
326 state1 = SASL_NTLM;
338 state1 = SASL_OAUTH2;
351 state1 = SASL_OAUTH2;
362 state1 = SASL_LOGIN;
371 state1 = SASL_PLAIN
    [all...]
  /external/aac/libSBRenc/src/
resampler.cpp 391 FIXP_BQS state1, state2, state1b, state2b; local
393 state1 = states[0][s1];
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
417 state1 = state1b;
433 FIXP_BQS state1, state2; local
437 state1 = states[i][s1];
440 state0 = input - fMult(state1, coeff[A1]) - fMult(state2, coeff[A2]);
441 y = state0 + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
  /external/guice/core/test/com/google/inject/internal/
WeakKeySetTest.java 110 TestState state1 = new TestState(); local
117 set.add(key1, state1, source1);
129 state1 = null;
158 TestState state1 = new TestState(); local
165 set.add(key1, state1, source1);
186 TestState state1 = new TestState(); local
192 set.add(key1, state1, source);
205 state1 = null;
229 TestState state1 = new TestState(); local
235 set.add(key1, state1, source)
275 TestState state1 = new TestState(); local
    [all...]
  /cts/tests/tests/print/src/android/print/cts/
PrintJobTest.java 398 for (final int state1 : states) {
402 if (state1 == state2 && state2 == state3) {
407 if (knownFailures[state1][state2]
413 if (state1 == PrintJobInfo.STATE_QUEUED) {
417 Log.i(LOG_TAG, "Test " + state1 + " -> " + state2 + " -> " + state3);
422 knownFailures[PrintJobInfo.STATE_QUEUED][state1] = true;
424 boolean success = setState(printJob, state1);
426 state1), success);
430 checkState(printJob, state1);
432 knownFailures[PrintJobInfo.STATE_QUEUED][state1] = false
    [all...]
  /external/libweave/src/states/
state_change_queue_unittest.cc 42 const std::string state1 = "{'prop': {'name1': 23}}"; local
47 *CreateDictionaryValue(state1)));
54 EXPECT_JSON_EQ(state1, *changes[0].changed_properties);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.c 87 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state0, unsigned state1)
95 c->Constants[index].u.State[1] == state1)
104 constant.u.State[1] = state1;
radeon_code.h 98 unsigned rc_constants_add_state(struct rc_constant_list * c, unsigned state1, unsigned state2);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/Collision/
b2Collision.cpp 88 void b2GetPointStates(b2PointState state1[b2_maxManifoldPoints], b2PointState state2[b2_maxManifoldPoints],
93 state1[i] = b2_nullState;
102 state1[i] = b2_removeState;
108 state1[i] = b2_persistState;
  /external/protobuf/java/src/test/java/com/google/protobuf/
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));
  /frameworks/base/core/java/com/android/internal/statusbar/
IStatusBar.aidl 31 void disable(int state1, int state2);
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/
bl.h 77 const uint32_t* (*blRsaPubOpIterative)(struct RsaState* state, const uint32_t *a, const uint32_t *c, uint32_t *state1, uint32_t *state2, uint32_t *stepP);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
TvStatusBar.java 60 public void disable(int state1, int state2, boolean animate) {

Completed in 1766 milliseconds

1 2 3