HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 451 - 475 of 660) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/broadcom/compiler/
qpu_schedule.c 94 uint32_t time; member in struct:schedule_state
1159 int time = 0; local
1234 uint32_t time = 0; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/
r600_pipe_common.c 1189 int64_t time = os_time_get_nano(); local
1209 int64_t time = os_time_get_nano(); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_bufmgr.c 114 time_t time; member in struct:brw_bufmgr
604 /** Frees all cached buffers significantly older than @time. */
606 cleanup_bo_cache(struct brw_bufmgr *bufmgr, time_t time)
610 if (bufmgr->time == time)
617 if (time - bo->free_time <= 1)
626 bufmgr->time = time;
630 bo_unreference_final(struct brw_bo *bo, time_t time)
641 bo->free_time = time;
662 struct timespec time; local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TLSMessageChannel.java 288 long time = System.currentTimeMillis(); local
293 logMessage(sipMessage, peerAddress, peerPort, time);
  /external/pdfium/third_party/lcms/src/
cmsio0.c 486 #define time wceex_time macro
493 time_t now = time(NULL);
505 // Set creation date/time
738 // Get creation date/time
805 // NOTE: in v4 Timestamp must be in UTC rather than in local time
    [all...]
  /external/python/cpython2/Mac/Modules/list/
_Listmodule.c 944 SInt32 time; local
947 &time))
950 time);
1049 PyDoc_STR("(ListHandle list, SInt32 time) -> None")},
    [all...]
  /external/python/cpython2/Modules/
almodule.c 884 "alGetFrameTime: get the time at which a sample frame came "
890 stamp_t fnum, time; local
895 if (alGetFrameTime(self->port, &fnum, &time) < 0)
898 v1 = PyLong_FromLongLong((long long) time);
    [all...]
  /external/python/cpython3/Lib/
