Searched refs:match_len (Results 1 – 12 of 12) sorted by relevance
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/ |
H A D | mppc.c | 61 int match_len; in mppc_expand() local 291 match_len = 0; in mppc_expand() 294 match_len = 3; in mppc_expand() 335 match_len = (big ? 16 : 13) - match_bits; in mppc_expand() 337 if (--walker_len < match_len) in mppc_expand() 339 for (; walker_len < match_len; walker_len += 8) in mppc_expand() 349 match_bits = match_len; in mppc_expand() 350 match_len = in mppc_expand() 356 if (next_offset + match_len >= RDP_MPPC_DICT_SIZE) in mppc_expand() 366 while (--match_len != 0); in mppc_expand()
|
/reactos/base/applications/mstsc/ |
H A D | mppc.c | 63 int match_len; in mppc_expand() local 293 match_len = 0; in mppc_expand() 296 match_len = 3; in mppc_expand() 337 match_len = (big ? 16 : 13) - match_bits; in mppc_expand() 339 if (--walker_len < match_len) in mppc_expand() 341 for (; walker_len < match_len; walker_len += 8) in mppc_expand() 351 match_bits = match_len; in mppc_expand() 352 match_len = in mppc_expand() 358 if (next_offset + match_len >= RDP_MPPC_DICT_SIZE) in mppc_expand() 368 while (--match_len != 0); in mppc_expand()
|
/reactos/sdk/tools/hhpcomp/lzx_compress/ |
H A D | lzx_layer.c | 483 if (loc < match_len) return -1; in find_match_at() 489 for (j = 0; j < match_len; j++) { in find_match_at() 492 if (j == match_len) { in find_match_at() 510 if (loc < match_len) return -1; in find_match_at() 518 for (j = 0; j < match_len; j++) { in find_match_at() 523 if (j == match_len) { in find_match_at() 611 for (i = 0; i < match_len; i++) { in lzx_output_match() 660 if ((match_len < 3) || in lzx_output_match() 746 (match_len - MIN_MATCH); /* bits 0-7 */ in lzx_output_match() 749 length_header = match_len - MIN_MATCH; in lzx_output_match() [all …]
|
H A D | lz_nonslide.h | 25 typedef int (*output_match_t)(lz_info *lzi, int match_pos, int match_len);
|
H A D | lz_nonslide.c | 113 int tmp_output_match(lz_info *lzi, int match_pos, int match_len) in tmp_output_match() argument 120 fprintf(lzud->outfile, "(%d, %d)(%d)\n", match_pos, match_len, mod_match_loc); in tmp_output_match()
|
/reactos/dll/win32/jscript/ |
H A D | string.c | 734 tmp_str = jsstr_alloc_len(match->cp-match->match_len, match->match_len); in rep_call() 848 last_match.match_len = match->match_len; in String_replace() 860 match->cp += match->match_len; in String_replace() 893 hres = strbuf_append(&ret, match->cp-match->match_len, match->match_len); in String_replace() 953 else if(!match->match_len) in String_replace() 1134 size_t length, i = 0, match_len = 0; in String_split() local 1193 match_len = jsstr_length(match_jsstr); in String_split() 1194 if(!match_len) { in String_split() 1210 …got match %d %d\n", (int)(match_result.cp - match_result.match_len - str), match_result.match_len); in String_split() 1211 if(!match_result.match_len) { in String_split() [all …]
|
H A D | jsregexp.c | 118 ctx->last_match_index = ret->cp-str-ret->match_len; in do_regexp_match_next() 119 ctx->last_match_length = ret->match_len; in do_regexp_match_next() 160 match->match_len = (*ret)->match_len; in regexp_match_next() 169 (*ret)->match_len = match->match_len; in regexp_match_next() 231 ret[i].index = result->cp - str - result->match_len; in regexp_match() 232 ret[i++].length = result->match_len; in regexp_match() 411 hres = jsdisp_propput_name(array, indexW, jsval_number(result->cp-input-result->match_len)); in create_match_array() 423 str = jsstr_alloc_len(result->cp-result->match_len, result->match_len); in create_match_array()
|
H A D | regexp.h | 48 DWORD match_len; member
|
H A D | regexp.c | 3172 result->match_len = 0; in regexp_execute() 3176 result->match_len = (result->cp-str_beg) - gData.skipped; in regexp_execute()
|
/reactos/dll/win32/vbscript/ |
H A D | regexp.h | 48 DWORD match_len; member
|
H A D | vbregexp.c | 318 ret->match = heap_alloc((result->match_len+1) * sizeof(WCHAR)); in create_sub_matches() 323 memcpy(ret->match, result->cp-result->match_len, result->match_len*sizeof(WCHAR)); in create_sub_matches() 324 ret->match[result->match_len] = 0; in create_sub_matches() 483 *pLength = This->sub_matches->result->match_len; in Match2_get_Length() 1367 hres = create_match2(result->cp-result->match_len-sourceString, &result, &add); in RegExp2_Execute()
|
H A D | regexp.c | 3172 result->match_len = 0; in regexp_execute() 3176 result->match_len = (result->cp-str_beg) - gData.skipped; in regexp_execute()
|