| /freebsd/sys/compat/linuxkpi/common/include/net/ |
| H A D | cfg80211.h | 58 #define TODO(fmt, ...) if (linuxkpi_debug_80211 & D80211_TODO) \ macro 59 printf("%s:%d: XXX LKPI80211 TODO " fmt "\n", __func__, __LINE__, ##__VA_ARGS__) 67 #define WIPHY_PARAM_FRAG_THRESHOLD __LINE__ /* TODO FIXME brcmfmac */ 68 #define WIPHY_PARAM_RETRY_LONG __LINE__ /* TODO FIXME brcmfmac */ 69 #define WIPHY_PARAM_RETRY_SHORT __LINE__ /* TODO FIXME brcmfmac */ 70 #define WIPHY_PARAM_RTS_THRESHOLD __LINE__ /* TODO FIXME brcmfmac */ 72 #define CFG80211_SIGNAL_TYPE_MBM __LINE__ /* TODO FIXME brcmfmac */ 152 /* TODO FIXME */ 253 /* TODO FIXME */ 269 /* XXX TODO */ [all …]
|
| H A D | mac80211.h | 48 #define ARPHRD_IEEE80211_RADIOTAP __LINE__ /* XXX TODO brcmfmac */ 75 #define CFG80211_TESTMODE_CMD(_x) /* XXX TODO */ 76 #define CFG80211_TESTMODE_DUMP(_x) /* XXX TODO */ 209 /* TODO FIXME */ 216 /* TODO FIXME */ 283 /* TODO FIXME */ 294 __be32 arp_addr_list[1]; /* XXX TODO */ 362 /* TODO FIXME */ 399 /* TODO FIXME */ 412 /* TODO FIXME */ [all …]
|
| /freebsd/sys/crypto/openssl/ |
| H A D | ossl_chacha20.c | 65 size_t resid, todo, inlen, outlen; in ossl_chacha20() local 103 todo = rounddown(MIN(resid, MIN(inlen, outlen)), in ossl_chacha20() 108 todo = (uint32_t)todo; in ossl_chacha20() 112 next_counter = counter[0] + todo / CHACHA_BLK_SIZE; in ossl_chacha20() 114 todo -= next_counter * CHACHA_BLK_SIZE; in ossl_chacha20() 118 ChaCha20_ctr32(out, in, todo, key, counter); in ossl_chacha20() 128 crypto_cursor_advance(&cc_out, todo); in ossl_chacha20() 129 outseg += todo; in ossl_chacha20() 130 outlen -= todo; in ossl_chacha20() 135 crypto_cursor_advance(&cc_in, todo); in ossl_chacha20() [all …]
|
| /freebsd/sys/crypto/ |
| H A D | chacha20_poly1305.c | 44 size_t resid, todo; in chacha20_poly1305_encrypt() local 58 todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN); in chacha20_poly1305_encrypt() 59 if (todo > 0) { in chacha20_poly1305_encrypt() 60 exf->encrypt_multi(ctx, src, dst, todo); in chacha20_poly1305_encrypt() 61 exf->update(ctx, dst, todo); in chacha20_poly1305_encrypt() 62 src += todo; in chacha20_poly1305_encrypt() 63 dst += todo; in chacha20_poly1305_encrypt() 64 resid -= todo; in chacha20_poly1305_encrypt() 91 size_t resid, todo; in chacha20_poly1305_decrypt() local 124 todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN); in chacha20_poly1305_decrypt() [all …]
|
| /freebsd/sys/kern/ |
| H A D | subr_memdesc.c | 49 int todo; in phys_copyback() local 58 todo = min(PAGE_SIZE - page_off, size); in phys_copyback() 60 memcpy(p, cp, todo); in phys_copyback() 61 size -= todo; in phys_copyback() 62 cp += todo; in phys_copyback() 63 pa += todo; in phys_copyback() 73 int todo; in vlist_copyback() local 87 todo = size; in vlist_copyback() 88 if (todo > vlist->ds_len - off) in vlist_copyback() 89 todo = vlist->ds_len - off; in vlist_copyback() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_syscalls_netbsd.inc | 150 /* TODO */ 155 /* TODO */ 157 PRE_SYSCALL(compat_43_ocreat)(void *path_, long long mode_) { /* TODO */ } 159 /* TODO */ 215 /* TODO */ 219 /* TODO */ 254 /* TODO */ 258 /* TODO */ 262 /* TODO */ 266 /* TODO */ [all …]
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/soc/mediatek/ |
| H A D | mtk_wed.h | 17 #define mtk_wed_device_start(_dev, _mask) do { pr_debug("%s: TODO\n", __func__); } while(0) 18 #define mtk_wed_device_detach(_dev) do { pr_debug("%s: TODO\n", __func__); } while(0) 20 #define mtk_wed_device_irq_set_mask(_dev, _mask) do { pr_debug("%s: TODO\n", __func__); } while(0) 21 #define mtk_wed_device_update_msg(_dev, _id, _msg, _len) ({ pr_debug("%s: TODO\n", __func__); -ENOD… 22 #define mtk_wed_device_dma_reset(_dev) do { pr_debug("%s: TODO\n", __func__); } while (0) 24 do { pr_debug("%s: TODO\n", __func__); } while (0) 25 #define mtk_wed_device_stop(_dev) do { pr_debug("%s: TODO\n", __func__); } while(0) 26 #define mtk_wed_device_start_hw_rro(_dev, _mask, _b) do { pr_debug("%s: TODO\n", __func__); } while… 27 #define mtk_wed_device_setup_tc(_dev, _ndev, _type, _tdata) ({ pr_debug("%s: TODO\n", __func__); -E… 33 pr_debug("%s: TODO\n", __func__); in mtk_wed_device_active() [all …]
|
| /freebsd/sys/opencrypto/ |
| H A D | criov.c | 456 size_t remain, todo; in crypto_cursor_copyback() local 476 todo = MIN(remain, size); in crypto_cursor_copyback() 477 m_copyback(cc->cc_mbuf, cc->cc_offset, todo, src); in crypto_cursor_copyback() 478 src += todo; in crypto_cursor_copyback() 479 if (todo < remain) { in crypto_cursor_copyback() 480 cc->cc_offset += todo; in crypto_cursor_copyback() 483 size -= todo; in crypto_cursor_copyback() 500 todo = MIN(remain, size); in crypto_cursor_copyback() 501 memcpy(dst, src, todo); in crypto_cursor_copyback() 502 src += todo; in crypto_cursor_copyback() [all …]
|
| H A D | cryptosoft.c | 105 size_t inlen, outlen, todo; in swcr_encdec() local 161 for (resid = crp->crp_payload_length; resid >= blksz; resid -= todo) { in swcr_encdec() 182 todo = rounddown2(MIN(resid, MIN(inlen, outlen)), blksz); in swcr_encdec() 185 exf->encrypt_multi(ctx, inblk, outblk, todo); in swcr_encdec() 187 exf->decrypt_multi(ctx, inblk, outblk, todo); in swcr_encdec() 192 crypto_cursor_advance(&cc_in, todo); in swcr_encdec() 193 inlen -= todo; in swcr_encdec() 194 inblk += todo; in swcr_encdec() 201 crypto_cursor_advance(&cc_out, todo); in swcr_encdec() 202 outlen -= todo; in swcr_encdec() [all …]
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/ |
| H A D | nl80211.h | 103 #define NL80211_MAX_SUPP_REG_RULES 512 /* TODO FIXME, random */ 105 #define NL80211_BSS_CHAN_WIDTH_20 __LINE__ /* TODO FIXME, brcmfmac */ 121 /* XXX TODO */ 130 /* XXX TODO */ 148 /* XXX TODO */ 161 /* XXX TODO */ 181 /* XXX TODO */ 189 /* XXX TODO */ 198 /* XXX TODO */ 204 /* XXX TODO */ [all …]
|
| H A D | mhi.h | 145 /* XXX TODO */ in mhi_device_get_sync() 152 /* XXX TODO */ in mhi_device_put() 160 /* XXX TODO */ in mhi_prepare_for_power_up() 167 /* XXX TODO */ in mhi_sync_power_up() 174 /* XXX TODO */ in mhi_async_power_up() 181 /* XXX TODO */ in mhi_power_down() 187 /* XXX TODO */ in mhi_unprepare_after_power_down() 195 /* XXX TODO */ in mhi_pm_suspend() 202 /* XXX TODO */ in mhi_pm_resume() 209 /* XXX TODO */ in mhi_pm_resume_force() [all …]
|
| H A D | netdevice.h | 344 pr_debug("%s: TODO\n", __func__); in netif_receive_skb_list() 351 pr_debug("%s: TODO\n", __func__); in napi_gro_receive() 359 pr_debug("%s: TODO\n", __func__); in ether_setup() 366 pr_debug("%s: TODO\n", __func__); in dev_net_set() 373 pr_debug("%s: TODO\n", __func__); in dev_set_threaded() 382 pr_debug("%s: TODO\n", __func__); in netif_carrier_ok() 389 pr_debug("%s: TODO\n", __func__); in netif_carrier_off() 395 pr_debug("%s: TODO\n", __func__); in netif_carrier_on() 403 pr_debug("%s: TODO\n", __func__); in netif_queue_stopped() 410 pr_debug("%s: TODO\n", __func__); in netif_stop_queue() [all …]
|
| H A D | platform_device.h | 53 pr_debug("%s: TODO\n", __func__); in platform_driver_register() 61 pr_debug("%s: TODO\n", __func__); in dev_get_platdata() 70 pr_debug("%s: TODO\n", __func__); in platform_driver_probe() 78 pr_debug("%s: TODO\n", __func__); in platform_driver_unregister() 85 pr_debug("%s: TODO\n", __func__); in platform_device_register() 93 pr_debug("%s: TODO\n", __func__); in platform_device_unregister()
|
| /freebsd/sys/compat/linuxkpi/common/include/net/page_pool/ |
| H A D | helpers.h | 19 pr_debug("%s: TODO\n", __func__); in page_pool_create() 27 pr_debug("%s: TODO\n", __func__); in page_pool_destroy() 35 pr_debug("%s: TODO\n", __func__); in page_pool_dev_alloc_frag() 43 pr_debug("%s: TODO\n", __func__); in page_pool_get_dma_addr() 51 pr_debug("%s: TODO\n", __func__); in page_pool_get_dma_dir() 60 pr_debug("%s: TODO\n", __func__); in page_pool_put_full_page() 67 pr_debug("%s: TODO\n", __func__); in page_pool_ethtool_stats_get_count() 75 pr_debug("%s: TODO\n", __func__); in page_pool_ethtool_stats_get_strings()
|
| /freebsd/contrib/bmake/unit-tests/ |
| H A D | char-005c-reverse-solidus.mk | 6 # TODO 7 # TODO 8 # TODO 10 # TODO: Where is this character used normally? 11 # TODO: What are the edge cases? 13 # TODO: escape '#' in lines 14 # TODO: escape '#' in comments 15 # TODO: escape ':' in modifiers 16 # TODO: escape any character in condition strings
|
| H A D | dep-exclam.mk | 6 # TODO: Is this related to OP_PHONY? 7 # TODO: Is this related to OP_EXEC? 8 # TODO: Is this related to OP_MAKE? 10 # TODO: Implementation
|
| H A D | opt-debug-no-rm.mk | 6 # TODO: Implementation 8 # TODO: Does this apply to non-jobs mode? 9 # TODO: Does this apply to jobs mode? 10 # TODO: Are the generated filenames predictable?
|
| /freebsd/crypto/openssl/apps/ |
| H A D | list.c | 1767 } todo = { 0, }; in list_main() local 1786 todo.all_algorithms = 1; in list_main() 1789 todo.commands = 1; in list_main() 1792 todo.digest_commands = 1; in list_main() 1795 todo.digest_algorithms = 1; in list_main() 1798 todo.kdf_algorithms = 1; in list_main() 1801 todo.random_instances = 1; in list_main() 1804 todo.random_generators = 1; in list_main() 1807 todo.mac_algorithms = 1; in list_main() 1810 todo.cipher_commands = 1; in list_main() [all …]
|
| /freebsd/sys/dev/nvmf/controller/ |
| H A D | nvmft_controller.c | 522 u_int todo; in m_zero() local 532 todo = m->m_len - offset; in m_zero() 533 if (todo > len) in m_zero() 534 todo = len; in m_zero() 535 memset(mtodo(m, offset), 0, todo); in m_zero() 537 len -= todo; in m_zero() 540 todo = m->m_len; in m_zero() 541 if (todo > len) in m_zero() 542 todo = len; in m_zero() 543 memset(mtod(m, void *), 0, todo); in m_zero() [all …]
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/soc/qcom/ |
| H A D | qmi.h | 106 /* XXX-TODO need implementation somewhere... it is not in ath1xk* */ 119 /* XXX TODO */ in qmi_handle_init() 129 /* XXX TODO */ in qmi_add_lookup() 137 /* XXX TODO */ in qmi_handle_release() 145 /* XXX TODO */ in qmi_send_request() 153 /* XXX TODO */ in qmi_txn_cancel() 161 /* XXX TODO */ in qmi_txn_init() 169 /* XXX TODO */ in qmi_txn_wait()
|
| /freebsd/contrib/netbsd-tests/lib/libc/sys/ |
| H A D | t_pipe.c | 79 ssize_t sz, todo, done; in ATF_TC_BODY() local 92 todo = 2 * 1024 * 1024; in ATF_TC_BODY() 93 REQUIRE_LIBC(f = malloc(todo), NULL); in ATF_TC_BODY() 126 printf("Expected: %#zx\n", (size_t)todo); in ATF_TC_BODY() 128 exit(done != todo); in ATF_TC_BODY() 141 /* We write exactly 'todo' bytes. The very first write(2) in ATF_TC_BODY() 145 while(todo > 0 && ((sz = write(pp[1], f, todo)) > 0)) in ATF_TC_BODY() 146 todo -= sz; in ATF_TC_BODY()
|
| /freebsd/sys/compat/linuxkpi/common/include/crypto/ |
| H A D | hash.h | 44 pr_debug("%s: TODO\n", __func__); in crypto_alloc_shash() 51 pr_debug("%s: TODO\n", __func__); in crypto_free_shash() 57 pr_debug("%s: TODO\n", __func__); in crypto_shash_init() 64 pr_debug("%s: TODO\n", __func__); in crypto_shash_final() 71 pr_debug("%s: TODO\n", __func__); in crypto_shash_setkey() 78 pr_debug("%s: TODO\n", __func__); in crypto_shash_update()
|
| /freebsd/contrib/wpa/src/l2_packet/ |
| H A D | l2_packet_none.c | 44 * TODO: Send frame (may need different implementation depending on in l2_packet_send() 58 /* TODO: receive frame (e.g., recv() using sock */ in l2_packet_receive() 62 l2->rx_callback(l2->rx_callback_ctx, NULL /* TODO: src addr */, in l2_packet_receive() 84 * TODO: open connection for receiving frames in l2_packet_init() 113 /* TODO: close connection */ in l2_packet_deinit() 122 /* TODO: get interface IP address */ in l2_packet_get_ip_addr()
|
| /freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/ |
| H A D | safe2.t | 47 TODO: { label 48 local $TODO = "test fails when tested with TAP/Devel::Cover" if defined $Devel::Cover::VERSION; 70 TODO: { label 71 local $TODO = "test fails when tested with TAP/Devel::Cover" if defined $Devel::Cover::VERSION; 79 TODO: { label 80 local $TODO = "test fails when tested with TAP/Devel::Cover" if defined $Devel::Cover::VERSION;
|
| /freebsd/sys/dev/uart/ |
| H A D | uart_dev_lowrisc.c | 93 /* TODO */ in lowrisc_uart_init() 100 /* TODO */ in lowrisc_uart_term() 180 .uc_rclk = 12500000, /* TODO: get value from clock manager */ 206 /* TODO: clear all pending interrupts. */ in lowrisc_uart_bus_attach() 215 /* TODO */ in lowrisc_uart_bus_detach() 224 /* TODO */ in lowrisc_uart_bus_flush() 233 /* TODO */ in lowrisc_uart_bus_getsig() 249 /* TODO */ in lowrisc_uart_bus_ioctl() 374 /* TODO */ in lowrisc_uart_bus_grab() 383 /* TODO */ in lowrisc_uart_bus_ungrab()
|