Searched refs:todo (Results 1 - 25 of 62) sorted by relevance

123

/freebsd-current/contrib/tnftp/
H A DMakefile.am12 todo \
/freebsd-current/sys/crypto/openssl/
H A Dossl_chacha20.c65 size_t resid, todo, inlen, outlen; local
103 todo = rounddown(MIN(resid, MIN(inlen, outlen)),
108 todo = (uint32_t)todo;
112 next_counter = counter[0] + todo / CHACHA_BLK_SIZE;
114 todo -= next_counter * CHACHA_BLK_SIZE;
118 ChaCha20_ctr32(out, in, todo, key, counter);
128 crypto_cursor_advance(&cc_out, todo);
129 outseg += todo;
130 outlen -= todo;
167 size_t resid, todo, inlen, outlen; local
313 size_t resid, todo, inlen, outlen; local
[all...]
/freebsd-current/contrib/pjdfstest/tests/unlink/
H A D08.t15 todo Linux "According to POSIX: EPERM - The file named by path is a directory, and either the calling process does not have appropriate privileges, or the implementation prohibits using unlink() on directories."
H A D09.t39 todo FreeBSD:ZFS "Removing a file protected by SF_APPEND should return EPERM."
41 todo FreeBSD:ZFS "Removing a file protected by SF_APPEND should return EPERM."
43 todo FreeBSD:ZFS "Removing a file protected by SF_APPEND should return EPERM."
H A D10.t41 todo FreeBSD:ZFS "Removing a file from a directory protected by SF_APPEND should return EPERM."
44 todo FreeBSD:ZFS "Removing a file from a directory protected by SF_APPEND should return EPERM."
/freebsd-current/sys/crypto/
H A Dchacha20_poly1305.c44 size_t resid, todo; local
58 todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN);
59 if (todo > 0) {
60 exf->encrypt_multi(ctx, src, dst, todo);
61 exf->update(ctx, dst, todo);
62 src += todo;
63 dst += todo;
64 resid -= todo;
91 size_t resid, todo; local
124 todo
147 size_t resid, todo; local
194 size_t resid, todo; local
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/sys/
H A Dt_pipe.c79 ssize_t sz, todo, done; local
92 todo = 2 * 1024 * 1024;
93 REQUIRE_LIBC(f = malloc(todo), NULL);
126 printf("Expected: %#zx\n", (size_t)todo);
128 exit(done != todo);
141 /* We write exactly 'todo' bytes. The very first write(2)
145 while(todo > 0 && ((sz = write(pp[1], f, todo)) > 0))
146 todo -= sz;
/freebsd-current/sys/kern/
H A Dsubr_memdesc.c49 int todo; local
58 todo = min(PAGE_SIZE - page_off, size);
60 memcpy(p, cp, todo);
61 size -= todo;
62 cp += todo;
63 pa += todo;
73 int todo; local
87 todo = size;
88 if (todo > vlist->ds_len - off)
89 todo
105 int todo; local
197 int todo; local
221 int todo; local
239 memcpy(p, (char *)(uintptr_t)vlist->ds_addr + off, todo); local
253 int todo; local
475 size_t todo; local
527 size_t appended, totlen, todo; local
[all...]
/freebsd-current/contrib/pjdfstest/tests/open/
H A D11.t31 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
33 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
35 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
37 todo FreeBSD:ZFS "When fle is protected by SF_APPEND, open(O_TRUNC) should return EPERM."
/freebsd-current/contrib/pjdfstest/tests/rename/
H A D06.t34 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
36 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
51 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
53 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
H A D07.t38 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
40 [ "${flag}" = "SF_APPEND" ] && todo FreeBSD:ZFS "Renaming a file protected by SF_APPEND should return EPERM."
/freebsd-current/contrib/pjdfstest/tests/rmdir/
H A D12.t18 todo FreeBSD "According to POSIX: EEXIST or ENOTEMPTY - The path argument names a directory that is not an empty directory, or there are hard links to the directory other than dot or a single entry in dot-dot."
H A D09.t39 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
41 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
43 todo FreeBSD:ZFS "Removing a directory protected by SF_APPEND should return EPERM."
H A D10.t41 todo FreeBSD:ZFS "Removing an entry from directory protected by SF_APPEND should return EPERM."
44 todo FreeBSD:ZFS "Removing an entry from directory protected by SF_APPEND should return EPERM."
/freebsd-current/crypto/openssl/crypto/chacha/
H A Dchacha_enc.c77 size_t todo, i; local
108 todo = sizeof(buf);
109 if (len < todo)
110 todo = len;
114 for (i = 0; i < todo; i++)
116 out += todo;
117 inp += todo;
118 len -= todo;
/freebsd-current/tools/regression/posixsem/
H A Dtest.h55 void todo(const char *reason);
/freebsd-current/sys/opencrypto/
H A Dcryptosoft.c105 size_t inlen, outlen, todo; local
161 for (resid = crp->crp_payload_length; resid >= blksz; resid -= todo) {
182 todo = rounddown2(MIN(resid, MIN(inlen, outlen)), blksz);
185 exf->encrypt_multi(ctx, inblk, outblk, todo);
187 exf->decrypt_multi(ctx, inblk, outblk, todo);
192 crypto_cursor_advance(&cc_in, todo);
193 inlen -= todo;
194 inblk += todo;
201 crypto_cursor_advance(&cc_out, todo);
202 outlen -= todo;
410 size_t inlen, outlen, todo; local
744 size_t inlen, outlen, todo; local
969 size_t inlen, outlen, todo; local
[all...]
H A Dcriov.c456 size_t remain, todo; local
476 todo = MIN(remain, size);
477 m_copyback(cc->cc_mbuf, cc->cc_offset, todo, src);
478 src += todo;
479 if (todo < remain) {
480 cc->cc_offset += todo;
483 size -= todo;
500 todo = MIN(remain, size);
501 memcpy(dst, src, todo);
502 src += todo;
545 size_t remain, todo; local
[all...]
/freebsd-current/sys/dev/nvmf/controller/
H A Dnvmft_controller.c491 u_int todo; local
501 todo = m->m_len - offset;
502 if (todo > len)
503 todo = len;
504 memset(mtodo(m, offset), 0, todo); local
506 len -= todo;
509 todo = m->m_len;
510 if (todo > len)
511 todo = len;
512 memset(mtod(m, void *), 0, todo); local
525 size_t len, todo; local
[all...]
/freebsd-current/crypto/openssl/apps/
H A Dlist.c1553 } todo = { 0, }; local
1572 todo.commands = 1;
1575 todo.digest_commands = 1;
1578 todo.digest_algorithms = 1;
1581 todo.kdf_algorithms = 1;
1584 todo.random_instances = 1;
1587 todo.random_generators = 1;
1590 todo.mac_algorithms = 1;
1593 todo.cipher_commands = 1;
1596 todo
[all...]
/freebsd-current/contrib/netbsd-tests/lib/libc/locale/
H A Dt_io.c118 size_t todo = MIN((size_t)len, ib->buflen - ib->off); local
120 memcpy(buf, ib->buf + ib->off, todo);
121 ib->off += todo;
122 return todo;
/freebsd-current/usr.sbin/ntp/doc/hints/
H A DMakefile12 sun4 svr4-dell svr4_package todo vxworks.html winnt.html
/freebsd-current/contrib/unbound/cachedb/
H A Dcachedb.h66 int todo; member in struct:cachedb_qstate
/freebsd-current/tools/tools/nvmf/nvmfdd/
H A Dnvmfdd.c299 u_int todo; local
312 todo = length;
313 if (todo > block_size)
314 todo = block_size;
317 rv = read(STDIN_FILENO, buf, todo);
322 if (rv != todo) {
328 if (todo < block_size)
329 memset(buf + todo, 0, block_size - todo);
340 (void)write(STDOUT_FILENO, buf, todo);
[all...]
/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_rand.c262 unsigned done, todo; local
307 todo = num_k_bytes - done;
308 if (todo > SHA512_DIGEST_LENGTH)
309 todo = SHA512_DIGEST_LENGTH;
310 memcpy(k_bytes + done, digest, todo);
311 done += todo;

Completed in 157 milliseconds

123