/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/donna/ |
poly1305_donna.c | 22 unsigned long long want = (poly1305_block_size - st->leftover); local in function:poly1305_update 24 if (want > bytes) { 25 want = bytes; 27 for (i = 0; i < want; i++) { 30 bytes -= want; 31 m += want; 32 st->leftover += want; 42 unsigned long long want = (bytes & ~(poly1305_block_size - 1)); local in function:poly1305_update 44 poly1305_blocks(st, m, want); 45 m += want; [all...] |
/src/tests/kernel/kqueue/ |
t_proc1.c | 103 u_int want; local in function:ATF_TC_BODY 120 want = NOTE_EXIT | NOTE_FORK | NOTE_EXEC; 124 /* wait until we get all events we want */ 125 while (want) { 130 want &= ~NOTE_EXIT; 134 want &= ~NOTE_EXEC; 138 want &= ~NOTE_FORK;
|
/src/usr.bin/last/ |
want.c | 1 /* $NetBSD: want.c,v 1.17 2012/03/15 03:04:05 dholland Exp $ */ 35 static int want(struct utmp *, int); 175 if (want(bp, NO)) { 192 if (want(bp, NO)) { 217 if (namep[0] && want(bp, YES)) { 264 * want -- 265 * see if want this entry 268 want(struct utmp *bp, int check) function in typeref:typename:int
|
last.c | 382 #include "want.c" 393 #define want wantx macro 404 #include "want.c"
|
/src/usr.sbin/btattach/ |
btattach.c | 450 size_t count, want; local in function:uart_recv_pkt 461 want = uart_getc(fd, iov, ioc, &count); 467 want = uart_getc(fd, iov, ioc, &count) | /* LSB */ 474 want = uart_getc(fd, iov, ioc, &count); 481 while (want-- > 0)
|
/src/sys/netbt/ |
hci_link.c | 429 uint16_t handle, want; local in function:hci_acl_recv 513 m_copydata(m, 0, sizeof(want), &want); 514 want = le16toh(want); 517 if (got < want) /* wait for more */ 522 if (got > want) {
|
/src/common/dist/zlib/ |
gzguts.h | 181 unsigned want; /* requested buffer size, default is GZBUFSIZE */ member in struct:__anone1a3ef820108
|
/src/usr.bin/make/unit-tests/ |
opt-jobs.mk | 22 . warning ${arg}:${.newline} have: ${OUTPUT:[2..-1]}${.newline} want: ${EXPECT.${arg}} target 49 . warning ${arg}:${.newline} have: ${OUTPUT:[2..-1]}${.newline} want: ${EXPECT.${arg}} target
|
/src/usr.bin/db/ |
db.c | 512 DBT key, val, want; local in function:db_seq 517 /* remember key in want, since db->seq() changes key */ 518 want.data = key.data; 519 want.size = key.size; 524 if (key.size != want.size || 525 0 != strcmp((char *)key.data, (char *)want.data)) { 556 free(want.data); 608 if (vp == NULL) /* don't split if don't want value */
|
/src/usr.bin/units/ |
units.c | 733 showanswer(struct unittype * have, struct unittype * want) 735 if (compareunits(have, want)) { 736 if (compareunitsreciprocal(have, want)) { 739 showunit(want); 743 precision, 1 / (have->factor * want->factor), 744 precision, want->factor * have->factor); 749 precision, have->factor / want->factor, 750 precision, want->factor / have->factor); 863 struct unittype have, want; local in function:main 927 initializeunit(&want); [all...] |
/src/sys/external/isc/libsodium/dist/src/libsodium/crypto_onetimeauth/poly1305/sse2/ |
poly1305_sse2.c | 766 unsigned long long want = (poly1305_block_size - st->leftover); local in function:poly1305_update 768 if (want > bytes) { 769 want = bytes; 771 for (i = 0; i < want; i++) { 774 bytes -= want; 775 m += want; 776 st->leftover += want; 786 unsigned long long want = (bytes & ~(poly1305_block_size - 1)); local in function:poly1305_update 788 poly1305_blocks(st, m, want); 789 m += want; [all...] |
/src/usr.sbin/sysinst/ |
bsddisklabel.c | 1233 * dummy entries (when we do not actually want the 1455 * Now it gets tricky: we want the wanted partitions in order 1467 const struct part_usage_info *want = &wanted->infos[i]; local in function:apply_settings_to_partitions 1469 if (want->cur_part_id == NO_PART) 1479 ps->pscheme->set_part_info(ps, want->cur_part_id, 1494 struct part_usage_info *want = &wanted->infos[i]; local in function:apply_settings_to_partitions 1496 if (want->cur_part_id != NO_PART) 1498 if (!(want->flags & PUIFLAG_ADD_OUTER)) 1500 if (want->size <= 0) 1504 &space, 1, want->size-2*outer_align 1545 struct part_usage_info *want = &wanted->infos[i]; local in function:apply_settings_to_partitions 1632 struct part_usage_info *want = &wanted->infos[i]; local in function:apply_settings_to_partitions [all...] |
/src/sys/dev/usb/ |
ubt.c | 1702 int i, size, got, want; local in function:ubt_recv_sco_complete 1758 want = sizeof(hci_scodata_hdr_t); 1759 if (got >= want) 1760 want += mtod(m, hci_scodata_hdr_t *)->length ; 1764 want = 0; 1786 want = sizeof(hci_scodata_hdr_t); 1789 if (got + size > want) 1790 size = want - got; 1798 if (got == want) { 1801 * length to our want count. Send complet [all...] |
uhso.c | 2087 size_t got, len, want; local in function:uhso_ifnet_input 2124 want = mtod(m, struct ip *)->ip_hl << 2; 2126 || want != sizeof(struct ip)) { 2129 mtod(m, struct ip *)->ip_v, want); 2137 if (got < want) { 2138 len = MIN(want - got, cc); 2144 if (got < want) { 2146 "(got %zd want %zd)\n", got, want); 2155 want = ntohs(mtod(m, struct ip *)->ip_len) [all...] |
/src/lib/librefuse/ |
fuse.h | 124 uint32_t want; /* Added on FUSE 2.8. */ member in struct:fuse_conn_info 142 * fuse_conn_info.want */
|
/src/sys/dev/pci/ixgbe/ |
ixv.c | 3528 int want, queues, msgs; local in function:ixv_configure_interrupts 3547 * Want vectors for the queues, 3550 want = queues + 1; 3551 if (msgs >= want) 3552 msgs = want; 3556 "%d vectors but %d queues wanted!\n", msgs, want);
|
ixgbe.c | 7066 int want, queues, msgs; local in function:ixgbe_configure_interrupts 7112 * Want one vector (RX/TX pair) per queue 7115 want = queues + 1; 7116 if (msgs >= want) 7117 msgs = want; 7120 "%d vectors but %d queues wanted!\n", msgs, want);
|