HomeSort by relevance Sort by last modified time
    Searched defs:state0 (Results 1 - 16 of 16) sorted by null

  /external/v8/src/runtime/
runtime-maths.cc 33 uint64_t state0 = 0; local
38 state0 = double_to_uint64(cache->get_scalar(kState0Offset));
45 while (state0 == 0 || state1 == 0) {
46 isolate->random_number_generator()->NextBytes(&state0, sizeof(state0));
56 base::RandomNumberGenerator::XorShift128(&state0, &state1);
57 raw_cache->set(i, base::RandomNumberGenerator::ToDouble(state0, state1));
61 raw_cache->set(kState0Offset, uint64_to_double(state0));
  /external/jemalloc/include/jemalloc/internal/
prng.h 93 uint32_t state0; local
96 state0 = atomic_read_uint32(state);
97 state1 = prng_state_next_u32(state0);
98 } while (atomic_cas_uint32(state, state0, state1));
133 size_t state0; local
136 state0 = atomic_read_z(state);
137 state1 = prng_state_next_zu(state0);
138 } while (atomic_cas_z(state, state0, state1));
  /external/webrtc/webrtc/common_audio/signal_processing/
resample_by_2.c 75 register int32_t state0 = filtState[0]; local
88 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0);
89 state0 = in32;
116 filtState[0] = state0;
133 register int32_t state0 = filtState[0]; local
146 tmp1 = MUL_ACCUM_1(kResampleAllpass1[0], diff, state0);
147 state0 = in32;
175 filtState[0] = state0;
resample_by_2_mips.c 38 register int32_t state0 = filtState[0]; local
88 "addu %[tmp11], %[state0], %[tmp11] \n\t"
91 "addiu %[state0], %[in321], 0 \n\t"
109 [tmp11] "=&r" (tmp11), [state0] "+r" (state0),
158 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0);
159 state0 = in32;
187 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0);
188 state0 = in32;
216 tmp1 = MUL_ACCUM_1(kResampleAllpass2[0], diff, state0);
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
filterbanks.c 100 int32_t state0 = state[0]; local
113 "smmulr %[a2], %[tmp_coeff0], %[state0]\n\t"
117 "smmulr %[a1], %[tmp_coeff0], %[state0]\n\t"
126 [state0]"r"(state0),
132 a1 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[5], state0) +
133 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[4], state0) >> 16);
138 a2 = WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[1], state0) +
139 (WEBRTC_SPL_MUL_16_32_RSFT16(coefficient[0], state0) >> 16);
150 state1 = state0;
    [all...]
filterbanks_mips.c 112 int32_t state0 = state[0]; local
126 "sra %[state0_hi], %[state0], 16 \n\t"
128 "andi %[state0_lo], %[state0], 0xFFFF \n\t"
140 : [coeff_ptr] "r" (coefficient), [state0] "r" (state0),
  /external/aac/libSBRenc/src/
resampler.cpp 399 FIXP_DBL state0; local
405 state0 = input + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
406 y = state0 - fMult(state1b, coeff[A1]) - fMult(state2b, coeff[A2]);
434 FIXP_DBL state0; local
440 state0 = input - fMult(state1, coeff[A1]) - fMult(state2, coeff[A2]);
441 y = state0 + fMult(state1, coeff[B1]) + fMult(state2, coeff[B2]);
448 states[i][s2] = (FIXP_BQS)(LONG)((state0 + (FIXP_DBL)(1<<(DFRACT_BITS-FRACT_BITS-2))) >> (DFRACT_BITS-FRACT_BITS-1));
450 states[i][s2] = state0<<1;
  /external/wycheproof/java/com/google/security/wycheproof/
RandomUtil.java 95 long state0 = l0 + eps; local
96 long state1 = nextState(state0);
98 return state0;
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner.go 227 s.step = state0
402 s.step = state0
419 return state0(s, c)
422 // state0 is the state after reading `0` during a number.
423 func state0(s *scanner, c byte) int { func
  /prebuilts/go/linux-x86/src/encoding/json/
scanner.go 227 s.step = state0
402 s.step = state0
419 return state0(s, c)
422 // state0 is the state after reading `0` during a number.
423 func state0(s *scanner, c byte) int { func
  /external/v8/src/compiler/
load-elimination.cc 872 AbstractState const* state0 = node_states_.Get(effect0); local
873 if (state0 == nullptr) return NoChange();
878 AbstractState const* state = ComputeLoopState(node, state0);
892 AbstractState* state = new (zone()) AbstractState(*state0);
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
structurally_valid.cc 47 // areas are state_table, remap_base, and remap_string. state0 and state0_size
55 const uint32 state0; member in struct:google::protobuf::internal::__anon29945
348 // Return true if current Tbl pointer is within state0 range
351 const uint8* Tbl0 = &st->state_table[st->state0];
370 const uint8* Tbl_0 = &st->state_table[st->state0];
432 // Some exit code, !state0, back up over last char
433 // Some exit code, state0, back up one byte exactly
434 // source consumed, !state0, back up over partial char
435 // source consumed, state0, exit OK
436 // For illegal byte in state0, avoid backup up over PREVIOUS cha
    [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.cpp 5644 const int32_t *state0; local
    [all...]
  /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/
sunjce_provider.jar 
  /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/
sunjce_provider.jar 
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 

Completed in 1043 milliseconds