HomeSort by relevance Sort by last modified time
    Searched refs:BRANCH (Results 1 - 25 of 85) sorted by null

1 2 3 4

  /external/skia/bin/
c 5 BRANCH=$(git branch | grep \* | cut -d" " -f 2)
9 if [ "$BRANCH" = "$CLEAN" ]; then
10 echo "Comparing $BRANCH to itself."
21 git checkout $BRANCH
24 out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
26 python bin/compare $CLEAN.log $BRANCH.log
ac 5 BRANCH=$(git branch | grep \* | cut -d" " -f 2)
9 if [ "$BRANCH" = "$CLEAN" ]; then
10 echo "Comparing $BRANCH to itself."
21 git checkout $BRANCH
24 platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $BRANCH.log
26 ./bin/compare $CLEAN.log $BRANCH.log
  /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
  /external/harfbuzz_ng/.ci/
deploy-docs.sh 6 BRANCH="$TRAVIS_BRANCH"
7 if test "x$BRANCH" != xmaster; then exit; fi
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
ICoverageNode.java 54 BRANCH,
CoverageNodeImpl.java 132 case BRANCH:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
geta-op.s 1 # Simple GETA/BRANCH/PUSHJ operands.
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
ClassRowWriter.java 28 CounterEntity.BRANCH, CounterEntity.LINE,
  /external/nist-sip/java/gov/nist/javax/sip/header/
ParameterNames.java 127 public static final String BRANCH = "branch";
Via.java 63 /** The branch parameter is included by every forking proxy.
65 public static final String BRANCH = ParameterNames.BRANCH;
507 * Gets the branch paramater of the ViaHeader. Returns null if branch
510 * @return the string branch value of ViaHeader
513 return getParameter(ParameterNames.BRANCH);
517 * Sets the branch parameter of the ViaHeader to the newly supplied
518 * branch value.
520 * @param branch - the new string branch parmameter of the ViaHeader
    [all...]
  /toolchain/binutils/binutils-2.25/include/opcode/
d10v.h 48 #define SHORT_B 3 /* short with 8-bit branch */
49 #define LONG_B 8 /* long with 16-bit branch */
81 #define BRANCH 512 /* branch, no link */
  /external/clang/
update-prebuilts.py 32 BRANCH = 'aosp-llvm'
53 '--use-current-branch', action='store_true',
54 help='Do not repo start a new branch for the update.')
93 path = 'builds/{branch}-{build_host}-{build_name}/{build_num}'.format(
94 branch=BRANCH,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,
re.py 292 from sre_constants import BRANCH, SUBPATTERN
303 p = sre_parse.SubPattern(s, [(BRANCH, (None, p))])
  /prebuilts/gdb/linux-x86/lib/python2.7/
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,
re.py 292 from sre_constants import BRANCH, SUBPATTERN
303 p = sre_parse.SubPattern(s, [(BRANCH, (None, p))])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sre_constants.py 37 BRANCH = "branch"
106 BRANCH,
  /toolchain/binutils/binutils-2.25/opcodes/
lm32-opc.c 193 /* be $r0,$r1,$branch */
196 { { MNEM, ' ', OP (R0), ',', OP (R1), ',', OP (BRANCH), 0 } },
199 /* bg $r0,$r1,$branch */
202 { { MNEM, ' ', OP (R0), ',', OP (R1), ',', OP (BRANCH), 0 } },
205 /* bge $r0,$r1,$branch */
208 { { MNEM, ' ', OP (R0), ',', OP (R1), ',', OP (BRANCH), 0 } },
211 /* bgeu $r0,$r1,$branch */
214 { { MNEM, ' ', OP (R0), ',', OP (R1), ',', OP (BRANCH), 0 } },
217 /* bgu $r0,$r1,$branch */
220 { { MNEM, ' ', OP (R0), ',', OP (R1), ',', OP (BRANCH), 0 } }
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-ns32k.c 323 #define BRANCH 1
348 {(63), (-64), 1, IND (BRANCH, WORD)},
349 {(8192), (-8192), 2, IND (BRANCH, DOUBLE)},
967 IND (BRANCH, BYTE),
999 pcrel, pcrel_adjust, 1, IND (BRANCH, BYTE), NULL, -1, 0);
1006 pcrel, pcrel_adjust, 1, IND (BRANCH, BYTE), NULL, -1, 1);
    [all...]
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
CoverageNodeImplTest.java 14 import static org.jacoco.core.analysis.ICoverageNode.CounterEntity.BRANCH;
70 assertEquals(CounterImpl.getInstance(10, 15), parent.getCounter(BRANCH));
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/html/
HTMLFormatter.java 139 t.add("Missed Branches", Styles.BAR, new BarColumn(CounterEntity.BRANCH, locale),
141 t.add("Cov.", Styles.CTR2, new PercentageColumn(CounterEntity.BRANCH, locale),
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/check/
LimitTest.java 116 limit.setCounter(CounterEntity.BRANCH.name());
118 assertEquals(CounterEntity.BRANCH, limit.getEntity());

Completed in 557 milliseconds

1 2 3 4