HomeSort by: relevance | last modified time | path
    Searched defs:runtime (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/nouveau/
nouveau_vga.c 94 bool runtime = nouveau_pmops_runtime(); local
106 vga_switcheroo_register_client(dev->pdev, &nouveau_switcheroo_ops, runtime);
108 if (runtime && nouveau_is_v1_dsm() && !nouveau_is_optimus())
116 bool runtime = nouveau_pmops_runtime(); local
128 if (runtime && nouveau_is_v1_dsm() && !nouveau_is_optimus())
  /src/usr.bin/at/
at.c 430 struct tm runtime; local
467 runtime = *localtime(&runtimer);
473 (void)strftime(timestr, TIMESIZE, "%T %F", &runtime);
475 (void)strftime(timestr, TIMESIZE, "%X %x", &runtime);
parsetime.c 579 struct tm nowtime, runtime; local
586 runtime = nowtime;
587 runtime.tm_sec = 0;
603 plus(&runtime);
607 tod(&runtime);
608 month(&runtime);
616 * set our runtime to that hour before leaping into the
626 if (runtime.tm_hour >= hr) {
627 runtime.tm_mday++;
628 runtime.tm_wday++
    [all...]
  /src/sys/miscfs/procfs/
procfs_linux.c 583 struct timeval runtime; local
589 microuptime(&runtime);
593 (long long)runtime.tv_sec, (long)runtime.tv_usec / 10000,
  /src/external/bsd/unbound/dist/testcode/
replay.h 271 * Replay storage of runtime information.
368 /** the runtime structure this is part of */
369 struct replay_runtime* runtime; member in struct:fake_pending
391 /** the runtime structure this is part of */
392 struct replay_runtime* runtime; member in struct:fake_timer
435 struct fake_timer* replay_get_oldest_timer(struct replay_runtime* runtime);
455 * @param runtime: the runtime to look up values as needed.
459 char* macro_process(rbtree_type* store, struct replay_runtime* runtime,
testbound.c 641 struct replay_runtime* runtime = (struct replay_runtime*)worker->base; local
642 runtime->daemon = worker->daemon;
fake_event.c 92 /** runtime ptr */
93 struct replay_runtime* runtime; member in struct:fake_commpoint
211 pending_matches_current(struct replay_runtime* runtime,
216 if(!runtime->now || runtime->now->evt_type != repevt_back_query
217 || !runtime->pending_list)
220 for(p = runtime->pending_list; p; p = p->next) {
221 if(runtime->now->addrlen != 0 &&
222 sockaddr_cmp(&p->addr, p->addrlen, &runtime->now->addr,
223 runtime->now->addrlen) != 0
965 struct replay_runtime* runtime = (struct replay_runtime*)base; local
994 struct replay_runtime* runtime = (struct replay_runtime*) local
1007 struct replay_runtime* runtime = (struct replay_runtime*)b; local
1039 struct replay_runtime* runtime = (struct replay_runtime*)b; local
1047 struct replay_runtime* runtime = (struct replay_runtime*)b; local
1057 struct replay_runtime* runtime = (struct replay_runtime*)b; local
1068 struct replay_runtime* runtime = (struct replay_runtime*)base; local
1092 struct replay_runtime* runtime = (struct replay_runtime*)repinfo->c->ev; local
1139 struct replay_runtime* runtime = (struct replay_runtime*)base; local
1173 struct replay_runtime* runtime = (struct replay_runtime*) local
1223 struct replay_runtime* runtime = (struct replay_runtime*) local
1280 struct replay_runtime* runtime = (struct replay_runtime*)outnet->base; local
1403 struct replay_runtime* runtime = pend->runtime; local
1660 struct replay_runtime* runtime = (struct replay_runtime*)base; local
1790 struct replay_runtime* runtime = (struct replay_runtime*) local
1810 struct replay_runtime* runtime = (struct replay_runtime*) local
1882 struct replay_runtime* runtime = (struct replay_runtime*) local
1912 struct replay_runtime* runtime = fc->runtime; local
    [all...]
  /src/dist/pf/sbin/pfctl/
pfctl_parser.c 525 time_t runtime; local
530 runtime = time(NULL) - s->since;
534 unsigned sec, min, hrs, day = runtime;
603 if (runtime > 0)
605 (double)s->fcounters[i] / (double)runtime);
616 if (runtime > 0)
618 (double)s->scounters[i] / (double)runtime);
627 if (runtime > 0)
629 (double)s->counters[i] / (double)runtime);
638 if (runtime > 0
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_device_info.c 905 * intel_device_info_runtime_init - initialize runtime info
908 * Determine various intel_device_info fields at runtime.
923 struct intel_runtime_info *runtime = RUNTIME_INFO(dev_priv); local
928 runtime->num_scalers[pipe] = 2;
930 runtime->num_scalers[PIPE_A] = 2;
931 runtime->num_scalers[PIPE_B] = 2;
932 runtime->num_scalers[PIPE_C] = 1;
939 runtime->num_sprites[pipe] = 6;
942 runtime->num_sprites[pipe] = 3;
953 runtime->num_sprites[PIPE_A] = 2
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_device.c 1399 bool runtime = false; local
1588 runtime = true;
1591 &radeon_switcheroo_ops, runtime);
1592 if (runtime)
1663 if (runtime)
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
target.h 49 enum class Runtime : unsigned char
80 Runtime runtime; member in struct:TargetC
86 enum class Runtime : unsigned char
99 bool wrapDtorInExternD; // set if C++ dtors require a D wrapper to be callable from runtime
100 Runtime runtime; member in struct:TargetCPP
  /src/sys/external/isc/atheros_hal/dist/ar5211/
ar5211_reset.c 110 uint8_t runTime, int16_t startingNF);
863 * in runTime (valid values 1 to 7)
868 ar5211RunNoiseFloor(struct ath_hal *ah, uint8_t runTime, int16_t startingNF)
872 HALASSERT(runTime <= 7);
877 ((runTime << 9) & 0xE00) | (startingNF & 0x1FF));
883 if (runTime == 0) {
887 /* 512 * runtime search windows * 6.4us each */
888 searchTime = (runTime * 512) * 7;
905 "NF with runTime %d failed to end on channel %d\n",
906 runTime, AH_PRIVATE(ah)->ah_curchan->channel)
991 static const uint8_t runtime[3] = { 0, 2, 7 }; local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
Clang.cpp 387 shouldUseExceptionTablesForObjCExceptions(const ObjCRuntime &runtime,
392 if (runtime.isNonFragile())
3611 ObjCRuntime &Runtime, bool InferCovariantReturns,
3616 // is the default. Except for deployment target of 10.5, next runtime is
3618 if (Runtime.isNonFragile()) {
3621 Runtime.isLegacyDispatchDefaultForArch(Arch))) {
3629 // When ObjectiveC legacy runtime is in effect on MacOSX, turn on the option
3632 Runtime.getKind() == ObjCRuntime::FragileMacOSX && Runtime.isNeXTFamily())
3633 CmdArgs.push_back("-fobjc-subscripting-legacy-runtime");
6864 ObjCRuntime runtime; local
6940 ObjCRuntime runtime; local
    [all...]
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/
sysctl.h 581 /* runtime specifies the amount of time that should be allocated
583 uint64_aligned_t runtime; member in struct:xen_sysctl_arinc653_schedule::__anon6662
1053 * Change hypervisor parameters at runtime.
  /src/external/gpl3/gcc/dist/gcc/objc/
objc-act.cc 49 runtime. */
50 #include "objc-runtime-hooks.h"
52 #include "objc-runtime-shared-support.h"
263 objc_runtime_hooks runtime; variable
360 /* print_struct_values is triggered by -print-runtime-info (used
367 -print-runtime-info, we want to print the runtime info only once,
372 -print-runtime-info will run the compiler twice, and compare the
383 /* ... and then check flags and set-up for the selected runtime ... */
385 ok = objc_next_runtime_abi_02_init (&runtime);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/objc/
objc-act.cc 49 runtime. */
50 #include "objc-runtime-hooks.h"
52 #include "objc-runtime-shared-support.h"
265 objc_runtime_hooks runtime; variable
362 /* print_struct_values is triggered by -print-runtime-info (used
369 -print-runtime-info, we want to print the runtime info only once,
374 -print-runtime-info will run the compiler twice, and compare the
385 /* ... and then check flags and set-up for the selected runtime ... */
387 ok = objc_next_runtime_abi_02_init (&runtime);
    [all...]

Completed in 87 milliseconds