Home
last modified time | relevance | path

Searched refs:str_index (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/telnet/libtelnet/
H A Denc_des.c75 int str_index; member
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()
613 idx = stp->str_index; in ofb64_encrypt()
624 stp->str_index = idx; in ofb64_encrypt()
639 if (stp->str_index) in ofb64_decrypt()
640 --stp->str_index; in ofb64_decrypt()
[all …]
/freebsd/crypto/heimdal/appl/telnet/libtelnet/
H A Denc_des.c74 int str_index; member
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()
617 index = stp->str_index; in ofb64_encrypt()
628 stp->str_index = index; in ofb64_encrypt()
642 if (stp->str_index) in ofb64_decrypt()
643 --stp->str_index; in ofb64_decrypt()
[all …]
/freebsd/usr.sbin/usbconfig/
H A Ddump.c591 dump_string_by_index(struct libusb20_device *pdev, uint8_t str_index) in dump_string_by_index() argument
601 if (str_index == 0) { in dump_string_by_index()
604 str_index, 0, pbuf, 256)) { in dump_string_by_index()
605 printf("STRING_0x%02x = <read error>\n", str_index); in dump_string_by_index()
607 printf("STRING_0x%02x = ", str_index); in dump_string_by_index()
618 str_index, pbuf, 256)) { in dump_string_by_index()
619 printf("STRING_0x%02x = <read error>\n", str_index); in dump_string_by_index()
621 printf("STRING_0x%02x = <%s>\n", str_index, pbuf); in dump_string_by_index()
/freebsd/lib/libusb/
H A Dlibusb20.c818 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 DObjectFileELF.cpp1007 uint32_t str_index = static_cast<uint32_t>(symbol.d_val); in ParseDependentModules() local
1008 const char *lib_name = dynstr_data.PeekCStr(str_index); in ParseDependentModules()