Searched refs:rep_len (Results 1 – 7 of 7) sorted by relevance
| /src/contrib/xz/src/liblzma/lzma/ |
| H A D | lzma_encoder_optimum_fast.c | 47 uint32_t rep_len = 0; in lzma_lzma_optimum_fast() local 73 if (len > rep_len) { in lzma_lzma_optimum_fast() 75 rep_len = len; in lzma_lzma_optimum_fast() 108 if (rep_len >= 2) { in lzma_lzma_optimum_fast() 109 if (rep_len + 1 >= len_main in lzma_lzma_optimum_fast() 110 || (rep_len + 2 >= len_main in lzma_lzma_optimum_fast() 112 || (rep_len + 3 >= len_main in lzma_lzma_optimum_fast() 115 *len_res = rep_len; in lzma_lzma_optimum_fast() 116 mf_skip(mf, rep_len - 1); in lzma_lzma_optimum_fast()
|
| H A D | lzma_encoder_optimum_normal.c | 387 uint32_t rep_len = rep_lens[i]; in helper1() local 388 if (rep_len < 2) in helper1() 398 rep_len, pos_state); in helper1() 400 if (cur_and_len_price < coder->opts[rep_len].price) { in helper1() 401 coder->opts[rep_len].price = cur_and_len_price; in helper1() 402 coder->opts[rep_len].pos_prev = 0; in helper1() 403 coder->opts[rep_len].back_prev = i; in helper1() 404 coder->opts[rep_len].prev_1_is_literal = false; in helper1() 406 } while (--rep_len >= 2); in helper1()
|
| /src/contrib/nvi/vi/ |
| H A D | v_init.c | 50 if (ovip->rep_len != 0) { in v_screen_copy() 51 MALLOC_RET(orig, nvip->rep, ovip->rep_len); in v_screen_copy() 52 memmove(nvip->rep, ovip->rep, ovip->rep_len); in v_screen_copy() 53 nvip->rep_len = ovip->rep_len; in v_screen_copy()
|
| H A D | vi.h | 241 size_t rep_len; /* Input replay buffer length. */ member
|
| H A D | v_txt.c | 591 vip->rep_len, (rcol + 1) * sizeof(EVENT)); in v_txt()
|
| /src/crypto/heimdal/lib/krb5/ |
| H A D | send_to_kdc.c | 141 unsigned long rep_len; in send_and_recv_tcp() local 155 _krb5_get_int(len_data.data, &rep_len, 4); in send_and_recv_tcp() 157 if (recv_loop (fd, tmout, 0, rep_len, rep) < 0) in send_and_recv_tcp() 159 if(rep->length != rep_len) { in send_and_recv_tcp() 205 unsigned long rep_len; in send_and_recv_http() local 229 _krb5_get_int(p, &rep_len, 4); in send_and_recv_http() 230 if (rep_len != rep->length) { in send_and_recv_http()
|
| /src/usr.bin/chat/ |
| H A D | chat.c | 518 size_t rep_len; in terminate() local 520 rep_len = strlen(report_buffer); in terminate() 521 while (rep_len + 1 < sizeof(report_buffer)) { in terminate() 527 report_buffer[rep_len] = c; in terminate() 528 ++rep_len; in terminate() 530 report_buffer[rep_len] = 0; in terminate() 1248 int rep_len = strlen (report_buffer); in get_string() local 1249 report_buffer[rep_len] = c; in get_string() 1250 report_buffer[rep_len + 1] = '\0'; in get_string()
|