HomeSort by relevance Sort by last modified time
    Searched defs:BRANCH (Results 1 - 14 of 14) sorted by null

  /external/clang/INPUTS/
cfg-long-chain1.c 1 #define EXPAND_2_BRANCHES(i, x, y) BRANCH(i, x, y); BRANCH(i + 1, x, y);
16 #define BRANCH(i, x, y) if ((x % 13171) < i) { int var = x / 13171; y ^= var; }
18 #undef BRANCH
cfg-long-chain2.c 1 #define EXPAND_2_BRANCHES(i, x, y) BRANCH(i, x, y); BRANCH(i + 1, x, y);
16 #define BRANCH(i, x, y) if (((x % 13171) + ++y) < i) { int var = x / 13171 + y; return var; }
18 #undef BRANCH
cfg-long-chain3.c 1 #define EXPAND_2_BRANCHES(i, x, y) BRANCH(i, x, y); BRANCH(i + 1, x, y);
16 #define BRANCH(i, x, y) if ((x % 13171) < i) { int var = x / 13171; y ^= var; } else
18 #undef BRANCH
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
re.py 292 from sre_constants import BRANCH, SUBPATTERN
303 p = sre_parse.SubPattern(s, [(BRANCH, (None, p))])
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
re.py 292 from sre_constants import BRANCH, SUBPATTERN
303 p = sre_parse.SubPattern(s, [(BRANCH, (None, p))])
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,