Searched refs:cpr (Results 1 - 20 of 20) sorted by relevance

/netbsd-current/usr.bin/finger/
H A Dlprint.c149 int cpr; local
158 cpr = printf("%-*s idle ", (int)(maxlen - ttylen + 1), ",");
160 cpr += printf("%d day%s ", delta->tm_yday,
163 cpr += printf("%d:%02d", delta->tm_hour, delta->tm_min);
166 ++cpr;
168 return cpr;
175 int cpr, len, maxlen; local
180 cpr = 0;
253 cpr = printf("On since %s on %s", timebuf, ttybuf);
255 cpr
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/sim/frv/
H A Dregisters.h42 int cpr; /* coprocessor registers implemented */ member in struct:__anon2729
H A Dfrv.c377 frvbf_h_cpr_double_get_handler (SIM_CPU *current_cpu, UINT cpr)
382 cpr = check_register_alignment (current_cpu, cpr, 1);
384 value = GET_H_CPR (cpr);
386 value |= (USI) GET_H_CPR (cpr + 1);
391 frvbf_h_cpr_double_set_handler (SIM_CPU *current_cpu, UINT cpr, DI newval)
394 cpr = check_register_alignment (current_cpu, cpr, 1);
396 SET_H_CPR (cpr , (newval >> 32) & 0xffffffff);
397 SET_H_CPR (cpr
371 frvbf_h_cpr_double_get_handler(SIM_CPU *current_cpu, UINT cpr) argument
385 frvbf_h_cpr_double_set_handler(SIM_CPU *current_cpu, UINT cpr, DI newval) argument
423 frvbf_h_cpr_quad_set_handler(SIM_CPU *current_cpu, UINT cpr, SI *newval) argument
[all...]
H A Dregisters.c6368 control->cpr = 0;
6373 control->cpr = 0;
6378 control->cpr = 0;
6383 control->cpr = 0;
6388 control->cpr = 0;
6393 control->cpr = 1;
/netbsd-current/external/gpl3/gdb/dist/sim/frv/
H A Dregisters.h42 int cpr; /* coprocessor registers implemented */ member in struct:__anon2177
H A Dfrv.c381 frvbf_h_cpr_double_get_handler (SIM_CPU *current_cpu, UINT cpr)
386 cpr = check_register_alignment (current_cpu, cpr, 1);
388 value = GET_H_CPR (cpr);
390 value |= (USI) GET_H_CPR (cpr + 1);
395 frvbf_h_cpr_double_set_handler (SIM_CPU *current_cpu, UINT cpr, DI newval)
398 cpr = check_register_alignment (current_cpu, cpr, 1);
400 SET_H_CPR (cpr , (newval >> 32) & 0xffffffff);
401 SET_H_CPR (cpr
375 frvbf_h_cpr_double_get_handler(SIM_CPU *current_cpu, UINT cpr) argument
389 frvbf_h_cpr_double_set_handler(SIM_CPU *current_cpu, UINT cpr, DI newval) argument
427 frvbf_h_cpr_quad_set_handler(SIM_CPU *current_cpu, UINT cpr, SI *newval) argument
[all...]
H A Dregisters.c6372 control->cpr = 0;
6377 control->cpr = 0;
6382 control->cpr = 0;
6387 control->cpr = 0;
6392 control->cpr = 0;
6397 control->cpr = 1;
/netbsd-current/sys/arch/zaurus/dev/
H A Dscoop.c371 uint16_t cpr; local
383 cpr = bus_space_read_2(iot, ioh, SCOOP_CPR);
386 cpr |= SCP_CPR_5V;
388 cpr |= SCP_CPR_SD_3V;
391 if (!ISSET(cpr, SCP_CPR_5V) && !ISSET(cpr, SCP_CPR_SD_3V))
393 bus_space_write_2(iot, ioh, SCOOP_CPR, cpr | new_cpr);
396 cpr &= ~SCP_CPR_5V;
398 cpr &= ~SCP_CPR_SD_3V;
400 if (!ISSET(cpr, SCP_CPR_5
[all...]
/netbsd-current/external/cddl/osnet/dist/uts/common/fs/zfs/
H A Dtxg.c225 txg_thread_enter(tx_state_t *tx, callb_cpr_t *cpr) argument
227 CALLB_CPR_INIT(cpr, &tx->tx_sync_lock, callb_generic_cpr, FTAG);
232 txg_thread_exit(tx_state_t *tx, callb_cpr_t *cpr, kthread_t **tpp) argument
238 CALLB_CPR_EXIT(cpr); /* drops &tx->tx_sync_lock */
243 txg_thread_wait(tx_state_t *tx, callb_cpr_t *cpr, kcondvar_t *cv, clock_t time) argument
245 CALLB_CPR_SAFE_BEGIN(cpr);
252 CALLB_CPR_SAFE_END(cpr, &tx->tx_sync_lock);
458 callb_cpr_t cpr; local
461 txg_thread_enter(tx, &cpr);
482 txg_thread_wait(tx, &cpr,
538 callb_cpr_t cpr; local
[all...]
H A Darc.c4124 callb_cpr_t cpr; local
4126 CALLB_CPR_INIT(&cpr, &arc_reclaim_lock, callb_generic_cpr, FTAG);
4216 CALLB_CPR_SAFE_BEGIN(&cpr);
4219 CALLB_CPR_SAFE_END(&cpr, &arc_reclaim_lock);
4225 CALLB_CPR_EXIT(&cpr); /* drops arc_reclaim_lock */
4237 callb_cpr_t cpr; local
4240 CALLB_CPR_INIT(&cpr, &arc_dnlc_evicts_lock, callb_generic_cpr, FTAG);
4244 CALLB_CPR_SAFE_BEGIN(&cpr);
4246 CALLB_CPR_SAFE_END(&cpr, &arc_dnlc_evicts_lock);
4264 CALLB_CPR_EXIT(&cpr);
7239 callb_cpr_t cpr; local
[all...]
H A Ddbuf.c501 callb_cpr_t cpr; local
503 CALLB_CPR_INIT(&cpr, &dbuf_evict_lock, callb_generic_cpr, FTAG);
508 CALLB_CPR_SAFE_BEGIN(&cpr);
511 CALLB_CPR_SAFE_END(&cpr, &dbuf_evict_lock);
529 CALLB_CPR_EXIT(&cpr); /* drops dbuf_evict_lock */
/netbsd-current/external/bsd/mdocml/dist/
H A Dmdoc_validate.c473 const char *cp, *cpr; local
489 for (cpr = cp - 1; cpr >= p; cpr--)
490 if (*cpr != '_' && !isalnum((unsigned char)*cpr))
492 if ((cpr < p || *cpr == ' ') && cpr + 1 < cp) {
493 cpr
[all...]
/netbsd-current/sys/arch/x68k/x68k/
H A Diodevice.h73 char pad7[3]; unsigned char cpr; member in struct:dmac
/netbsd-current/sys/fs/ntfs/
H A Dntfs_vfsops.c352 int8_t cpr = ntmp->ntm_mftrecsz; local
353 if (cpr > 0)
354 ntmp->ntm_bpmftrec = ntmp->ntm_spc * cpr;
356 ntmp->ntm_bpmftrec = (1 << (-cpr)) / ntmp->ntm_bps;
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dcomplex.d482 auto cpr = c1 + a;
483 assert(cpr.re == c1.re + a);
484 assert(cpr.im == c1.im);
503 assert(rpc == cpr);
/netbsd-current/sys/arch/zaurus/zaurus/
H A Dmachdep.c577 uint16_t mcr, cdr, csr, cpr, ccr, irr, irm, imr, isr; local
583 cpr = ioreg16_read(baseaddr + SCOOP_CPR);
593 if (mcr == 0 && cdr == 0 && csr == 0 && cpr == 0 && ccr == 0 &&
/netbsd-current/external/bsd/ntp/dist/ntpq/
H A Dntpq.c3180 const char * cpr = cpl + len; local
3182 while (cpl != cpr && *(const unsigned char*)cpl <= ' ')
3184 while (cpl != cpr && *(const unsigned char*)(cpr - 1) <= ' ')
3185 --cpr;
3187 len = (size_t)(cpr - cpl);
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/std/
H A Dcomplex.d525 auto cpr = c1 + a;
526 assert(cpr.re == c1.re + a);
527 assert(cpr.im == c1.im);
546 assert(rpc == cpr);
/netbsd-current/sys/dev/ic/
H A Dcom.c537 uint32_t cpr; local
649 cpr = bus_space_read_4(sc->sc_regs.cr_iot,
651 sc->sc_fifolen = __SHIFTOUT(cpr, UART_CPR_FIFO_MODE) * 16;
/netbsd-current/sys/dev/pci/
H A Dpcireg.h566 #define PCI_CAPLIST_PTR(cpr) ((cpr) & 0xff)

Completed in 566 milliseconds