Searched refs:rv (Results 101 - 125 of 1363) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/usr.sbin/puffs/rump_fdesc/
H A Drump_fdesc.c47 int rv; local
53 rv = p2k_run_fs(MOUNT_FDESC, canon_dev, canon_dir, mntflags,
55 if (rv)
/netbsd-6-1-5-RELEASE/usr.sbin/puffs/rump_kernfs/
H A Drump_kernfs.c45 int rv; local
51 rv = p2k_run_fs(MOUNT_KERNFS, canon_dev, canon_dir, mntflags,
53 if (rv)
/netbsd-6-1-5-RELEASE/usr.sbin/puffs/rump_tmpfs/
H A Drump_tmpfs.c59 int rv; local
65 rv = p2k_run_fs(MOUNT_TMPFS, canon_dev, canon_dir, mntflags,
67 if (rv)
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/
H A Dtables.c149 int sz, rv;
166 if ((rv = yytbl_writen (wr, th->th_version, sz)) != sz)
168 bwritten += rv;
171 if ((rv = yytbl_writen (wr, th->th_name, sz)) != sz)
173 bwritten += rv;
176 if ((rv = yytbl_write_pad64 (wr)) < 0)
178 bwritten += rv;
195 int rv;
200 if ((rv = yytbl_write16 (wr, td->td_id)) < 0)
202 bwritten += rv;
148 int sz, rv; local
194 int rv; local
272 int rv; local
289 size_t bytes, rv; local
308 size_t bytes, rv; local
326 size_t bytes, rv; local
[all...]
/netbsd-6-1-5-RELEASE/usr.sbin/installboot/arch/
H A Dhp700.c76 ssize_t rv; local
85 rv = pread(params->fsfd, bb, sizeof bb, 0);
86 if (rv == -1) {
89 } else if (rv != sizeof bb) {
108 rv = pwrite(params->fsfd, bb, sizeof bb, 0);
109 if (rv == -1) {
112 } else if (rv != HP700_BOOT_BLOCK_SIZE) {
135 ssize_t rv; local
146 rv = pread(params->fsfd, &label, HP700_BOOT_BLOCK_SIZE, 0);
147 if (rv
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/acpi/
H A Dacpi_util.c93 ACPI_STATUS rv; local
102 rv = AcpiEvaluateObject(handle, path, NULL, &buf);
104 if (ACPI_FAILURE(rv))
105 return rv;
149 ACPI_STATUS rv; local
151 rv = acpi_eval_struct(handle, path, &buf);
153 if (ACPI_FAILURE(rv))
154 return rv;
159 rv = AE_TYPE;
164 rv
240 ACPI_STATUS rv = AE_OK; local
287 ACPI_STATUS rv; local
346 ACPI_STATUS rv; local
389 ACPI_STATUS rv; local
452 ACPI_STATUS rv; local
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/ic/
H A Dtpm.c226 int to, rv; local
244 rv = tsleep(sc->sc_init, PRIBIO | PCATCH, "tpm_locality", 1);
245 if (rv && rv != EWOULDBLOCK) {
248 __func__, rv);
250 return rv;
270 int burst, to, rv; local
290 rv = tsleep(sc, PRIBIO | PCATCH, "tpm_getburst", 1);
291 if (rv && rv !
357 int rv; local
382 int rv, to; local
452 int re, to, rv; local
549 int rv; local
602 int rv, n, bcnt; local
643 int rv, r; local
711 int rv = 0; local
822 int i, rv = 0; local
894 int to, rv; local
926 int to, rv; local
965 tpm_legacy_end(struct tpm_softc *sc, int flag, int rv) argument
1039 int rv, s; local
1116 int n, rv, s; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/shark/ofw/
H A Dcom_ofisa_machdep.c59 int rv; local
61 rv = 0;
71 rv = 4;
73 return (rv);
H A Dofisa_machdep.c82 int rv; local
84 rv = 0;
93 rv = 4;
95 return (rv);
H A Dwdc_ofisa_machdep.c59 int rv; local
61 rv = 0;
70 rv = 4;
72 return (rv);
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/ahdilabel/
H A Dmagic.c43 int rv = 1; local
61 rv = -3;
68 rv = -1;
70 return (rv);
/netbsd-6-1-5-RELEASE/lib/libc/compat/sys/
H A Dcompat_getrusage.c68 int rv; local
70 if ((rv = __getrusage50(who, &ru)) == -1)
71 return rv;
73 return rv;
/netbsd-6-1-5-RELEASE/lib/libc/gdtoa/
H A DstrtoIQ.c46 int k, rv[2]; local
53 k = strtoIg(s, sp, &fpi, exp, B, rv);
56 ULtoQ(L, B[0]->x, exp[0], rv[0]);
59 ULtoQ(M, B[1]->x, exp[1], rv[1]);
H A DstrtoId.c46 int k, rv[2]; local
52 k = strtoIg(s, sp, &fpi, exp, B, rv);
55 ULtod((ULong*)f0, B[0]->x, exp[0], rv[0]);
58 ULtod((ULong*)f1, B[1]->x, exp[1], rv[1]);
H A DstrtoIf.c46 int k, rv[2]; local
52 k = strtoIg(s, sp, &fpi, exp, B, rv);
55 ULtof((ULong*)f0, B[0]->x, exp[0], rv[0]);
58 ULtof((ULong*)f1, B[1]->x, exp[1], rv[1]);
H A DstrtoIg.c44 int i, nb, nw, nw1, rv, rv1, swap; local
49 rv = strtodg(s00, se, fpi, exp, b->x);
50 if (rv == STRTOG_NoMemory)
51 return rv;
52 if (!(rv & STRTOG_Inexact)) {
54 return *rvp = rv;
57 rv1 = rv ^ STRTOG_Inexact;
67 if (rv & STRTOG_Inexlo) {
70 if ((rv & STRTOG_Retmask) == STRTOG_Zero) {
88 else if ((rv
[all...]
H A DstrtoIx.c46 int k, rv[2]; local
53 k = strtoIg(s, sp, &fpi, exp, B, rv);
56 ULtox(L, B[0]->x, exp[0], rv[0]);
59 ULtox(M, B[1]->x, exp[1], rv[1]);
H A DstrtoIxL.c46 int k, rv[2]; local
53 k = strtoIg(s, sp, &fpi, exp, B, rv);
56 ULtoxL(L, B[0]->x, exp[0], rv[0]);
59 ULtoxL(M, B[1]->x, exp[1], rv[1]);
/netbsd-6-1-5-RELEASE/lib/libc/stdlib/
H A Dgetenv.c85 int rv; local
95 rv = -1;
102 rv = 0;
112 return rv;
/netbsd-6-1-5-RELEASE/lib/libc/sys/
H A Dadjtime.c60 int rv; local
67 rv = ____adjtime50(delta, olddelta);
72 if (rv != -1 || errno != EPERM)
73 return rv;
H A Dclock_settime.c62 int rv; local
69 rv = ____clock_settime50(clock_id, tp);
74 if (rv != -1 || errno != EPERM)
75 return rv;
H A Dsettimeofday.c62 int rv; local
69 rv = ____settimeofday50(tv, tzp);
77 if (rv != -1 || errno != EPERM)
78 return rv;
/netbsd-6-1-5-RELEASE/usr.bin/btkey/
H A Dfile.c55 bool rv = false; local
85 rv = true;
89 return rv;
100 bool rv = false; local
115 rv = true;
119 return rv;
131 bool rv = false; local
146 rv = prop_dictionary_set(db, bt_ntoa(&laddr, NULL), dev);
148 if (rv == false)
156 rv
179 bool rv = false; local
[all...]
/netbsd-6-1-5-RELEASE/sys/rump/fs/lib/libsyspuffs/
H A Dpuffs_rumpglue.c72 register_t rv; local
89 &off, 0, &rv);
99 while (rv) {
100 n = rumpuser_write(pap->comfd, buf, rv, &error);
105 rv -= n;
119 register_t rv; local
152 rv = 0;
155 &off, 0, &rv);
158 KASSERT(rv == phdr->pth_framelen);
169 int rv; local
[all...]
/netbsd-6-1-5-RELEASE/crypto/external/cpl/tpm-tools/dist/src/data_mgmt/
H A Ddata_passwd.c116 CK_RV rv = CKR_OK; local
128 rv = openToken( g_pszToken );
129 if ( rv != CKR_OK )
139 rv = openTokenSession( CKF_RW_SESSION, &hSession );
140 if ( rv != CKR_OK )
157 rv = loginToken( hSession, tUser, pszPin );
158 if ( rv != CKR_OK )
178 rv = setPin( hSession, pszPin, pszNewPin );
179 if ( rv == CKR_OK )
182 if ( ( rv
[all...]

Completed in 411 milliseconds

1234567891011>>