HomeSort by relevance Sort by last modified time
    Searched full:bump (Results 1 - 25 of 599) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/Transforms/RewriteStatepointsForGC/
base-pointers-5.ll 12 br label %bump
14 bump: ; preds = %here
21 merge: ; preds = %there, %bump
23 ; CHECK: %merged_value.base = phi i64 addrspace(1)* [ %base_obj_x, %bump ], [ %base_obj_y, %there ]
24 ; CHECK-NEXT: %merged_value = phi i64 addrspace(1)* [ %base_obj_x, %bump ], [ %y, %there ]
25 %merged_value = phi i64 addrspace(1)* [ %base_obj_x, %bump ], [ %y, %there ]
  /development/samples/browseable/NfcProvisioning/
_index.jd 9 Install the DeviceOwner sample to an unprovisioned device. Fill in the values below, and bump the
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Advanced/ChameleonMan/
ChameleonMan.txt 5 This demo shows a matrix skinned character in combination with bump mapping.
8 The ChameleonMan demo shows a Matrix Skinned Character in combination with bump mapping.
18 - bump mapped lighting
  /external/ltp/pan/
ltp-bump.c 33 /* $Id: ltp-bump.c,v 1.1 2009/05/19 09:39:11 subrata_modak Exp $ */
75 "ltp-bump: Must supply -a or set ZOO env variable\n");
81 fprintf(stderr, "ltp-bump: Must supply names\n");
87 fprintf(stderr, "ltp-bump: %s\n", zoo_error);
95 fprintf(stderr, "ltp-bump: Did not find tag '%s'\n",
101 "ltp-bump: Tag %s (pid %d) seems to be dead already.\n",
105 "ltp-bump: %s\n",
Makefile 40 MAKE_TARGETS := ltp-bump ltp-pan
48 ltp-bump: ltp-bump.o zoolib.o
  /external/iptables/
COMMIT_NOTES 15 Adding fields to a struct always entails a vcurrent bump.
17 - Check, whether a bump (vcurrent,vage) has already been made since the
  /external/llvm/test/Transforms/StraightLineStrengthReduce/
slsr-mul.ll 93 ; The bump is a multiple of the stride.
100 ; bump = s * 2;
101 ; mul1 = mul0 + bump; // GVN ensures mul1 and mul2 use the same bump.
102 ; mul2 = mul1 + bump;
111 ; CHECK: [[BUMP:%[a-zA-Z0-9]+]] = shl i32 %s, 1
112 ; CHECK: %mul1 = add i32 %mul0, [[BUMP]]
117 ; CHECK: %mul2 = add i32 %mul1, [[BUMP]]
slsr-add.ll 42 ; CHECK: [[bump:%[a-zA-Z0-9]+]] = mul i32 %s, 3
43 ; CHECK: [[t2:%[a-zA-Z0-9]+]] = add i32 [[t1]], [[bump]]
47 ; CHECK: add i32 [[t2]], [[bump]]
72 ; CHECK: [[bump:%[a-zA-Z0-9]+]] = shl i32 %s, 1
73 ; CHECK: [[t2:%[a-zA-Z0-9]+]] = sub i32 [[t1]], [[bump]]
78 ; CHECK: [[t3:%[a-zA-Z0-9]+]] = sub i32 [[t2]], [[bump]]
slsr-gep.ll 86 ; CHECK: [[BUMP:%[a-zA-Z0-9]+]] = mul i64 %s, 5
88 ; CHECK: %p1 = getelementptr inbounds i32, i32* %p0, i64 [[BUMP]]
94 ; CHECK: %p2 = getelementptr inbounds i32, i32* %p1, i64 [[BUMP]]
102 ; In this case, the bump
116 ; CHECK: [[BUMP:%[a-zA-Z0-9]+]] = mul i64 %s, 60
118 ; CHECK: getelementptr inbounds i8, i8* %{{[0-9]+}}, i64 [[BUMP]]
124 ; CHECK: getelementptr inbounds i8, i8* %{{[0-9]+}}, i64 [[BUMP]]
  /external/glide/
update_files.sh 22 # We may have already added bump's remote.
23 if ! git remote | grep bump > /dev/null;
25 git remote add bump https://github.com/bumptech/glide.git
30 git fetch bump ${GLIDE_BRANCH} || exit 1
81 echo "Merged bump ${GLIDE_BRANCH} at revision ${GIT_SHA}"
  /external/ltp/doc/man1/
ltp-bump.1 2 .\" $Id: ltp-bump.1,v 1.1 2009/05/19 09:39:11 subrata_modak Exp $
34 .TH BUMP 1 "14 Sep 2000" "LTP" "Linux Test Project"
36 ltp-bump \- send signal to tags run by ltp-pan
38 \fBltp-bump [-1] [-s \fIsig\fB] [\fI-a active-file\fB] [tags...]
41 Bump will send a SIGINT signal to processes, given that each process has a
  /external/llvm/test/Transforms/StraightLineStrengthReduce/NVPTX/
reassociate-geps-and-slsr.ll 40 ; CHECK: [[b1:%[0-9]+]] = getelementptr float, float* %arr, i64 [[bump:%[0-9]+]]
49 ; CHECK: [[b2:%[0-9]+]] = getelementptr float, float* [[b1]], i64 [[bump]]
57 ; CHECK: [[b3:%[0-9]+]] = getelementptr float, float* [[b2]], i64 [[bump]]
65 ; CHECK: [[b4:%[0-9]+]] = getelementptr float, float* [[b3]], i64 [[bump]]
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/
DisplacementMap.txt 9 Displacement mapping is an alternative to bump mapping, normal mapping, and parallax mapping, that causes the actual geometric position of points over a textured surface to be displaced, often along the local surface normal, according to the value the texture function evaluates to at each point on the surface. It gives surfaces a great sense of depth and detail, permitting self-occlusion, self-shadowing and silhouettes.
  /external/llvm/lib/Transforms/Scalar/
StraightLineStrengthReduce.cpp 191 // Emit code that computes the "bump" from Basis to C. If the candidate is a
192 // GEP and the bump is not divisible by the element size of the GEP, this
193 // function sets the BumpWithUglyGEP flag to notify its caller to bump the
560 // Compute Bump = C - Basis = (i' - i) * S.
561 // Common case 1: if (i' - i) is 1, Bump = S.
564 // Common case 2: if (i' - i) is -1, Bump = -S.
568 // Otherwise, Bump = (i' - i) * sext/trunc(S). Note that (i' - i) and S may
574 // If (i' - i) is a power of 2, Bump = sext/trunc(S) << log(i' - i).
579 // If (i - i') is a power of 2, Bump = -sext/trunc(S) << log(i' - i).
605 Value *Bump = emitBump(Basis, C, Builder, DL, BumpWithUglyGEP)
    [all...]
  /external/curl/docs/libcurl/
ABI 16 the release notes, and if they mention an ABI break/soname bump, you may have
31 changed to adhere to new things, we will bump the soname. Then the library
40 We are determined to bump the SONAME as rarely as possible. Ideally, we
  /developers/build/prebuilts/gradle/NfcProvisioning/Application/src/main/res/values/
base-strings.xml 25 Install the DeviceOwner sample to an unprovisioned device. Fill in the values below, and bump the
  /development/samples/browseable/NfcProvisioning/res/values/
base-strings.xml 25 Install the DeviceOwner sample to an unprovisioned device. Fill in the values below, and bump the
  /development/samples/training/ContactsList/res/values-sw720dp/
dimens.xml 19 <!-- On devices with much larger screen sizes, such as a 10" tablet like Nexus 10, bump up the
  /external/autotest/client/site_tests/power_Backlight/
control 25 each successive bump uses more energy than the previous level.
  /external/autotest/test_suites/
control.cts_N 35 args_dict['timeout_mins'] = 5040 # Bump default 1 day to half a week as well.
  /external/ltp/
.gitignore 40 /pan/ltp-bump
  /packages/apps/Messaging/res/values/
versions.xml 22 keys are moved or renamed. You don't need to bump up the version number if you are just
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
EmptyService.java 26 * A Service that does nothing. It is used to bump the adjustment of the BulkOperationHelper thread
  /build/make/core/
cleanspec.mk 16 # Just bump this if you want to force a clean build.
21 # 3. BUMP THE VERSION.
  /external/libdrm/
RELEASING 16 2) Bump the version number in configure.ac. We seem to have settled
17 for 2.4.x as the versioning scheme for libdrm, so just bump the

Completed in 2046 milliseconds

1 2 3 4 5 6 7 8 91011>>