/external/llvm/utils/git/ |
find-rev | 8 parser.add_option("", "--branch", dest="branch", 9 help="Ref for the branch to search [%default]", 24 p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'],
|
/external/okhttp/.buildscript/ |
deploy_snapshot.sh | 10 BRANCH="master" 20 elif [ "$TRAVIS_BRANCH" != "$BRANCH" ]; then 21 echo "Skipping snapshot deployment: wrong branch. Expected '$BRANCH' but was '$TRAVIS_BRANCH'."
|
/external/skia/infra/project-config/ |
refs.cfg | 6 config_path: "infra/branch-config"
|
/external/swiftshader/third_party/LLVM/test/ExecutionEngine/ |
test-branch.ll | 3 ; test unconditional branch
|
/external/toolchain-utils/deprecated/repo_to_repo_files/ |
binutils-mobile_toolchain_v16.json.rtr | 15 "branch": "mobile_toolchain_v16_release_branch",
|
gcc-branches_google_main.json.rtr | 14 "branch": "gcc.gnu.org/branches/google/main",
|
gcc-master.json.rtr | 19 "branch": "master",
|
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/ |
README.txt | 1 The files in this package were copied from the android-4.4.4_r1 branch of ASOP from the folders
|
/test/vts/web/dashboard/src/main/java/com/android/vts/entity/ |
DeviceInfoEntity.java | 33 public static final String BRANCH = "branch"; 42 public final String branch; field in class:DeviceInfoEntity 53 * @param branch The build branch. 60 public DeviceInfoEntity(Key parentKey, String branch, String product, String buildFlavor, 63 this.branch = branch; 74 testCaseRunEntity.setProperty(BRANCH, this.branch.toLowerCase()) 99 String branch = (String) e.getProperty(BRANCH); local 127 String branch = device.getBuildAlias().toStringUtf8(); local [all...] |
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/ |
branch-warn-2.s | 8 ba long_forward ; { dg-warning "32-bit conditional branch generated" }
|
branch-warn-3.s | 10 ba start ; { dg-warning "32-bit conditional branch generated" }
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
dv-branch.s | 2 // Verify DV detection on branch variations
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/ |
mips4-branch-likely.s | 1 # Source file used to test -mips4 branch-likely instructions.
|
relax-bc1any.s | 1 # Source file to test branch relaxation with the BC1ANY2F, BC1ANY2T,
|
relax-swap3.s | 1 # Source file used to check the lack of branch swapping with a relaxed macro.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/ |
geta-op.s | 1 # Simple GETA/BRANCH/PUSHJ operands.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/ |
branch.s | 13 # Branch to an external label.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/ |
err-1.s | 4 ! is referenced in a conditional or unconditional branch.
|
/toolchain/binutils/binutils-2.25/gold/testsuite/ |
thumb_bl_out_of_range_local.s | 2 # Test THUMB/THUMB-2 bl instructions just out of the branch range limits 3 # and with local branch targets. 8 # Add padding so that target is just output of branch range. 53 # Add padding so that target is just out of branch range.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-m68hc11/ |
adj-brset.s | 7 brclr 140,x#200,L8 ; Branch adjustment covers the whole test 9 ;;; branch must be fixed and reduced by 1. We check for different 15 brclr 90,x,#99,L3 ; Likewise with forward branch 40 brclr 140,x#200,_start ; Branch adjustment covers the whole test
|
xgate1.s | 1 ;;; Test branches and branch relocate with XGATE
|
/external/llvm/test/CodeGen/Mips/ |
nacl-branch-delay.ll | 20 ; We first make sure that for non-NaCl targets branch-delay slot contains 23 ; Check that branch-delay slot is used to load argument from x before function 29 ; Check that branch-delay slot is used for adjusting sp before return. 35 ; For NaCl, check that branch-delay slot doesn't contain dangerous instructions. 53 ; Check that branch-delay slot is used for storing to x before function call. 58 ; Check that branch-delay slot is used for adjusting sp before return. 64 ; For NaCl, check that branch-delay slot doesn't contain dangerous instructions.
|
/external/skia/infra/bots/assets/clang_linux/ |
create.py | 18 BRANCH = "release_39" 23 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "llvm"]) 25 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "clang"]) 26 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "lld"]) 28 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "compiler-rt"]) 29 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "libcxx"]) 30 subprocess.check_call(["git", "clone", "-b", BRANCH, REPO + "libcxxabi"])
|
/external/llvm/lib/Target/SystemZ/ |
SystemZLongBranch.cpp | 1 //===-- SystemZLongBranch.cpp - Branch lengthening for SystemZ ------------===// 13 // to be in range with a longer form (branch relaxation). A simple 17 // quadratic in the number of blocks; relaxing branch N can make branch N-1 18 // go out of range, which in turn can make branch N-2 go out of range, 24 // in range (branch shortening). This too can be implemented as a function 27 // shortening is also quadratic in the worst case; shortening branch N 28 // can bring branch N-1 in range of the short form, which in turn can do 29 // the same for branch N-2, and so on. The main advantage of shortening 36 // which are relatively rare to begin with, and the long branch sequence [all...] |
/external/v8/src/compiler/ |
control-flow-optimizer.cc | 73 Node* branch = node; local 74 if (BranchHintOf(branch->op()) != BranchHint::kNone) return false; 75 Node* cond = NodeProperties::GetValueInput(branch, 0); 87 BranchMatcher matcher(branch); 108 if (branch != node) { 109 branch->NullAllInputs(); 116 branch = branch1; 122 DCHECK_EQ(IrOpcode::kBranch, branch->opcode()); 123 if (branch == node) { 136 branch->NullAllInputs() [all...] |