HomeSort by relevance Sort by last modified time
    Searched refs:ran (Results 1 - 9 of 9) sorted by null

  /external/icu4c/test/intltest/
winnmtst.cpp 58 * Return a random int64_t where U_INT64_MIN <= ran <= U_INT64_MAX.
62 int64_t ran = 0; local
71 for (i = 0; i < sizeof(ran); i += 1) {
72 ((char*)&ran)[i] = (char)((rand() & 0x0FF0) >> 4);
75 return ran;
79 * Return a random double where U_DOUBLE_MIN <= ran <= U_DOUBLE_MAX.
83 double ran = 0; local
93 for (i = 0; i < sizeof(ran); i += 1) {
94 ((char*)&ran)[i] = (char)((rand() & 0x0FF0) >> 4);
96 } while (_isnan(ran));
116 int32_t ran = 0; local
    [all...]
  /external/chromium/base/
task_queue_unittest.cc 16 TrackCallsTask(bool* ran, bool* deleted)
17 : ran_(ran),
  /external/speex/libspeex/
math_approx.h 53 union {int i; float f;} ran; local
55 ran.i = jflone | (jflmsk & *seed);
56 ran.f -= 1.5;
57 return 3.4642*std*ran.f;
scal.c 123 union {int i; float f;} ran; local
125 ran.i = jflone | (jflmsk & *seed);
126 ran.f -= 1.5;
127 return 2*ran.f;
  /external/icu4c/test/cintltst/
utmstest.c 40 * Return a random int64_t where U_INT64_MIN <= ran <= U_INT64_MAX.
44 int64_t ran = 0; local
54 for (i = 0; i < sizeof(ran); i += 1) {
55 ((char*)&ran)[i] = (char)((rand() & 0x0FF0) >> 4);
58 return ran;
  /external/webkit/LayoutTests/fast/encoding/resources/
parser-tests.js 51 document.getElementById('status').innerText = "Tests ran.";
  /external/webkit/LayoutTests/fast/url/resources/
utilities.js 16 // so the tests ran correctly in Firefox at the time we originally wrote them.
  /ndk/sources/host-tools/make-3.81/
remake.c 803 int ran = file->command_state == cs_running;
815 or won when they ran (i.e. status is 0). */
838 /* Pretend we ran a real touch command, to suppress the
843 to the double-colon entries). Simply setting ran=1 would
854 if ((ran && !file->phony) || touched)
858 /* If -n, -t, or -q and all the commands are recursive, we ran them so
905 if (ran && file->update_status != -1)
916 if (ran && !d->file->phony)
799 int ran = file->command_state == cs_running; local
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
AbstractCursorTest.java 619 Random ran = new Random(); local
627 Integer r = ran.nextInt();

Completed in 139 milliseconds