| /freebsd-14.2/contrib/xz/src/liblzma/common/ |
| H A D | string_conversion.c | 316 assert(*str < str_end); in parse_lzma12_preset() 320 while (++*str < str_end) { in parse_lzma12_preset() 547 while (*str < str_end && **str != '\0') { in parse_options() 561 name_eq_value_end = str_end; in parse_options() 786 const char *name_end = str_end; in parse_filter() 787 const char *opts_start = str_end; in parse_filter() 828 str, str_end, options); in parse_filter() 879 if (str_end != NULL) { in str_to_filters() 882 for (size_t i = 1; str_end[i] != '\0'; ++i) in str_to_filters() 883 if (str_end[i] != ' ') in str_to_filters() [all …]
|
| /freebsd-14.2/contrib/telnet/libtelnet/ |
| H A D | encrypt.c | 138 static unsigned char str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE }; variable 856 str_end[3] = ENCRYPT_END; in encrypt_send_end() 857 net_write(str_end, sizeof(str_end)); in encrypt_send_end() 859 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_end() 894 str_end[3] = ENCRYPT_REQEND; in encrypt_send_request_end() 895 net_write(str_end, sizeof(str_end)); in encrypt_send_request_end() 896 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_request_end()
|
| /freebsd-14.2/crypto/heimdal/appl/telnet/libtelnet/ |
| H A D | encrypt.c | 138 static unsigned char str_end[] = { IAC, SB, TELOPT_ENCRYPT, 0, IAC, SE }; variable 888 str_end[3] = ENCRYPT_END; in encrypt_send_end() 889 telnet_net_write(str_end, sizeof(str_end)); in encrypt_send_end() 891 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_end() 926 str_end[3] = ENCRYPT_REQEND; in encrypt_send_request_end() 927 telnet_net_write(str_end, sizeof(str_end)); in encrypt_send_request_end() 928 printsub('>', &str_end[2], sizeof(str_end) - 2); in encrypt_send_request_end()
|
| /freebsd-14.2/sys/contrib/libsodium/src/libsodium/crypto_pwhash/argon2/ |
| H A D | argon2-encoding.c | 144 const char *str_end; \ in decode_string() 146 &bin_len, &str_end, \ in decode_string() 152 str = str_end; \ in decode_string()
|
| /freebsd-14.2/contrib/tcsh/ |
| H A D | sh.file.c | 696 Char *str_end, *word_start, last_Char, should_retype; in tenex() local 710 str_end = &inputline[num_read]; in tenex() 712 --str_end; /* wipeout trailing cmd Char */ in tenex() 713 *str_end = '\0'; in tenex() 718 for (word_start = str_end; word_start > inputline; --word_start) in tenex() 726 print_recognized_stuff(str_end); in tenex()
|
| H A D | tw.parse.c | 161 Char *str_end, *cp; in tenematch() local 169 str_end = &inputline[num_read]; in tenematch() 174 for (cp = inputline; cp < str_end; cp++) { in tenematch() 205 if (cmap(*cp, _ESC) && cp < str_end - 1 && cp[1] == HIST && in tenematch() 331 insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch() 339 for (bptr = word_start; bptr < str_end; bptr++) { in tenematch() 372 if (insert_meta(word_start, str_end, qline.s + word, !qu) < 0) in tenematch() 399 DeleteBack(str_end - word_start);/* get rid of old word */ in tenematch() 420 if (insert_meta(word_start, str_end, bptr, !qu) < 0) { in tenematch() 434 if (insert_meta(word_start, str_end, bptr, !qu) < 0) { in tenematch() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 700 void *str_end = std::memchr(curr_buffer, '\0', bytes_read); in ReadCStringFromMemory() local 701 if (str_end != nullptr) { in ReadCStringFromMemory() 703 static_cast<size_t>((static_cast<char *>(str_end) - buffer + 1)); in ReadCStringFromMemory()
|
| /freebsd-14.2/contrib/less/ |
| H A D | search.c | 135 char *str_end = str + strlen(str); in is_ucase() local 138 while (str < str_end) in is_ucase() 140 ch = step_char(&str, +1, str_end); in is_ucase()
|
| /freebsd-14.2/sys/dev/ice/ |
| H A D | ice_lib.c | 11488 char *str_end; in ice_ets_str_to_tbl() local 11492 token = strtol(str_start, &str_end, 0); in ice_ets_str_to_tbl() 11497 str_start = (str_end + 1); in ice_ets_str_to_tbl()
|