/src/sys/external/bsd/common/linux/ |
linux_rcu.c | 74 bool running; member in struct:__anonacf366960108 157 * If the GC isn't running anything yet, then all callbacks of 161 * If the GC is already running, however, and there are any 166 * stopped running because there's no work left. 172 if (gc.running) 174 while (gc.running || gc.first_callback || gc.first_kfree) { 261 gc.running = true; 298 gc.running = false;
|
/src/sys/dev/pci/ |
auixpvar.h | 59 int running; member in struct:auixp_dma
|
auixp.c | 580 /* just make sure we are not changing when its running */ 697 int running; local in function:auixp_update_busbusy 705 running = ((sc->sc_output_dma->running) || (sc->sc_input_dma->running)); 706 if (running) 764 chain_dma->running = 1; 787 dma->running = 0; 839 chain_dma->running = 1; 862 dma->running = 0 [all...] |
/src/sys/dev/ |
sequencervar.h | 43 int running; member in struct:syn_timer
|
ipmivar.h | 147 volatile int running; member in struct:ipmi_thread
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_thread_registry_test.cc | 37 uptr total, running, alive; local in function:__sanitizer::CheckThreadQuantity 38 registry->GetNumberOfThreads(&total, &running, &alive); 40 EXPECT_EQ(exp_running, running);
|
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
tsan_report.h | 94 bool running; member in struct:__tsan::ReportThread
|
/src/sys/external/bsd/drm2/dist/drm/i915/gvt/ |
execlist.c | 72 gvt_dbg_el("[before] running slot %d/context %x pending slot %d\n", 85 gvt_dbg_el("[after] running slot %d/context %x pending slot %d\n", 96 struct intel_vgpu_execlist_slot *running = execlist->running_slot; local in function:emulate_execlist_status 108 if (running) { 109 status.current_execlist_pointer = !!running->index; 110 status.execlist_write_pointer = !!!running->index; 112 !!!(running->index); 114 !!(running->index); 196 struct intel_vgpu_execlist_slot *running = execlist->running_slot; local in function:emulate_execlist_ctx_schedule_out 198 struct execlist_ctx_descriptor_format *ctx0 = &running->ctx[0] 288 struct intel_vgpu_execlist_slot *running = execlist->running_slot; local in function:emulate_execlist_schedule_in [all...] |
/src/games/worm/ |
worm.c | 76 static int running = 0; variable in typeref:typename:int 156 if (running) 158 running--; 296 case 'H': x--; running = RUNLEN; ch = tolower(ch); break; 297 case 'J': y++; running = RUNLEN/2; ch = tolower(ch); break; 298 case 'K': y--; running = RUNLEN/2; ch = tolower(ch); break; 299 case 'L': x++; running = RUNLEN; ch = tolower(ch); break; 308 default: if (! running) alarm(1); 329 running = 0; 344 if (!(slow && running)) [all...] |
/src/sys/arch/riscv/riscv/ |
cpu_subr.c | 136 VPRINTF("%s: secondary processors hatched. %d running\n", __func__, 254 * Halt all running cpus, excluding current cpu. 261 // If we are the only CPU running, there's nothing to do. 265 // Get all running CPUs 318 * Pause all running cpus, excluding current cpu. 393 char running, hatched, paused, resumed, halted; local in function:cpu_debug_dump 397 running = (kcpuset_isset(cpus_running, cpu_index(ci)) ? 'R' : '-'); 406 hatched, running, paused, resumed, halted,
|
/src/sys/arch/powerpc/booke/ |
booke_machdep.c | 484 * Loop until running bit for this cpu is set. 507 kcpuset_t *running; local in function:cpu_boot_secondary_processors 509 kcpuset_create(&running, true); 521 kcpuset_set(running, cpu_index(ci)); 523 KASSERT(kcpuset_match(csi->cpus_hatched, running)); 524 if (!kcpuset_iszero(running)) { 525 kcpuset_merge(csi->cpus_running, running); 527 kcpuset_destroy(running);
|
/src/sys/dev/ic/ |
bmx280.c | 733 uint8_t running = 99; local in function:bmx280_wait_for_data 740 ierror = sc->sc_funcs->read_reg(sc, reg, &running, 1); 749 device_xname(sc->sc_dev), running)); 752 } while (c > 0 && (running & BMX280_STATUS_MEASURING_MASK));
|
/src/dist/pf/sbin/pfctl/ |
pfctl_parser.c | 524 char statline[80], *running; local in function:print_status 531 running = s->running ? "Enabled" : "Disabled"; 544 running, day, hrs, min, sec); 546 snprintf(statline, sizeof(statline), "Status: %s", running);
|
/src/sys/arch/powerpc/powerpc/ |
powerpc_machdep.c | 605 * Halt all running cpus, excluding current cpu. 665 * Pause all running cpus, excluding current cpu. 735 char running, hatched, paused, resumed, halted; local in function:cpu_debug_dump 745 running = (kcpuset_isset(csi->cpus_running, index) ? 'R' : '-'); 751 running, hatched, paused, resumed, halted,
|
/src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/ |
amdgpu_gmc_v6_0.c | 170 u32 running; local in function:gmc_v6_0_mc_load_microcode 190 running = RREG32(mmMC_SEQ_SUP_CNTL) & MC_SEQ_SUP_CNTL__RUN_MASK; 192 if (running == 0) {
|
amdgpu_gmc_v7_0.c | 191 u32 running; local in function:gmc_v7_0_mc_load_microcode 208 running = REG_GET_FIELD(RREG32(mmMC_SEQ_SUP_CNTL), MC_SEQ_SUP_CNTL, RUN); 210 if (running == 0) {
|
amdgpu_gmc_v8_0.c | 308 u32 running; local in function:gmc_v8_0_tonga_mc_load_microcode 333 running = REG_GET_FIELD(RREG32(mmMC_SEQ_SUP_CNTL), MC_SEQ_SUP_CNTL, RUN); 335 if (running == 0) {
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_ni.c | 647 u32 mem_type, running, blackout = 0; local in function:ni_mc_load_microcode 679 running = RREG32(MC_SEQ_SUP_CNTL) & RUN_MASK; 681 if ((mem_type == MC_SEQ_MISC0_GDDR5_VALUE) && (running == 0)) { 682 if (running) { 713 if (running)
|
radeon_si.c | 1587 u32 running; local in function:si_mc_load_microcode 1635 running = RREG32(MC_SEQ_SUP_CNTL) & RUN_MASK; 1637 if (running == 0) {
|
/src/bin/ps/ |
ps.c | 554 int i, onproc, running, sleeping, stopped, suspended; local in function:pick_representative_lwp 568 onproc = running = sleeping = stopped = suspended = -1; 575 running = i; 590 if (running != -1) 591 return &kl[running];
|
/src/sys/arch/mips/mips/ |
cpu_subr.c | 723 * Halt all running cpus, excluding current cpu. 730 // If we are the only CPU running, there's nothing to do. 734 // Get all running CPUs 787 * Pause all running cpus, excluding current cpu. 861 char running, hatched, paused, resumed, halted; local in function:cpu_debug_dump 865 running = (kcpuset_isset(cpus_running, cpu_index(ci)) ? 'R' : '-'); 873 running, hatched, paused, resumed, halted, 957 * Let this CPU do its own post-running initialization 1218 * configurations. But what if we're running a _kernel_ built
|
/src/bin/ksh/ |
jobs.c | 122 #define JF_FG 0x010 /* running in foreground (also has tty pgrp) */ 279 /* kill stopped, and possibly running, jobs */ 821 int running; local in function:j_resume 842 running = 0; 847 running = 1; 853 if (running) 920 /* are there any running or stopped jobs ? */ 940 which & 2 ? "running" : ""); 1315 * from j_sigchld()). If no processes are running, the job status 1338 return; /* some processes still running */ [all...] |
/src/sys/dev/marvell/ |
mvxpsec.c | 2071 int running; local in function:mvxpsec_dispatch 2103 running = (sc->sc_flags & HW_RUNNING) ? 1: 0; 2106 if (!running && sc->sc_wait_qlen > 0) 2147 if (!running) 2153 if (!running)
|
/src/tests/usr.bin/xlint/lint1/ |
init_c99.c | 600 unsigned running: 1; member in struct:init_deeply_nested_struct::hobbies
|
/src/sys/dev/usb/ |
uhci.c | 1783 int n, running; local in function:uhci_run 1798 running = !(UREAD2(sc, UHCI_STS) & UHCI_STS_HCH); 1800 if (run == running) { 2251 /* Pipe isn't running, so start it first. */ 2466 /* Pipe isn't running, so start it first. */ 2656 /* Pipe isn't running, so start it first. */ 3817 /* Pipe isn't running, start first */
|