Searched refs:rval (Results 226 - 250 of 498) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gcc.old/dist/libgcc/config/ia64/
H A Dunwind-ia64.c1920 unw_word rval;
1925 rval = r->val;
1929 if (rval >= 32)
1930 addr = ia64_rse_skip_regs ((unw_word *) context->bsp, rval - 32);
1931 else if (rval >= 2)
1932 addr = context->ireg[rval - 2].loc;
1933 else if (rval == 0)
1943 if (rval >= 2 && rval < 32)
1944 addr = context->fr_loc[rval
1912 unw_word rval; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libgcc/config/ia64/
H A Dunwind-ia64.c1920 unw_word rval;
1925 rval = r->val;
1929 if (rval >= 32)
1930 addr = ia64_rse_skip_regs ((unw_word *) context->bsp, rval - 32);
1931 else if (rval >= 2)
1932 addr = context->ireg[rval - 2].loc;
1933 else if (rval == 0)
1943 if (rval >= 2 && rval < 32)
1944 addr = context->fr_loc[rval
1912 unw_word rval; local
[all...]
/netbsd-current/sys/arch/alpha/pci/
H A Dpci_swiz_bus_io_chipdep.c645 register uint8_t rval; local
655 rval = ((val) >> (8 * offset)) & 0xff;
657 return rval;
665 register uint16_t rval; local
675 rval = ((val) >> (8 * offset)) & 0xffff;
677 return rval;
685 register uint32_t rval; local
695 rval = ((val) >> (8 * offset)) & 0xffffffff;
697 rval = val;
700 return rval;
[all...]
/netbsd-current/external/bsd/nvi/dist/common/
H A Drecover.c262 int fd, rval; local
307 rval = 0;
321 rval = 1;
326 err: rval = 1;
331 rval = 1;
333 return (rval);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/cli/
H A Dcli-option.c75 option_def_and_value (option_def_and_value &&rval) argument
76 : option (rval.option),
77 ctx (rval.ctx),
78 value (std::move (rval.value))
80 clear_value (rval.option, rval.value);
/netbsd-current/external/gpl3/gdb/dist/gdb/cli/
H A Dcli-option.c75 option_def_and_value (option_def_and_value &&rval) argument
76 : option (rval.option),
77 ctx (rval.ctx),
78 value (std::move (rval.value))
80 clear_value (rval.option, rval.value);
/netbsd-current/usr.bin/ftp/
H A Dmain.c140 int ch, rval; local
536 rval = auto_put(argc, argv, upload_path);
542 exit(rval);
545 rval = auto_fetch(argc, argv);
546 if (rval >= 0) /* -1 == connected and cd-ed */
552 if ((rval = sigsetjmp(toplevel, 1)))
/netbsd-current/external/bsd/nvi/dist/cl/
H A Dcl_main.c64 int rval; local
134 rval = editor(wp, argc, argv);
172 exit (rval);
/netbsd-current/usr.bin/showmount/
H A Dshowmount.c245 int rval; local
253 rval = (int) clnt_call(client, procnum,
258 return rval;
/netbsd-current/external/bsd/ntp/dist/util/
H A Dtg.c264 int rval, temp, arg, sw, ptr; local
332 rval = ioctl(fd, AUDIO_GETINFO, &info);
333 if (rval < 0) {
/netbsd-current/usr.bin/sed/
H A Dmain.c112 static int rval; /* Exit status */ variable
225 exit(rval);
459 rval = 1;
/netbsd-current/sys/arch/news68k/dev/
H A Dzs.c311 int rval; local
313 rval = zsc_intr_hard(zsc);
320 return rval;
/netbsd-current/external/cddl/osnet/dev/dtrace/i386/
H A Ddtrace_subr.c76 int rval; local
79 if ((rval = hdlr->dtih_func(addr, frame, eax)) != 0)
80 return (rval);
/netbsd-current/sys/dev/mii/
H A Dmicphy.c329 uint16_t rval __debugused;
334 PHY_READ(sc, KSZ_XREG_READ, &rval);
335 KDASSERT(wval == rval);
/netbsd-current/sys/arch/macppc/dev/
H A Dawacs.c1081 int rval; local
1085 rval = 15 - ((right & 0xf0) >> 4);
1086 DPRINTF("speaker_volume %d %d\n", lval, rval);
1089 sc->sc_codecctl4 |= (lval << 6) | rval;
1121 int rval; local
1125 rval = 15 - ((right & 0xf0) >> 4);
1126 DPRINTF("ext_volume %d %d\n", lval, rval);
1129 sc->sc_codecctl2 |= (lval << 6) | rval;
1194 int rval; local
1197 rval
[all...]
/netbsd-current/external/bsd/nvi/dist/vi/
H A Dv_event.c101 int rval; local
108 rval = api_opts_set(sp, vp->ev.e_str1, p2,
111 (void)sp->gp->scr_reply(sp, rval, NULL);
113 return (rval);
/netbsd-current/sys/arch/mipsco/obio/
H A Dzs.c324 int unit, rval, softreq; local
326 rval = 0;
331 rval |= zsc_intr_hard(zsc);
340 return rval;
/netbsd-current/libexec/getty/
H A Dmain.c188 int rval; local
260 rval = 0;
343 } else if ((rval = getname()) == 2) {
350 if (rval || AL || NN) {
/netbsd-current/sbin/fsck/
H A Dfsck.c99 int i, rval; local
237 rval = checkfs(type, blockcheck(spec), *argv, NULL, NULL);
238 if (rval > ret)
239 ret = rval;
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dm68hc11-tdep.c990 LONGEST rval;
994 rval = get_frame_register_unsigned (frame, regno);
996 rval = get_frame_register_signed (frame, regno);
1001 fprintf_filtered (file, "0x%02x ", (unsigned char) rval);
1003 print_longest (file, 'd', 1, rval);
1013 (unsigned) rval);
1017 fprintf_filtered (file, "0x%04x ", (unsigned) rval);
1020 print_longest (file, 'd', 1, rval);
1028 unsigned char l = rval & 0xff;
988 LONGEST rval; local
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dm68hc11-tdep.c1004 LONGEST rval;
1008 rval = get_frame_register_unsigned (frame, regno);
1010 rval = get_frame_register_signed (frame, regno);
1015 gdb_printf (file, "0x%02x ", (unsigned char) rval);
1017 print_longest (file, 'd', 1, rval);
1030 (unsigned) rval);
1034 gdb_printf (file, "0x%04x ", (unsigned) rval);
1037 print_longest (file, 'd', 1, rval);
1045 unsigned char l = rval & 0xff;
1002 LONGEST rval; local
/netbsd-current/usr.sbin/sysinst/
H A Dnet.c329 int rval; local
338 rval = ioctl(sock, cmd, ifr);
341 return rval;
348 int rval; local
356 rval = ioctl(sock, cmd, ifmr);
359 return rval;
987 int rval; local
1000 rval = run_program(RUN_DISPLAY | RUN_PROGRESS | RUN_XFER_DIR,
1005 return rval ? SET_RETRY : SET_OK;
H A Dconfigmenu.c242 int rval; local
255 rval = 0;
257 rval = 1;
259 return rval;
/netbsd-current/bin/ls/
H A Dls.c85 int rval = EXIT_SUCCESS; /* exit value - set if error encountered */ variable
406 return rval;
449 rval = EXIT_FAILURE;
534 rval = EXIT_FAILURE;
/netbsd-current/external/bsd/pcc/dist/pcc/arch/vax/
H A Dlocal2.c694 if( o==REG ) return( p->rval );
696 return( p->left->rval );
697 if( o==OREG && !R2TEST(p->rval) && (p->type==INT || p->type==UNSIGNED || ISPTR(p->type)) )
698 return( p->rval + 0200*1 );
699 if( o==INCR && p->left->op==REG ) return( p->left->rval + 0200*2 );
700 if( o==ASG MINUS && p->left->op==REG) return( p->left->rval + 0200*4 );
703 return( p->left->left->rval + 0200*(1+2) );
711 if( tyl==1 && p->op==REG && (p->type==INT || p->type==UNSIGNED) ) return( p->rval );
715 return( p->left->rval );
1089 ptemp->rval
[all...]

Completed in 431 milliseconds

1234567891011>>