datetime.py 1 """Concrete date/time and related types.
3 See http://www.iana.org/time-zones/repository/tz-link.html for
4 time zone and DST data sources.
7 import time as _time
284 raise ValueError('Incomplete time component')
295 raise ValueError('Invalid time separator: %c' % next_char)
319 raise ValueError('Isoformat time too short')
331 # Valid time zone strings are:
337 raise ValueError('Malformed time zone string')
840 "Construct a date from a POSIX timestamp (like time.time()).
1162 class time: class in inherits:
1760 def time(self): member in class:datetime
    [all...]
  /external/python/cpython3/Modules/
zipimport.c 7 #include <time.h>
936 time, # mod time of file (in dos format)
949 unsigned short flags, compress, time, date, name_size; local
1032 time = get_uint16(buffer + 12);
1190 unsigned short compress, time, date; local
1491 int time, date; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 336 final long time = System.currentTimeMillis(); local
337 mLastRollTime = time;
347 final long time = System.currentTimeMillis(); local
348 if (event.getAction() == MotionEvent.ACTION_MOVE && time - mLastTouchTime < 32) {
357 mLastTouchTime = time;
366 final long time = System.currentTimeMillis(); local
367 if (time - mLastRollTime > ROLL_TO_FACE_BUTTON_DELAY &&
368 time - mLastTouchTime > ROLL_TO_FACE_BUTTON_DELAY) {
378 final long time = System.currentTimeMillis(); local
379 if (time - mLastRollTime > ROLL_TO_FACE_BUTTON_DELAY &
    [all...]
HudSystem.java 282 // first time init
322 // first time init
340 // first time init
354 // first time init
360 // first time init
366 // first time init
385 // first time init
405 // first time init
435 final float time = sSystemRegistry.timeSystem.getRealTime(); local
436 final float fadeDelta = (time - mFadeStartTime)
    [all...]
PlayerComponent.java 118 protected void move(float time, float timeDelta, GameObject parentObject) {
147 if (jumpButton.getTriggered(time) && mTouchingGround) {
149 // it by time.
151 mJumpTime = time;
152 } else if (time > mJumpTime + JUMP_TO_JETS_DELAY) {
215 TimeSystem time = sSystemRegistry.timeSystem; local
218 final float gameTime = time.getGameTime();
244 // To extend the invincible time we need to increment the value above (easy)
246 // timer (not easy). Next time, make a shared value system for this
331 protected void stateMove(float time, float timeDelta, GameObject parentObject)
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowLocationManagerTest.java 416 long time = System.currentTimeMillis(); local
419 location1.setTime(time);
422 location2.setTime(time + 1000);
  /external/skia/bench/
nanobench.cpp 113 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
131 DEFINE_bool(keepAlive, false, "Print a message every so often so that we don't time out");
241 static double time(int loops, Benchmark* bench, Target* target) { function
335 bench_plus_overhead = time(1, bench, target);
344 // overhead + N * Bench Time
346 // where bench_plus_overhead ~=~ overhead + Bench Time.
383 elapsed = time(loops, bench, target);
399 time(loops, bench, target);
830 // Nothing to time.
    [all...]
  /external/skqp/bench/
nanobench.cpp 113 DEFINE_double(gpuMs, 5, "Target bench time in millseconds for GPU.");
131 DEFINE_bool(keepAlive, false, "Print a message every so often so that we don't time out");
241 static double time(int loops, Benchmark* bench, Target* target) { function
335 bench_plus_overhead = time(1, bench, target);
344 // overhead + N * Bench Time
346 // where bench_plus_overhead ~=~ overhead + Bench Time.
383 elapsed = time(loops, bench, target);
399 time(loops, bench, target);
830 // Nothing to time.
    [all...]
  /external/swiftshader/src/Device/
Renderer.cpp 796 int64_t time = Timer::ticks(); local
797 vertexTime[threadIndex] += time - startTick;
798 startTick = time;
    [all...]
  /external/swiftshader/src/Renderer/
Renderer.cpp 923 int64_t time = Timer::ticks(); local
924 vertexTime[threadIndex] += time - startTick;
925 startTick = time;
    [all...]
  /external/tensorflow/tensorflow/tools/benchmark/
benchmark_model.cc 337 int64 time; local
339 RunBenchmark(inputs, outputs, targets, session, stats, &time);
340 stat.UpdateStat(time);
341 (*total_time_us) += time;
353 // If requested, sleep between runs for an arbitrary amount of time.
419 Flag("show_time", &show_time, "whether to list stats by time taken"),
420 Flag("time_limit", &time_limit, "how many items to show by time taken"),
572 // Capture overall inference time without stat logging overhead. This is the
588 // relative time is going within the graph.
656 // Session initialization time
    [all...]
  /external/tinyalsa/
pcm.c 40 #include <sys/time.h>
512 return oops(pcm, errno, "invalid time stamp");
1274 int time = -1; local
    [all...]
  /external/toybox/toys/pending/
dhcp6.c 104 uint32_t time; member in struct:optval_duid_llt
193 duid->time = htonl((uint32_t)(time(NULL) - 946684800) & 0xffffffff);
544 srand(time(NULL));
  /external/u-boot/drivers/net/phy/
mv88e61xx.c 518 int time; local
549 for (time = 1000; time; time--) {
556 if (!time)
984 * return false positives during this time.
  /external/u-boot/fs/ubifs/
tnc.c 58 * time of the last successful commit. Many of the index nodes in the old index
305 * may be changed at any time, e.g. freed by the shrinker.
1158 unsigned long time = get_seconds(); local
1170 znode->time = time;
1185 znode->time = time;
1294 unsigned long time = get_seconds(); local
    [all...]
  /external/u-boot/include/linux/mtd/
mtd.h 46 u_long time; member in struct:erase_info
172 * buffer can write multiple writesize chunks at a time. E.g. while
  /external/u-boot/include/u-boot/
zlib.h 137 * than 64k bytes at a time (needed on systems with 16-bit int).
447 uLong time; /* modification time */ member in struct:gz_header_s
  /external/v8/src/heap/
object-stats.cc 181 double time = isolate()->time_millis_since_init(); local
187 PrintF("\"type\": \"gc_descriptor\", \"time\": %f }\n", time);
236 double time = isolate()->time_millis_since_init(); local
242 stream << "\"time\":" << time << ","; local
    [all...]

Completed in 1360 milliseconds

<<11121314151617181920>>