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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AArch64/SVE/
rev.s 10 rev z0.b, z31.b label
11 // CHECK-INST: rev z0.b, z31.b
16 rev z0.h, z31.h label
17 // CHECK-INST: rev z0.h, z31.h
22 rev z0.s, z31.s label
23 // CHECK-INST: rev z0.s, z31.s
28 rev z0.d, z31.d label
29 // CHECK-INST: rev z0.d, z31.d
rev-diagnostics.s 8 rev z0.d, z31.d label
10 // CHECK-NEXT: rev z0.d, z31.d
14 rev z0.d, z31.d label
16 // CHECK-NEXT: rev z0.d, z31.d
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/release/
merge-git.sh 35 echo " -rev NUM The revision to merge into the project"
40 -rev | --rev | -r )
42 rev=$1
57 if [ -z "$rev" ]; then
65 git svn find-rev r$rev origin/master &>/dev/null
67 git_hash=`git svn find-rev r$rev origin/master`
70 echo "error: could not determine git commit for r$rev"
    [all...]
merge.sh 17 rev=""
25 echo " -rev NUM The revision to merge into the project"
32 -rev | --rev | -r )
34 rev=$1
64 if [ "x$rev" = "x" -o "x$proj" = "x" ]; then
79 echo "Reverting r$rev:" > $tempfile
81 echo "Merging r$rev:" > $tempfile
83 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
90 echo "# Reverting r$rev in $proj locally
    [all...]
  /external/u-boot/board/freescale/common/
eeprom.h 19 #define MPC85XX_CPU_BOARD_MAJOR(rev) (((rev) >> 8) & 0xff)
20 #define MPC85XX_CPU_BOARD_MINOR(rev) ((rev) & 0xff)
  /external/llvm/utils/release/
