Searched defs:cur_match (Results 1 - 4 of 4) sorted by relevance

/external/elfutils/0.153/libdw/
H A Ddwarf_getsrc_file.c74 size_t cur_match = 0; local
138 for (inner = 0; inner < cur_match; ++inner)
142 if (inner < cur_match
159 if (cur_match < max_match)
161 if (cur_match == act_match)
177 match[cur_match++] = line;
183 if (cur_match == max_match)
187 if (cur_match > 0)
191 *nsrcs = cur_match;
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_getsrc_file.c73 size_t cur_match = 0; local
132 for (inner = 0; inner < cur_match; ++inner)
136 if (inner < cur_match
153 if (cur_match < max_match)
155 if (cur_match == act_match)
171 match[cur_match++] = &cu->lines->idx[cnt];
176 if (cur_match > 0)
180 *nsrcs = cur_match;
/external/zlib/src/contrib/masmx86/
H A Dmatch686.asm37 ;uInt longest_match(s, cur_match)
39 ; IPos cur_match; /* current match */
42 cur_match equ dword ptr[esp+NbStack-0] define
209 ;;; Retrieve the function arguments. ecx will hold cur_match
305 ;;; match = s->window + cur_match;
309 ;;; } while ((cur_match = prev[cur_match & wmask]) > limit
410 ;;; s->match_start = cur_match;
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_deflate.c90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
1139 * IN assertions: cur_match is the head of the hash chain for the current
1149 IPos cur_match) /* current match */
1159 /* Stop when cur_match becomes <= limit. To simplify the code,
1195 Assert(cur_match < s->strstart, "no future");
1196 match = s->window + cur_match;
1273 s->match_start = cur_match;
1283 } while ((cur_match = prev[cur_match
1147 longest_match( deflate_state *s, IPos cur_match) argument
1296 longest_match( deflate_state *s, IPos cur_match) argument
[all...]

Completed in 6212 milliseconds