| /freebsd-13-stable/crypto/openssl/crypto/modes/ |
| HD | cts128.c | 32 size_t residue, n; in CRYPTO_cts128_encrypt_block() local 37 if ((residue = len % 16) == 0) in CRYPTO_cts128_encrypt_block() 38 residue = 16; in CRYPTO_cts128_encrypt_block() 40 len -= residue; in CRYPTO_cts128_encrypt_block() 47 for (n = 0; n < residue; ++n) in CRYPTO_cts128_encrypt_block() 50 memcpy(out, out - 16, residue); in CRYPTO_cts128_encrypt_block() 53 return len + residue; in CRYPTO_cts128_encrypt_block() 62 size_t residue, n; in CRYPTO_nistcts128_encrypt_block() local 67 residue = len % 16; in CRYPTO_nistcts128_encrypt_block() 69 len -= residue; in CRYPTO_nistcts128_encrypt_block() [all …]
|
| /freebsd-13-stable/crypto/heimdal/lib/hx509/ |
| HD | ks_dir.c | 58 const char *residue, hx509_lock lock) in dir_init() argument 66 ret = stat(residue, &sb); in dir_init() 69 "No such file %s", residue); in dir_init() 75 "%s is not a directory", residue); in dir_init() 80 *data = strdup(residue); in dir_init()
|
| HD | keyset.c | 119 const char *residue; in hx509_certs_init() local 126 residue = strchr(name, ':'); in hx509_certs_init() 127 if (residue) { in hx509_certs_init() 128 type = malloc(residue - name + 1); in hx509_certs_init() 130 strlcpy(type, name, residue - name + 1); in hx509_certs_init() 131 residue++; in hx509_certs_init() 132 if (residue[0] == '\0') in hx509_certs_init() 133 residue = NULL; in hx509_certs_init() 136 residue = name; in hx509_certs_init() 159 ret = (*ops->init)(context, c, &c->ops_data, flags, residue, lock); in hx509_certs_init()
|
| HD | ks_mem.c | 54 const char *residue, hx509_lock lock) in mem_init() argument 60 if (residue == NULL || residue[0] == '\0') in mem_init() 61 residue = "anonymous"; in mem_init() 62 mem->name = strdup(residue); in mem_init()
|
| HD | ks_keychain.c | 323 const char *residue, hx509_lock lock) in keychain_init() argument 333 if (residue) { in keychain_init() 334 if (strcasecmp(residue, "system-anchors") == 0) { in keychain_init() 336 } else if (strncasecmp(residue, "FILE:", 5) == 0) { in keychain_init() 339 ret = SecKeychainOpen(residue + 5, &ctx->keychain); in keychain_init() 342 "Failed to open %s", residue); in keychain_init() 347 "Unknown subtype %s", residue); in keychain_init()
|
| HD | ks_file.c | 376 const char *residue, hx509_lock lock, outformat format) in file_init_common() argument 399 ksf->fn = strdup(residue); in file_init_common() 503 const char *residue, hx509_lock lock) in file_init_pem() argument 505 return file_init_common(context, certs, data, flags, residue, lock, USE_PEM); in file_init_pem() 511 const char *residue, hx509_lock lock) in file_init_der() argument 513 return file_init_common(context, certs, data, flags, residue, lock, USE_DER); in file_init_der()
|
| HD | ks_null.c | 40 const char *residue, hx509_lock lock) in null_init() argument
|
| HD | ks_p12.c | 324 const char *residue, hx509_lock lock) in p12_init() argument 351 p12->fn = strdup(residue); in p12_init() 366 ret = rk_undumpdata(residue, &buf, &len); in p12_init() 376 "Failed to decode the PFX in %s", residue); in p12_init()
|
| HD | ks_p11.c | 831 const char *residue, hx509_lock lock) in p11_init() argument 840 list = strdup(residue); in p11_init()
|
| /freebsd-13-stable/sys/dev/usb/storage/ |
| HD | umass.c | 296 uint32_t residue, uint8_t status); 1462 uint32_t residue; in umass_t_bbb_status_callback() local 1485 residue = UGETDW(sc->csw.dCSWDataResidue); in umass_t_bbb_status_callback() 1487 if ((!residue) || (sc->sc_quirks & IGNORE_RESIDUE)) { in umass_t_bbb_status_callback() 1488 residue = (sc->sc_transfer.data_len - in umass_t_bbb_status_callback() 1491 if (residue > sc->sc_transfer.data_len) { in umass_t_bbb_status_callback() 1493 "to %d bytes\n", residue, sc->sc_transfer.data_len); in umass_t_bbb_status_callback() 1494 residue = sc->sc_transfer.data_len; in umass_t_bbb_status_callback() 1526 "%d\n", residue); in umass_t_bbb_status_callback() 1534 "%d\n", residue); in umass_t_bbb_status_callback() [all …]
|
| /freebsd-13-stable/bin/sh/ |
| HD | miscbltin.c | 118 off_t residue; in fdctx_destroy() local 134 residue = (fdc->ep - fdc->buf) - fdc->off; in fdctx_destroy() 135 if (residue > 0) in fdctx_destroy() 136 (void) lseek(fdc->fd, -residue, SEEK_CUR); in fdctx_destroy()
|
| /freebsd-13-stable/sys/contrib/dev/rtw89/ |
| HD | ser.c | 487 u32 base_addr, start_page, residue; in ser_mac_mem_dump() local 492 residue = start_addr % MAC_MEM_DUMP_PAGE_SIZE; in ser_mac_mem_dump() 499 for (i = R_AX_INDIR_ACCESS_ENTRY + residue; in ser_mac_mem_dump() 508 residue = 0; in ser_mac_mem_dump()
|
| HD | debug.c | 758 u32 base_addr, start_page, residue; in rtw89_debug_dump_mac_mem() local 766 residue = start_addr % MAC_MEM_DUMP_PAGE_SIZE; in rtw89_debug_dump_mac_mem() 773 for (i = R_AX_INDIR_ACCESS_ENTRY + residue; in rtw89_debug_dump_mac_mem()
|
| /freebsd-13-stable/libexec/ftpd/ |
| HD | ftpd.c | 1095 checkuser(char *fname, char *name, int pwset, char **residue, int *ecode) in checkuser() argument 1158 if (found && residue) { in checkuser() 1162 if ((*residue = strdup(p)) == NULL) in checkuser() 1165 *residue = NULL; in checkuser() 1378 char *residue = NULL; in pass() local 1488 checkuser(_PATH_FTPCHROOT, pw->pw_name, 1, &residue, &ecode) in pass() 1533 if (dochroot && residue && in pass() 1534 (chrootdir = strtok(residue, " \t")) != NULL) { in pass() 1670 if (residue) in pass() 1671 free(residue); in pass() [all …]
|
| /freebsd-13-stable/sys/contrib/dev/rtw88/ |
| HD | fw.c | 1694 u32 *buf, u32 residue, u16 start_pg) in rtw_fw_read_fifo_page() argument 1707 for (i = FIFO_DUMP_ADDR + residue; in rtw_fw_read_fifo_page() 1715 residue = 0; in rtw_fw_read_fifo_page() 1729 u32 start_pg, residue; in rtw_fw_read_fifo() local 1737 residue = offset & (FIFO_PAGE_SIZE - 1); in rtw_fw_read_fifo() 1740 rtw_fw_read_fifo_page(rtwdev, offset, size, buf, residue, start_pg); in rtw_fw_read_fifo()
|
| /freebsd-13-stable/sys/cam/ |
| HD | README.quirks | 127 o IGNORE_RESIDUE - The device can't count and gets the residue
|
| /freebsd-13-stable/sys/dev/mly/ |
| HD | mlyreg.h | 337 int32_t residue; member
|
| HD | mly.c | 1588 mc->mc_resid = sp->status.residue; in mly_done()
|
| /freebsd-13-stable/sys/dev/aic7xxx/ |
| HD | aic79xx.reg | 3867 * ignore wide residue message handling.
|
| HD | aic7xxx.seq | 1585 /* Pull the residue byte */
|
| HD | aic79xx.seq | 1062 /* Pull the residue byte */
|
| /freebsd-13-stable/crypto/libecc/ |
| HD | README.md | 309 …* [src/examples/basic/fp_square_residue.c](src/examples/basic/fp_square_residue.c): …
|
| /freebsd-13-stable/contrib/dialog/ |
| HD | CHANGES | 109 CFLAGS, leaving the residue in CC. That happens to work for gcc's
|
| /freebsd-13-stable/contrib/ncurses/ |
| HD | NEWS | 1736 leaving the residue in CC. That happens to work for gcc's various
|
| /freebsd-13-stable/share/dict/ |
| HD | web2 | 167841 residue
|