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

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
fold_impl.hpp 34 typedef State state0; typedef in struct:boost::mpl::aux::fold_impl
35 typedef state0 state;
48 typedef State state0; typedef in struct:boost::mpl::aux::fold_impl
49 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1;
66 typedef State state0; typedef in struct:boost::mpl::aux::fold_impl
67 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1;
86 typedef State state0; typedef in struct:boost::mpl::aux::fold_impl
87 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1;
108 typedef State state0; typedef in struct:boost::mpl::aux::fold_impl
109 typedef typename apply2< ForwardOp, state0, typename deref<iter0>::type >::type state1
    [all...]
iter_fold_impl.hpp 34 typedef State state0; typedef in struct:boost::mpl::aux::iter_fold_impl
35 typedef state0 state;
48 typedef State state0; typedef in struct:boost::mpl::aux::iter_fold_impl
49 typedef typename apply2< ForwardOp,state0,iter0 >::type state1;
66 typedef State state0; typedef in struct:boost::mpl::aux::iter_fold_impl
67 typedef typename apply2< ForwardOp,state0,iter0 >::type state1;
86 typedef State state0; typedef in struct:boost::mpl::aux::iter_fold_impl
87 typedef typename apply2< ForwardOp,state0,iter0 >::type state1;
108 typedef State state0; typedef in struct:boost::mpl::aux::iter_fold_impl
109 typedef typename apply2< ForwardOp,state0,iter0 >::type state1
    [all...]
  /external/v8/src/runtime/
runtime-maths.cc 279 uint64_t state0 = double_to_uint64(array[kState0Offset]); local
282 while (state0 == 0 || state1 == 0) {
283 isolate->random_number_generator()->NextBytes(&state0, sizeof(state0));
289 base::RandomNumberGenerator::XorShift128(&state0, &state1);
290 array[i] = base::RandomNumberGenerator::ToDouble(state0, state1);
293 array[kState0Offset] = uint64_to_double(state0);
  /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/protobuf/src/google/protobuf/stubs/
structurally_valid.cc 45 // areas are state_table, remap_base, and remap_string. state0 and state0_size
53 const uint32 state0; member in struct:google::protobuf::internal::__anon22496
346 // Return true if current Tbl pointer is within state0 range
349 const uint8* Tbl0 = &st->state_table[st->state0];
368 const uint8* Tbl_0 = &st->state_table[st->state0];
430 // Some exit code, !state0, back up over last char
431 // Some exit code, state0, back up one byte exactly
432 // source consumed, !state0, back up over partial char
433 // source consumed, state0, exit OK
434 // For illegal byte in state0, avoid backup up over PREVIOUS cha
    [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.cpp 5620 const int32_t *state0; local
    [all...]
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 

Completed in 446 milliseconds