HomeSort by: relevance | last modified time | path
    Searched defs:idle (Results 1 - 25 of 56) sorted by relevancy

1 2 3

  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/
nouveau_nvkm_engine_gr_g84.c 126 bool idle, timeout = false; local in function:g84_gr_tlb_flush
137 idle = true;
139 for (tmp = nvkm_rd32(device, 0x400380); tmp && idle; tmp >>= 3) {
141 idle = false;
144 for (tmp = nvkm_rd32(device, 0x400384); tmp && idle; tmp >>= 3) {
146 idle = false;
149 for (tmp = nvkm_rd32(device, 0x400388); tmp && idle; tmp >>= 3) {
151 idle = false;
153 } while (!idle &&
157 nvkm_error(subdev, "PGRAPH TLB flush idle timeout fail\n")
    [all...]
nouveau_nvkm_engine_gr_g84.c 126 bool idle, timeout = false; local in function:g84_gr_tlb_flush
137 idle = true;
139 for (tmp = nvkm_rd32(device, 0x400380); tmp && idle; tmp >>= 3) {
141 idle = false;
144 for (tmp = nvkm_rd32(device, 0x400384); tmp && idle; tmp >>= 3) {
146 idle = false;
149 for (tmp = nvkm_rd32(device, 0x400388); tmp && idle; tmp >>= 3) {
151 idle = false;
153 } while (!idle &&
157 nvkm_error(subdev, "PGRAPH TLB flush idle timeout fail\n")
    [all...]
  /src/sys/kern/
kern_lock.c 73 bool idle; local in function:assert_sleepable
87 idle = CURCPU_IDLE_P();
91 if (__predict_false(idle) && !cold) {
92 reason = "idle";
kern_lock.c 73 bool idle; local in function:assert_sleepable
87 idle = CURCPU_IDLE_P();
91 if (__predict_false(idle) && !cold) {
92 reason = "idle";
  /src/libexec/rpc.rusersd/
rusers_proc.c 145 long idle; local in function:getidle
147 idle = 0;
159 idle = (kbd_idle < mouse_idle) ? kbd_idle : mouse_idle;
171 idle = now - st.st_atime;
172 idle = (idle + 30) / 60; /* secs->mins */
174 if (idle < 0)
175 idle = 0;
177 return idle;
197 int idle; local in function:do_names_3
244 int idle; local in function:do_names_2
    [all...]
rusers_proc.c 145 long idle; local in function:getidle
147 idle = 0;
159 idle = (kbd_idle < mouse_idle) ? kbd_idle : mouse_idle;
171 idle = now - st.st_atime;
172 idle = (idle + 30) / 60; /* secs->mins */
174 if (idle < 0)
175 idle = 0;
177 return idle;
197 int idle; local in function:do_names_3
244 int idle; local in function:do_names_2
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_ids.c 197 * amdgpu_vm_grab_idle - grab idle VMID
202 * @idle: resulting idle VMID
204 * Try to find an idle VMID, if none is idle add a fence to wait to the sync
210 struct amdgpu_vmid **idle)
226 /* Check if we have an idle VMID */
228 list_for_each_entry((*idle), &id_mgr->ids_lru, list) {
229 fences[i] = amdgpu_sync_peek_fence(&(*idle)->active, ring);
235 /* If we can't find a idle VMID to use, wait till one becomes available *
424 struct amdgpu_vmid *idle = NULL; local in function:amdgpu_vmid_grab
482 struct amdgpu_vmid *idle; local in function:amdgpu_vmid_alloc_reserved
    [all...]
amdgpu_ids.c 197 * amdgpu_vm_grab_idle - grab idle VMID
202 * @idle: resulting idle VMID
204 * Try to find an idle VMID, if none is idle add a fence to wait to the sync
210 struct amdgpu_vmid **idle)
226 /* Check if we have an idle VMID */
228 list_for_each_entry((*idle), &id_mgr->ids_lru, list) {
229 fences[i] = amdgpu_sync_peek_fence(&(*idle)->active, ring);
235 /* If we can't find a idle VMID to use, wait till one becomes available *
424 struct amdgpu_vmid *idle = NULL; local in function:amdgpu_vmid_grab
482 struct amdgpu_vmid *idle; local in function:amdgpu_vmid_alloc_reserved
    [all...]
  /src/usr.bin/who/
who.c 78 static int show_idle; /* show idle time */
285 time_t idle; local in function:print
291 idle = 0;
305 idle = now - sb.st_atime;
320 if (idle < 60)
322 else if (idle < (24 * 60 * 60))
324 (long)(idle / (60 * 60)),
325 (long)(idle % (60 * 60)) / 60);
358 (void)printf("IDLE ");
who.c 78 static int show_idle; /* show idle time */
285 time_t idle; local in function:print
291 idle = 0;
305 idle = now - sb.st_atime;
320 if (idle < 60)
322 else if (idle < (24 * 60 * 60))
324 (long)(idle / (60 * 60)),
325 (long)(idle % (60 * 60)) / 60);
358 (void)printf("IDLE ");
  /src/lib/libc/isc/
ev_timers.c 497 struct timespec idle; local in function:idle_timeout
502 idle = evSubTime(ctx->lastEventTime, this->lastTouched);
503 if (evCmpTime(idle, this->max_idle) >= 0) {
514 this->timer->inter = evSubTime(this->max_idle, idle);
ev_timers.c 497 struct timespec idle; local in function:idle_timeout
502 idle = evSubTime(ctx->lastEventTime, this->lastTouched);
503 if (evCmpTime(idle, this->max_idle) >= 0) {
514 this->timer->inter = evSubTime(this->max_idle, idle);
  /src/sys/altq/
altq_rio.h 106 int idle; /* queue was empty */ member in struct:rio::dropprec_state
108 struct timeval last; /* timestamp when queue becomes idle */
116 used for idle calibration */
altq_rio.h 106 int idle; /* queue was empty */ member in struct:rio::dropprec_state
108 struct timeval last; /* timestamp when queue becomes idle */
116 used for idle calibration */
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn10/
amdgpu_dcn10_mpc.c 143 unsigned int idle; local in function:mpc1_is_mpcc_idle
147 REG_GET(MPCC_STATUS[mpcc_id], MPCC_IDLE, &idle);
148 if (top_sel == 0xf && opp_id == 0xf && idle)
457 REG_GET_2(MPCC_STATUS[mpcc_inst], MPCC_IDLE, &s->idle,
amdgpu_dcn10_mpc.c 143 unsigned int idle; local in function:mpc1_is_mpcc_idle
147 REG_GET(MPCC_STATUS[mpcc_id], MPCC_IDLE, &idle);
148 if (top_sel == 0xf && opp_id == 0xf && idle)
457 REG_GET_2(MPCC_STATUS[mpcc_inst], MPCC_IDLE, &s->idle,
  /src/usr.bin/rusers/
rusers.c 166 char date[26], idle[11]; local in function:rusers_reply
187 strcpy(idle, "??");
189 strcpy(idle, "");
199 snprintf(idle, sizeof(idle), "%d d ", days);
201 snprintf(idle, sizeof(idle), "%2d:%02d",
204 snprintf(idle, sizeof(idle), ":%02d", minutes);
216 date, idle, remote)
    [all...]
rusers.c 166 char date[26], idle[11]; local in function:rusers_reply
187 strcpy(idle, "??");
189 strcpy(idle, "");
199 snprintf(idle, sizeof(idle), "%d d ", days);
201 snprintf(idle, sizeof(idle), "%2d:%02d",
204 snprintf(idle, sizeof(idle), ":%02d", minutes);
216 date, idle, remote)
    [all...]
  /src/sys/net/
ppp_tty.c 543 int n, ndone, done, idle; local in function:pppasyncstart
548 idle = 0;
561 idle = 1;
568 * the line may have been idle for some time.
699 if (!idle && (sc->sc_flags & SC_TIMEOUT) == 0) {
ppp_tty.c 543 int n, ndone, done, idle; local in function:pppasyncstart
548 idle = 0;
561 idle = 1;
568 * the line may have been idle for some time.
699 if (!idle && (sc->sc_flags & SC_TIMEOUT) == 0) {
  /src/sys/arch/macppc/dev/
lightbar.c 233 * bright, idle as off
241 int all, sys, idle, syst, i; local in function:lightbar_update
245 idle = (int)(cp_time[CP_IDLE] - prev[CP_IDLE]);
247 all = (total - idle) * 8 / total;
lightbar.c 233 * bright, idle as off
241 int all, sys, idle, syst, i; local in function:lightbar_update
245 idle = (int)(cp_time[CP_IDLE] - prev[CP_IDLE]);
247 all = (total - idle) * 8 / total;
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/inc/hw/
mpc.h 137 uint32_t idle; member in struct:mpcc_state
  /src/sys/netinet/
dccp_tfrc.h 94 u_int8_t idle; member in struct:tfrc_send_ccb
  /src/sys/dev/usb/
irmce.c 400 bool idle = false; local in function:irmce_rc6_decode
425 idle = true;
434 if (!idle)

Completed in 33 milliseconds

1 2 3