/openbsd/gnu/usr.bin/binutils-2.17/binutils/ |
H A D | BRANCHES | 8 include the branch name, and a description of the branch. The branch 15 binutils-csl-arm-2005q1-branch 20 binutils-csl-gxxpro-3_4-branch 21 binutils-csl-2_17-branch 28 binutils-2_10-branch 29 binutils-2_11-branch 30 binutils-2_12-branch 31 binutils-2_13-branch 32 binutils-2_14-branch 33 binutils-2_15-branch [all …]
|
H A D | MAINTAINERS | 163 the branch, ask the branch maintainer. This is: 192 to contributions on a branch. 194 Before creating the branch, you should select a name for the branch of 208 choice of branch name would be: 226 Having selected the branch name, create the branch as follows: 229 to the initial state of your branch. 236 changed on the branch relative to the initial state. 238 3. Create the branch: 241 binutils-<org>-<name>-branch 243 4. Document the branch: [all …]
|
/openbsd/gnu/usr.bin/perl/ |
H A D | make_patchnum.pl | 144 if (!$branch) { 147 if (!$branch) { 149 $describe = $branch; 151 if (!$branch) { 153 $branch = "pull-request-$pr"; 155 if (!$branch) { 156 $branch = $names[0] || $commit_id; 166 $branch //= ""; 168 if (length $branch) { 186 if (length $branch && length $remote) { [all …]
|
/openbsd/gnu/usr.bin/cvs/src/ |
H A D | status.c | 267 char *branch = NULL; local 277 cvs_output (branch ? branch : vers->vn_rcs, 0); 280 if (branch) 281 free (branch); 351 char *branch = NULL; local 355 branch = RCS_whatbranch(xrcsnode, p->key) ; 358 + (branch ? strlen (branch) : strlen (p->data))); 360 branch ? "branch" : "revision", 361 branch ? branch : p->data); 365 if (branch) [all …]
|
H A D | admin.c | 75 char *branch; member 187 if (admin_data.branch != NULL) 463 if (admin_data.branch != NULL) 523 free (admin_data.branch); 587 char *branch = &admin_data->branch[2]; local 588 if (*branch != '\0' && ! isdigit ((unsigned char) *branch)) 590 branch = RCS_whatbranch (rcs, admin_data->branch + 2); 591 if (branch == NULL) 599 RCS_setbranch (rcs, branch); 600 if (branch != NULL && branch != &admin_data->branch[2]) [all …]
|
/openbsd/gnu/gcc/gcc/config/sh/ |
H A D | lib1funcs.h | 72 #define SL(branch, dest, in_slot, in_slot_arg2) \ argument 73 in_slot, in_slot_arg2; branch dest 74 #define SL1(branch, dest, in_slot) \ argument 75 in_slot; branch dest 77 #define SL(branch, dest, in_slot, in_slot_arg2) \ argument 78 branch##.s dest; in_slot, in_slot_arg2 79 #define SL1(branch, dest, in_slot) \ argument 80 branch##/s dest; in_slot
|
/openbsd/gnu/usr.bin/perl/pod/ |
H A D | perlgit.pod | 37 % git branch 43 % git branch -a 87 To make a local branch of a remote branch: 108 On branch blead 179 On branch orange 233 On branch orange 444 % git push origin $branch:refs/heads/$branch 445 % git config branch.$branch.remote origin 446 % git config branch.$branch.merge refs/heads/$branch 473 branch: [all …]
|
/openbsd/gnu/usr.bin/perl/Porting/ |
H A D | GitUtils.pm | 41 my $branch; 45 chomp($branch= `$cmd`); 46 last if $branch ne 'undefined'; 48 for ($branch) { 58 join(" ", $branch, $tstamp, $sha1, $describe);
|
H A D | make_snapshot.pl | 59 my $branch; 61 $branch= $b and last 65 $branch ||= "unknown-branch"; 70 print $fh join(" ", $branch, isotime($tstamp), $sha1, $describe) . "\n";
|
/openbsd/gnu/usr.bin/cvs/doc/ |
H A D | cvs.info-3 | 367 development, known as a "branch". When you change files on a branch, 374 another branch. 379 * Creating a branch:: Creating a branch 382 * Magic branch numbers:: Magic branch numbers 383 * Merging a branch:: Merging an entire branch 413 Creating a branch 458 over to the branch. 462 branch::): 526 branch was created. 549 Each branch has a "branch number", consisting of an odd number of [all …]
|
/openbsd/gnu/llvm/llvm/docs/ |
H A D | GitHub.rst | 30 to cherry-pick the commit(s) to the release branch. If the commit(s) fail to 37 /branch <owner>/<repo>/<branch> 39 This command will create a pull request against the latest release branch using 40 the <branch> from the <owner>/<repo> repository. <branch> cannot contain any
|
H A D | HowToReleaseLLVM.rst | 41 *release branch: even releases* *4th Tue in January* 42 *release branch: odd releases* *4th Tue in July* 43 X.0.0-rc1 3 days after branch. 44 X.0.0-rc2 2 weeks after branch. 45 X.0.0-rc3 4 weeks after branch 46 **X.0.0-final** **6 weeks after branch** 47 **X.0.1** **8 weeks after branch** 48 **X.0.2** **10 weeks after branch** 61 * Create release branch and begin release process. 96 * Creating the release branch, and [all …]
|
H A D | MisExpect.rst | 22 a mismatch between the branch weights collected during profiling and those 27 branch weights are assigned to the target instruction in the form of 28 branch weight metadata. 30 There are 3 key places in the LLVM backend where branch weights are 37 which can be set through the ``-likely-branch-weight`` and 38 ``-unlikely-branch-weight`` LLVM options. During verification, if the
|
/openbsd/usr.bin/cvs/ |
H A D | import.c | 313 RCSNUM *branch, *brev; in import_new() local 332 if ((branch = rcsnum_parse(import_branch)) == NULL) in import_new() 337 if ((brev = rcsnum_brtorev(branch)) == NULL) in import_new() 350 rcs_branch_set(cf->file_rcs, branch); in import_new() 352 if (rcs_sym_add(cf->file_rcs, vendor_tag, branch) == -1) in import_new() 385 free(branch); in import_new() 394 char branch[CVS_REV_BUFSZ]; in import_update() local 425 rcsnum_tostr(cf->file_rcs->rf_branch, branch, sizeof(branch)); in import_update() 428 strcmp(branch, import_branch)) { in import_update() 457 import_tag(struct cvs_file *cf, RCSNUM *branch, RCSNUM *newrev) in import_tag() argument [all …]
|
H A D | rcsnum.c | 389 RCSNUM *branch; in rcsnum_new_branch() local 394 branch = rcsnum_alloc(); in rcsnum_new_branch() 395 rcsnum_cpy(rev, branch, 0); in rcsnum_new_branch() 396 rcsnum_setsize(branch, rev->rn_len + 1); in rcsnum_new_branch() 397 branch->rn_id[branch->rn_len - 1] = 2; in rcsnum_new_branch() 399 return branch; in rcsnum_new_branch()
|
/openbsd/sys/arch/arm/arm/ |
H A D | disassem.c | 295 int branch; in disasm() local 401 branch = ((insn << 2) & 0x03ffffff); in disasm() 402 if (branch & 0x02000000) in disasm() 403 branch |= 0xfc000000; in disasm() 404 di->di_printaddr(loc + 8 + branch); in disasm() 408 branch = ((insn << 2) & 0x03ffffff) | in disasm() 410 if (branch & 0x02000000) in disasm() 411 branch |= 0xfc000000; in disasm() 412 di->di_printaddr(loc + 8 + branch); in disasm()
|
/openbsd/gnu/llvm/llvm/utils/docker/scripts/ |
H A D | checkout.sh | 20 -b|--branch git branch to checkout, i.e. 'main', 47 -b|--branch) 100 git clone -b $LLVM_BRANCH --single-branch \
|
/openbsd/gnu/usr.bin/binutils-2.17/gas/doc/ |
H A D | c-i960.texi | 53 @cindex branch recording, i960 54 @cindex i960 branch recording 57 later optimization using branch prediction bits. (The conditional branch 58 instructions have branch prediction bits in the CA, CB, and CC 71 The counter following a branch records the number of times that branch 73 number of times the branch @emph{was} taken. 76 @cindex branch statistics table, i960 210 * Compare-and-branch-i960:: Compare-and-Branch 226 @node Compare-and-branch-i960 229 @cindex i960 compare/branch instructions [all …]
|
/openbsd/gnu/usr.bin/binutils/gas/doc/ |
H A D | c-i960.texi | 53 @cindex branch recording, i960 54 @cindex i960 branch recording 57 later optimization using branch prediction bits. (The conditional branch 58 instructions have branch prediction bits in the CA, CB, and CC 71 The counter following a branch records the number of times that branch 73 number of times the branch @emph{was} taken. 76 @cindex branch statistics table, i960 210 * Compare-and-branch-i960:: Compare-and-Branch 226 @node Compare-and-branch-i960 229 @cindex i960 compare/branch instructions [all …]
|
/openbsd/gnu/usr.bin/cvs/ |
H A D | FAQ | 299 the base of the branch (the branch point). 680 branch. 850 Use non-branch tags as you normally would. Non-branch tags 859 the branch with "update -r (branch-tag)". 876 You can branch a branch. 879 checked out on a branch, you will branch the branch. This 3957 adding a new branch tag to the old non-branch tag: 3991 a non-branch tag into a branch tag with the same name. 5063 dots) or a *non-branch* tag on a branch revision. Non-branch tags on a 5433 branch tag. [all …]
|
/openbsd/gnu/gcc/gcc/config/mt/ |
H A D | mt.c | 2169 branch_info *branch = xmalloc (sizeof (*branch)); in mt_add_branches() local 2189 branch->insn = insn; in mt_add_branches() 2226 return branch; in mt_check_delay_slot() 2228 p = PREV_INSN (branch); in mt_check_delay_slot() 2237 delete_insn (branch); in mt_check_delay_slot() 2359 branch_info *branch; in mt_reorg_hazard() local 2367 branch; in mt_reorg_hazard() 2368 branch = branch->next) in mt_reorg_hazard() 2436 for (branch = label->branches; branch; branch = next) in mt_reorg_hazard() 2438 next = branch->next; in mt_reorg_hazard() [all …]
|
/openbsd/gnu/usr.bin/binutils/opcodes/ |
H A D | s390-opc.txt | 19 b240 bakr RRE_RR "branch and stack" g5 esa,zarch 20 45 bal RX_RRRD "branch and link" g5 esa,zarch 21 05 balr RR_RR "branch and link" g5 esa,zarch 22 4d bas RX_RRRD "branch and save" g5 esa,zarch 23 0d basr RR_RR "branch and save" g5 esa,zarch 25 47 bc RX_URRD "branch on condition" g5 esa,zarch 26 07 bcr RR_UR "branch on condition" g5 esa,zarch 27 46 bct RX_RRRD "branch on count" g5 esa,zarch 28 06 bctr RR_RR "branch on count" g5 esa,zarch 30 0b bsm RR_RR "branch and set mode" g5 esa,zarch [all …]
|
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/ |
H A D | s390-opc.txt | 19 b240 bakr RRE_RR "branch and stack" g5 esa,zarch 20 45 bal RX_RRRD "branch and link" g5 esa,zarch 21 05 balr RR_RR "branch and link" g5 esa,zarch 22 4d bas RX_RRRD "branch and save" g5 esa,zarch 23 0d basr RR_RR "branch and save" g5 esa,zarch 25 47 bc RX_URRD "branch on condition" g5 esa,zarch 26 07 bcr RR_UR "branch on condition" g5 esa,zarch 27 46 bct RX_RRRD "branch on count" g5 esa,zarch 28 06 bctr RR_RR "branch on count" g5 esa,zarch 30 0b bsm RR_RR "branch and set mode" g5 esa,zarch [all …]
|
/openbsd/gnu/gcc/gcc/config/rs6000/ |
H A D | darwin.md | 261 [(set_attr "type" "branch") 270 [(set_attr "type" "branch") 337 [(set_attr "type" "branch,branch") 368 [(set_attr "type" "branch,branch") 382 [(set_attr "type" "branch,branch") 398 [(set_attr "type" "branch,branch") 418 [(set_attr "type" "branch") 438 [(set_attr "type" "branch")
|
/openbsd/gnu/usr.bin/binutils/cpu/ |
H A D | iq2000m.cpu | 47 (dni bgtz "branch if greater than zero" (MACH2000 USES-RS) 55 (dni bgtzl "branch if greater than zero likely" (MACH2000 USES-RS) 63 (dni blez "branch if less than or equal to zero" (MACH2000 USES-RS) 596 (dni bmb "branch if matching byte-lane" (MACH2000 USES-RS USES-RT) 599 (sequence ((BI branch?)) 600 (set branch? 0) 602 (set branch? 1)) 604 (set branch? 1)) 606 (set branch? 1)) 608 (set branch? 1)) [all …]
|