/src/lib/npf/ext_rndblock/ |
npfext_rndblock.c | 77 long ival; local in function:npfext_rndblock_param 87 ival = (i == 1) ? atof(val) * 100 : atol(val); 88 if (ival < params[i].min || ival > params[i].max) { 92 npf_ext_param_u32(ext, name, ival);
|
/src/sys/dev/acpi/ |
eqos_acpi.c | 142 ACPI_INTEGER ival; local in function:eqos_acpi_init_props 153 rv = acpi_dsd_integer(handle, "snps,mixed-burst", &ival); 154 if (ACPI_SUCCESS(rv) && ival) { 157 rv = acpi_dsd_integer(handle, "snps,tso", &ival); 158 if (ACPI_SUCCESS(rv) && ival) { 167 rv = acpi_dsd_integer(axi, "snps,wr_osr_lmt", &ival); 168 if (ACPI_SUCCESS(rv) && ival > 0) { 170 "snps,wr_osr_lmt", ival); 172 rv = acpi_dsd_integer(axi, "snps,rd_osr_lmt", &ival); 173 if (ACPI_SUCCESS(rv) && ival > 0) [all...] |
dwcmmc_acpi.c | 151 ACPI_INTEGER ival; local in function:dwcmmc_acpi_init_props 160 if (ACPI_SUCCESS(acpi_dsd_integer(handle, "fifo-depth", &ival))) { 161 sc->sc_fifo_depth = ival; 163 if (ACPI_SUCCESS(acpi_dsd_integer(handle, "max-frequency", &ival))) { 164 sc->sc_clock_freq = ival; 166 if (ACPI_SUCCESS(acpi_dsd_integer(handle, "bus-width", &ival))) { 167 sc->sc_bus_width = ival;
|
dwcwdt_acpi.c | 67 ACPI_INTEGER ival; local in function:dwcwdt_acpi_attach 89 if (ACPI_SUCCESS(acpi_dsd_integer(handle, "clock-frequency", &ival))) { 90 sc->sc_clkrate = ival;
|
acpi_util.c | 1271 ACPI_INTEGER ival; local in function:acpi_dsd_bool 1273 rv = acpi_dsd_integer(handle, prop, &ival); 1275 *val = ival != 0;
|
/src/games/atc/ |
grammar.y | 44 %token <ival> HeightOp 45 %token <ival> WidthOp 46 %token <ival> UpdateOp 47 %token <ival> NewplaneOp 49 %token <ival> ConstOp 50 %token <ival> LineOp 51 %token <ival> AirportOp 52 %token <ival> BeaconOp 53 %token <ival> ExitOp 55 int ival; [all...] |
lex.l | 62 [0-9]+ { yylval.ival = atoi(yytext); return(ConstOp); }
|
/src/bin/sleep/ |
sleep.c | 76 double fval, ival, val; local in function:main 141 ival = floor(val); 142 fval = (1000000000 * (val-ival)); 143 ntime.tv_sec = ival; 144 if ((double)ntime.tv_sec != ival)
|
/src/lib/libc/arch/sparc64/gen/ |
modf.S | 163 * argument. We need to store this in *ival (%i1), subtract it 166 std %f4, [%i1] ! *ival = %f4:f5; 180 std %f0, [%i1] ! *ival = val; 184 std %f0, [%i1] ! *ival = val;
|
/src/usr.sbin/altq/altqstat/ |
altqstat.c | 51 double ival = 5.0; variable in typeref:typename:double 128 ival = strtod(optarg, NULL); 181 interval = (int)(ival * 1000.0); 187 (*stat_loop)(qdiscfd, interface, count, (int)ival);
|
/src/sbin/wsconsctl/ |
map_scan.l | 93 yylval.ival = atoi(yytext);
|
map_parse.y | 89 int ival; 94 %token <ival> T_NUMBER
|
/src/lib/libc/arch/sparc/gen/ |
modf.S | 170 * argument. We need to store this in *ival (%i2), subtract it 173 std %f4, [%i2] ! *ival = %f4:f5; 189 std %f0, [%i2] ! *ival = val; 193 std %f0, [%i2] ! *ival = val;
|
/src/sys/arch/sparc/sparc/ |
oclock.c | 140 int ival; local in function:oclockattach 158 ival = intersil_clear(); 163 if ((ival & INTERSIL_INTER_PENDING) != 0) {
|
/src/usr.sbin/tprof/ |
tprof.c | 243 double ival, fval; local in function:process_stat 246 ival = floor(interval); 247 fval = (1000000000 * (interval - ival)); 248 ts.tv_sec = ival;
|
/src/sys/external/bsd/dwc2/ |
dwc2.c | 1017 uint16_t ival; local in function:dwc2_device_start 1021 ival = dpipe->pipe.up_interval; 1023 ival = ed->bInterval; 1026 if (ival < 1) { 1032 if (ival > 16) { 1037 ival = 256; 1039 ival = (1 << (ival - 1)); 1042 if (xfertype == UE_INTERRUPT && ival < 10) 1043 ival = 10 [all...] |
/src/sys/dev/usb/ |
xhci.c | 2075 DPRINTFN(1, " mps %ju ival %ju", UGETW(ed->wMaxPacketSize), 3665 DPRINTFN(4, "setting on dci %ju ival %ju mult %ju mps %#jx", 3913 uint8_t ival, mult; local in function:xhci_setup_maxburst 3953 ival = ed->bInterval; 3955 ival = pipe->up_interval; 3957 ival = xhci_bival2ival(ival, speed, xfertype); 3971 ival = 0; 4017 xpipe->xp_ival = ival; 4022 cp[0] |= XHCI_EPCTX_0_IVAL_SET(ival); 4616 int i, ival; local in function:xhci_device_isoc_enter [all...] |
uhci.c | 3321 uhci_device_setintr(uhci_softc_t *sc, struct uhci_pipe *upipe, int ival) 3329 if (ival == 0) { 3334 if (ival > UHCI_VFRAMELIST_COUNT) 3335 ival = UHCI_VFRAMELIST_COUNT; 3336 npoll = howmany(UHCI_VFRAMELIST_COUNT, ival); 3337 DPRINTF("ival=%jd npoll=%jd", ival, npoll, 0, 0); 3348 for (bestoffs = offs = 0, bestbw = ~0; offs < ival; offs++) { 3350 bw += sc->sc_vframes[MOD(i * ival + offs)].bandwidth; 3365 sqh->pos = MOD(i * ival + bestoffs) 3388 int ival; local in function:uhci_open 3827 unsigned int ival; local in function:uhci_root_intr_start [all...] |
ohci.c | 811 uint32_t s, ctl, rwc, ival, hcr, fm, per, rev, desca /*, descb */; local in function:ohci_init 1040 ival = OHCI_FM_GET_IVAL(fm); 1042 fm |= OHCI_FSMPS(ival) | ival; 1044 per = OHCI_PERIODIC(ival); /* 90% periodic */ 2092 int ival; local in function:ohci_open 2173 ival = pipe->up_interval; 2174 if (ival == USBD_DEFAULT_INTERVAL) 2175 ival = ed->bInterval; 2176 err = ohci_device_setintr(sc, opipe, ival); [all...] |
usbdi.c | 71 "int"/*ival*/, 78 "int"/*ival*/, 240 uint8_t flags, struct usbd_pipe **pipe, int ival) 278 err = usbd_setup_pipe_flags(iface->ui_dev, iface, ep, ival, &p, flags); 287 iface, address, flags, ival, p); 301 usbd_callback cb, int ival) 313 &ipipe, ival); 328 iface, address, flags, ival, cb, priv, ipipe);
|
usb_subr.c | 928 struct usbd_endpoint *ep, int ival, struct usbd_pipe **pipe) 930 return usbd_setup_pipe_flags(dev, iface, ep, ival, pipe, 0); 935 struct usbd_endpoint *ep, int ival, struct usbd_pipe **pipe, uint8_t flags) 960 p->up_interval = ival;
|
ehci.c | 1969 int ival, speed, naks; local in function:ehci_open 2112 ival = pipe->up_interval; 2113 if (ival == USBD_DEFAULT_INTERVAL) { 2121 ival = 256; 2123 ival = (1 << (ed->bInterval - 1)) / 8; 2125 ival = ed->bInterval; 2127 err = ehci_device_setintr(sc, sqh, ival); 4099 ehci_device_setintr(ehci_softc_t *sc, ehci_soft_qh_t *sqh, int ival) 4106 if (EHCI_ILEV_IVAL(lev) <= ival)
|
/src/sys/dev/ic/ |
atw.c | 2383 /* Return the 32 lsb of the last TSFT divisible by ival. */ 2385 atw_last_even_tsft(uint32_t tsfth, uint32_t tsftl, uint32_t ival) 2389 * (uint32_t)((((uint64_t)tsfth << 32) | tsftl) % ival) 2400 return ((0xFFFFFFFF % ival + 1) * tsfth + tsftl) % ival; 2430 uint32_t ival, past_even, tbtt, tsfth, tsftl; local in function:atw_predict_beacon 2446 ival = ic->ic_bss->ni_intval * IEEE80211_DUR_TU; 2454 past_even = tsftl - atw_last_even_tsft(tsfth, tsftl, ival); 2459 tbtt = past_even + ival * 10;
|
/src/sys/dev/ |
video.c | 1996 struct v4l2_frmivalenum *ival; local in function:videoioctl 2164 ival = data; 2165 return video_enum_frameival(sc, ival);
|
/src/sys/fs/nfs/server/ |
nfs_nfsdstate.c | 3865 u_long ival; member in union:nfsrv_getclientipaddr::__anon87683a62010a 3946 if (ip.ival != 0x0) { 3947 rad->sin_addr.s_addr = htonl(ip.ival);
|