merge.sh 17 rev=""
25 echo " -rev NUM The revision to merge into the project"
32 -rev | --rev | -r )
34 rev=${$1#r}
64 if [ "x$rev" = "x" -o "x$proj" = "x" ]; then
79 echo "Reverting r$rev:" > $tempfile
81 echo "Merging r$rev:" > $tempfile
83 svn log -c $rev http://llvm.org/svn/llvm-project/$proj/trunk >> $tempfile 2>&1
90 echo "# Reverting r$rev in $proj locally
    [all...]
  /external/u-boot/arch/arm/mach-rmobile/
cpu_info-sh73a0.c 24 u32 rev; local
28 rev = ((id >> 4) & 0xF) + 1;
30 return rev;
36 u32 rev; local
40 rev = id & 0xF;
42 return rev;
cpu_info-r8a7740.c 24 u32 rev; local
28 rev = (id >> 4) & 0xF;
30 return rev;
  /external/ImageMagick/
gitversion.sh 4 c=`git rev-list --full-history --all --abbrev-commit | wc -l | sed -e 's/^ *//'`
5 h=`git rev-list --full-history --all --abbrev-commit | head -1`
  /external/dtc/scripts/
setlocalversion 12 if head=`git rev-parse --verify HEAD 2>/dev/null`; then
14 if git name-rev --tags HEAD | grep -E '^HEAD[[:space:]]+(.*~[0-9]*|undefined)$' > /dev/null; then
  /external/u-boot/arch/mips/mach-ath79/
cpu.c 53 u32 rev = 0, ver = 1; local
65 rev = id >> AR71XX_REV_ID_REVISION_SHIFT;
66 rev &= AR71XX_REV_ID_REVISION_MASK;
81 rev = id & AR71XX_REV_ID_REVISION2_MASK;
84 rev = id & AR71XX_REV_ID_REVISION_MASK;
98 gd->arch.rev = rev;
107 u32 id, rev, ver; local
119 rev = gd->arch.rev;
    [all...]
  /external/u-boot/arch/arm/mach-uniphier/
cpu-info.c 17 unsigned int id, model, rev, required_model = 1, required_rev = 1; local
21 rev = uniphier_get_soc_revision();
59 printf(" (model %d, revision %d)\n", model, rev);
65 } else if (rev < required_rev) {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
logmerge.py 120 tag, rev = line.split()
123 revisions[tag] = rev
126 rev = revisions.get(branch)
128 if rev:
129 if rev.find('.0.') >= 0:
130 rev = rev.replace('.0.', '.')
131 branch = re.compile(r"^" + re.escape(rev) + r"\.\d+$")
154 rev = words[1]
157 rev = None
    [all...]
  /external/python/cpython2/Tools/scripts/
logmerge.py 120 tag, rev = line.split()
123 revisions[tag] = rev
126 rev = revisions.get(branch)
128 if rev:
129 if rev.find('.0.') >= 0:
130 rev = rev.replace('.0.', '.')
131 branch = re.compile(r"^" + re.escape(rev) + r"\.\d+$")
154 rev = words[1]
157 rev = Non
    [all...]
  /external/eigen/bench/perf_monitoring/gemm/
run.sh 81 rev=$1
87 prev=`grep $rev "$name.backup" | cut -c 14-`
92 if echo "$global_args" | grep "$rev" > /dev/null; then
97 # echo $update et $selected et $rev_found because $rev et "$global_args"
110 echo "$rev $res" >> $name.out
112 echo "Compilation failed, skip rev $rev"
115 echo "Skip existing results for $rev / $name"
116 echo "$rev $res" >> $name.out
124 cut -f1 -d"#" < changesets.txt | grep -E '[[:alnum:]]' | while read rev
    [all...]
  /external/swiftshader/third_party/LLVM/utils/git/
find-rev 16 repo,rev = args
19 rev = int(rev)
24 p = subprocess.Popen(['git', 'rev-list', 'git-svn', '--pretty'],
36 if lrev<=rev:
41 if lrev == rev:
  /external/u-boot/lib/efi_loader/
helloworld.c 49 u16 rev[] = L"0.0.0"; local
54 rev[0] = (systable->hdr.revision >> 16) + '0';
55 rev[4] = systable->hdr.revision & 0xffff;
56 for (; rev[4] >= 10;) {
57 rev[4] -= 10;
58 ++rev[2];
61 if (rev[4])
62 rev[4] += '0';
64 rev[3] = 0;
67 con_out->output_string(con_out, rev);
    [all...]
  /external/llvm/utils/git/
find-rev 16 repo,rev = args
19 rev = int(rev)
24 p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'],
36 if lrev<=rev:
41 if lrev == rev:
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/git/
find-rev 16 repo,rev = args
19 rev = int(rev)
24 p = subprocess.Popen(['git', 'rev-list', opts.branch, '--pretty'],
36 if lrev<=rev:
41 if lrev == rev:
  /external/bcc/scripts/
git-tag.sh 2 git_rev_count=$(git rev-list $git_tag_latest.. --count)
  /external/freetype/src/tools/
update-copyright 6 topdir=`git rev-parse --show-toplevel`
  /external/llvm/utils/git-svn/
git-svnup 10 OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/git-svn/
git-svnup 10 OLD_BRANCH=$(git rev-parse --abbrev-ref HEAD)
  /external/u-boot/arch/x86/cpu/ivybridge/
northbridge.c 79 static void northbridge_dmi_init(struct udevice *dev, int rev)
86 if ((rev & BASE_REV_MASK) == BASE_REV_SNB) {
93 if (rev >= SNB_STEP_D0) {
95 } else if (rev >= SNB_STEP_D1) {
101 if ((rev & BASE_REV_MASK) == BASE_REV_SNB)
107 static void northbridge_init(struct udevice *dev, int rev)
112 northbridge_dmi_init(dev, rev);
117 if ((rev & BASE_REV_MASK) == BASE_REV_IVB) {
208 int rev; local
213 rev = bridge_silicon_revision(dev)
    [all...]
  /external/u-boot/drivers/usb/host/
ehci-omap.c 31 u32 rev; local
33 rev = readl(&uhh->rev);
38 switch (rev) {
54 default: /* Rev. 2 onwards */
184 unsigned int i, reg = 0, rev = 0; local
216 rev = readl(&uhh->rev);
217 if (rev == OMAP_USBHS_REV1) {
232 } else if (rev == OMAP_USBHS_REV2)
    [all...]

Completed in 421 milliseconds

1 2 3 4 5 6 7 8 91011>>