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

  /external/libopus/silk/
decode_core.c 50 opus_int32 LTP_pred_Q13, LPC_pred_Q10, Gain_Q10, inv_gain_Q31, gain_adj_Q16, rand_seed, offset_Q10; local
72 rand_seed = psDec->indices.Seed;
74 rand_seed = silk_RAND( rand_seed );
83 if( rand_seed < 0 ) {
87 rand_seed = silk_ADD32_ovflw( rand_seed, pulses[ i ] );
PLC.c 203 opus_int32 rand_seed, harm_Gain_Q15, rand_Gain_Q15, inv_gain_Q30; local
288 rand_seed = psPLC->rand_seed;
321 rand_seed = silk_RAND( rand_seed );
322 idx = silk_RSHIFT( rand_seed, 25 ) & RAND_BUF_MASK;
381 psPLC->rand_seed = rand_seed;
structs.h 54 opus_int32 rand_seed; member in struct:__anon23947
236 opus_int32 rand_seed; /* Seed for unvoiced signal generation */ member in struct:__anon23955
253 opus_int32 rand_seed; member in struct:__anon23956
  /external/valgrind/none/tests/tilegx/
gen_insn_test.c 109 static volatile uint64_t rand_seed = 0; local
111 rand_seed = (rand_seed >> 8) * 201520052007 + 1971;
113 printf("RAND: %d\n", (int)rand_seed);
115 return rand_seed;
  /art/runtime/gc/space/
large_object_space_test.cc 36 size_t rand_seed = 0; local
52 size_t request_size = test_rand(&rand_seed) % max_allocation_size;
70 std::swap(requests[j], requests[test_rand(&rand_seed) % requests.size()]);
space_test.h 174 size_t rand_seed = 123456789; local
183 alloc_size = test_rand(&rand_seed) % static_cast<size_t>(-object_size);
  /external/libopus/silk/fixed/
structs_FIX.h 60 opus_int32 rand_seed; member in struct:__anon23937
  /external/libopus/silk/float/
structs_FLP.h 60 opus_int32 rand_seed; member in struct:__anon23942
  /system/nfc/src/nfa/ce/
nfa_ce_act.c 336 uint32_t rand_seed = GKI_get_tick_count(); local
343 nfcid2[2] = (uint8_t)(rand_seed & 0xFF);
344 nfcid2[3] = (uint8_t)(rand_seed >> 8 & 0xFF);
345 rand_seed >>= (rand_seed & 3);
346 nfcid2[4] = (uint8_t)(rand_seed & 0xFF);
347 nfcid2[5] = (uint8_t)(rand_seed >> 8 & 0xFF);
348 rand_seed >>= (rand_seed & 3);
349 nfcid2[6] = (uint8_t)(rand_seed & 0xFF)
    [all...]
  /external/fio/
verify.h 35 uint64_t rand_seed; member in struct:verify_header
ioengine.h 59 uint64_t rand_seed; member in struct:io_u
thread_options.h 114 unsigned long long rand_seed; member in struct:thread_options
343 uint64_t rand_seed; member in struct:thread_options_pack
  /external/libxml2/
dict.c 146 static unsigned int rand_seed = 0; variable
185 rand_seed = time(NULL);
186 rand_r(& rand_seed);
205 ret = rand_r(& rand_seed);

Completed in 1498 milliseconds