Searched refs:str_index (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/telnet/libtelnet/ |
H A D | enc_des.c | 75 int str_index; member 498 stp->str_index = sizeof(Block); in fb64_stream_iv() 509 stp->str_index = sizeof(Block); in fb64_stream_key() 540 idx = stp->str_index; in cfb64_encrypt() 554 stp->str_index = idx; in cfb64_encrypt() 569 if (stp->str_index) in cfb64_decrypt() 570 --stp->str_index; in cfb64_decrypt() 574 idx = stp->str_index++; in cfb64_decrypt() 579 stp->str_index = 1; /* Next time will be 1 */ in cfb64_decrypt() 613 idx = stp->str_index; in ofb64_encrypt() [all …]
|
/freebsd/crypto/heimdal/appl/telnet/libtelnet/ |
H A D | enc_des.c | 74 int str_index; member 505 stp->str_index = sizeof(DES_cblock); in fb64_stream_iv() 515 stp->str_index = sizeof(DES_cblock); in fb64_stream_key() 545 index = stp->str_index; in cfb64_encrypt() 559 stp->str_index = index; in cfb64_encrypt() 573 if (stp->str_index) in cfb64_decrypt() 574 --stp->str_index; in cfb64_decrypt() 578 index = stp->str_index++; in cfb64_decrypt() 583 stp->str_index = 1; /* Next time will be 1 */ in cfb64_decrypt() 617 index = stp->str_index; in ofb64_encrypt() [all …]
|
/freebsd/usr.sbin/usbconfig/ |
H A D | dump.c | 698 dump_string_by_index(struct libusb20_device *pdev, uint8_t str_index) in dump_string_by_index() argument 708 if (str_index == 0) { in dump_string_by_index() 711 str_index, 0, pbuf, 256)) { in dump_string_by_index() 712 printf("STRING_0x%02x = <read error>\n", str_index); in dump_string_by_index() 714 printf("STRING_0x%02x = ", str_index); in dump_string_by_index() 725 str_index, pbuf, 256)) { in dump_string_by_index() 726 printf("STRING_0x%02x = <read error>\n", str_index); in dump_string_by_index() 728 printf("STRING_0x%02x = <%s>\n", str_index, pbuf); in dump_string_by_index()
|
/freebsd/lib/libusb/ |
H A D | libusb20.c | 818 uint8_t str_index, uint16_t langid, void *ptr, uint16_t len) in libusb20_dev_req_string_sync() argument 842 req.wValue = (LIBUSB20_DT_STRING << 8) | str_index; in libusb20_dev_req_string_sync() 872 uint8_t str_index, void *ptr, uint16_t len) in libusb20_dev_req_string_simple_sync() argument 897 error = libusb20_dev_req_string_sync(pdev, str_index, in libusb20_dev_req_string_simple_sync()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 1021 uint32_t str_index = static_cast<uint32_t>(symbol.d_val); in ParseDependentModules() local 1022 const char *lib_name = dynstr_data.PeekCStr(str_index); in ParseDependentModules()
|