HomeSort by: relevance | last modified time | path
    Searched refs:rm_so (Results 1 - 11 of 11) sorted by relevancy

  /xsrc/external/mit/xedit/dist/lisp/
regex.c 173 match[0].rm_so = start;
178 if (nmatch && match[0].rm_eo >= match[0].rm_so) {
179 result = CONS(CONS(FIXNUM(match[0].rm_so),
181 if (nmatch > 1 && match[1].rm_eo >= match[1].rm_so) {
188 i < nmatch && match[i].rm_eo >= match[i].rm_so;
190 RPLACD(cons, CONS(CONS(FIXNUM(match[i].rm_so),
  /xsrc/external/mit/xedit/dist/lisp/re/
tests.c 183 else if (so != mat[group].rm_so || eo != mat[group].rm_eo) {
185 line, mat[group].rm_so, mat[group].rm_eo);
186 if (mat[group].rm_so < mat[group].rm_eo)
187 fwrite(str + mat[group].rm_so,
188 mat[group].rm_eo - mat[group].rm_so, 1, stderr);
re.h 92 long rm_so; member in struct:_re_mat
re.c 199 (pmat == NULL || pmat[0].rm_eo < pmat[0].rm_so)))
205 eng.str += pmat[0].rm_so;
1625 len = pmat[0].rm_so;
1631 pmat[0].rm_so = eng.so[0];
1635 pmat[i].rm_so = eng.gso[i - 1];
1639 pmat[i].rm_so = 0;
1647 pmat[i].rm_so += len;
1657 pmat[0].rm_so = eng.so[0] + len;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 78 return matches[index].rm_eo - matches[index].rm_so;
103 matches[i].rm_so, matches[i].rm_eo);
152 tokens.Negate.String = src_str + matches[1].rm_so;
154 tokens.Abs.String = src_str + matches[2].rm_so;
156 tokens.File.String = src_str + matches[3].rm_so;
158 tokens.Index.String = src_str + matches[4].rm_so;
160 tokens.Swizzle.String = src_str + matches[5].rm_so;
280 tokens.File.String = dst_str + matches[1].rm_so;
282 tokens.Index.String = dst_str + matches[2].rm_so;
284 tokens.WriteMask.String = dst_str + matches[3].rm_so;
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 78 return matches[index].rm_eo - matches[index].rm_so;
103 matches[i].rm_so, matches[i].rm_eo);
152 tokens.Negate.String = src_str + matches[1].rm_so;
154 tokens.Abs.String = src_str + matches[2].rm_so;
156 tokens.File.String = src_str + matches[3].rm_so;
158 tokens.Index.String = src_str + matches[4].rm_so;
160 tokens.Swizzle.String = src_str + matches[5].rm_so;
280 tokens.File.String = dst_str + matches[1].rm_so;
282 tokens.Index.String = dst_str + matches[2].rm_so;
284 tokens.WriteMask.String = dst_str + matches[3].rm_so;
    [all...]
  /xsrc/external/mit/xedit/dist/
tags.c 574 match.rm_so = 0;
610 match.rm_eo > match.rm_so &&
611 match.rm_so == 0 && match.rm_eo == length) {
612 right = left + match.rm_so + (match.rm_eo - match.rm_so);
hook.c 948 einfo.mats[0].rm_so = 0;
959 if (replace && einfo.mats[0].rm_so == einfo.mats[0].rm_eo)
966 einfo.start = from + einfo.mats[0].rm_so;
985 from += einfo.mats[0].rm_so;
986 len = einfo.mats[0].rm_eo - einfo.mats[0].rm_so;
1015 einfo.mats[ref].rm_so;
1025 line + einfo.mats[ref].rm_so, xlen);
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/loader/
loadmod.c 522 match[1].rm_so != -1) {
523 len = match[1].rm_eo - match[1].rm_so;
547 strncpy(listing[n], dp->d_name + match[1].rm_so,
1235 if (regexec(&p->rex, s, 2, match, 0) == 0 && match[1].rm_so != -1) {
1236 len = match[1].rm_eo - match[1].rm_so;
1240 strncpy(str, s + match[1].rm_so, len);
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/loader/
loadmod.c 388 match[1].rm_so != -1) {
389 len = match[1].rm_eo - match[1].rm_so;
406 strncpy(listing[n], dp->d_name + match[1].rm_so, len);
983 if (regexec(&p->rex, s, 2, match, 0) == 0 && match[1].rm_so != -1) {
984 len = match[1].rm_eo - match[1].rm_so;
988 strncpy(str, s + match[1].rm_so, len);
  /xsrc/external/mit/xterm/dist/
button.c 4029 int start_inx = (int) (match.rm_so + offset);

Completed in 28 milliseconds