/art/compiler/ |
image_writer.cc | 649 static ArtMethod* GetTargetMethod(const CompilerDriver::PatchInformation* patch) 652 DexCache* dex_cache = class_linker->FindDexCache(patch->GetDexFile()); 653 ArtMethod* method = class_linker->ResolveMethod(patch->GetDexFile(), 654 patch->GetTargetMethodIdx(), 658 patch->GetTargetInvokeType()); 660 << patch->GetDexFile().GetLocation() << " " << patch->GetTargetMethodIdx(); 662 << patch->GetDexFile().GetLocation() << " " << patch->GetTargetMethodIdx(); 663 CHECK(dex_cache->GetResolvedMethods()->Get(patch->GetTargetMethodIdx()) == method 678 const CompilerDriver::PatchInformation* patch = code_to_patch[i]; local 688 const CompilerDriver::PatchInformation* patch = methods_to_patch[i]; local [all...] |
/ndk/build/tools/ |
patch-sources.sh | 18 # Script used to patch a source directory from a series of patches 25 "Patch a target source directory with a series of patches taken 27 is found under <patches-dir>/subdir/foo.patch will be applied with 28 'patch -p1' in <src-dir>/subdir. 60 PATCHES=`(cd $PATCHES_DIR && find . -name "*.patch" | sort ) 2> /dev/null` 66 for PATCH in $PATCHES; do 67 PATCHDIR=`dirname $PATCH` 68 PATCHNAME=`basename $PATCH` 70 cd $SRC_DIR/$PATCHDIR && patch -p1 < $PATCHES_DIR/$PATCH [all...] |
/ndk/sources/cxx-stl/llvm-libc++/tools/ |
upgrade-upstream.sh | 187 run git format-patch -k -o "$BUILD_DIR"/patches.android revision-$NEW_REVISION 188 run git format-patch -k -o "$BUILD_DIR"/patches.libcxx android-0 192 for PATCH in "$BUILD_DIR"/patches.libcxx/*.patch; do 195 run patch -p1 < "$PATCH" 197 echo "ERROR: Can't apply $PATCH properly!"
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitruby/PrettyPatch/ |
PrettyPatch_test.rb | 20 20528 => ["No 'Index' or 'diff' in patch header", 1, 4, 3, 7], 29 106368 => ["Images with git delta binary patch", 69, 8, 23, 10], 42 assert(false, "Fail to get patch " + patch_uri) 48 patch = get_patch(id) 54 pretty = PrettyPatch.prettify(patch)
|
/external/chromium_org/chrome/installer/setup/ |
setup_util.cc | 96 const base::FilePath& patch, 98 VLOG(1) << "Applying Courgette patch " << patch.value() 102 if (src.empty() || patch.empty() || dest.empty()) 107 patch.value().c_str(), 113 << "Failed to apply Courgette patch " << patch.value() 121 const base::FilePath& patch, 123 VLOG(1) << "Applying bsdiff patch " << patch.value( [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
VCSUtils.pm | 363 # Some users have a workflow where svn-create-patch, svn-apply and 709 } elsif (/^GIT binary patch$/ ) { 803 # The "from" clause is created by svn-create-patch, in 914 # that, if necessary, the text of an SVN or Git patch can be 942 # Parse one diff from a patch file created by svn-create-patch, and [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkBlurMaskFilter.cpp | 242 NinePatch* patch) const { 243 SkASSERT(patch != NULL); 258 // The nine patch special case does not handle ovals, and we 338 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) { 342 patch->fMask.fBounds.offsetTo(0, 0); 343 patch->fOuterRect = dstM.fBounds; 344 patch->fCenter.fX = SkScalarCeilToInt(leftUnstretched) + 1; 345 patch->fCenter.fY = SkScalarCeilToInt(topUnstretched) + 1; 359 NinePatch* patch) const { 439 // we're too small, relative to our blur, to break into nine-patch, [all...] |
/external/skia/src/effects/ |
SkBlurMaskFilter.cpp | 242 NinePatch* patch) const { 243 SkASSERT(patch != NULL); 258 // The nine patch special case does not handle ovals, and we 338 if (!this->filterMask(&patch->fMask, srcM, matrix, &margin)) { 342 patch->fMask.fBounds.offsetTo(0, 0); 343 patch->fOuterRect = dstM.fBounds; 344 patch->fCenter.fX = SkScalarCeilToInt(leftUnstretched) + 1; 345 patch->fCenter.fY = SkScalarCeilToInt(topUnstretched) + 1; 359 NinePatch* patch) const { 439 // we're too small, relative to our blur, to break into nine-patch, [all...] |
/external/strace/ |
strace.spec | 313 - add further s390 patch from IBM 319 - Added latest s390(x) patch. 322 - preliminary x86_64 support with an ugly patch to help 326 - newer version of the clone fixing patch (Roland McGrath) 341 - fix for the last patch by Jeff Law (#62591) 344 - integrate patch from Jeff Law to eliminate hang tracing threads 363 - modify new syscall patch to allocate enough heap space in setgroups32() 379 - added S/390 patch from IBM, adapting it to not conflict with 380 IA64 patch 383 - doh, actually apply the 2.4 syscalls patch [all...] |
/packages/apps/Camera/jni/feature_stab/db_vlvm/ |
db_feature_matching.cpp | 559 inline void db_SignedSquareNormCorr5x5_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip) 570 f= *pf++; f2sum=f*f; fsum=f; (*patch++)=f; 571 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 572 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 573 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 574 f= *pf; f2sum+=f*f; fsum+=f; (*patch++)=f; 577 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 578 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 579 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 580 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f [all...] |
/packages/apps/Camera2/jni/feature_stab/db_vlvm/ |
db_feature_matching.cpp | 559 inline void db_SignedSquareNormCorr5x5_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip) 570 f= *pf++; f2sum=f*f; fsum=f; (*patch++)=f; 571 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 572 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 573 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 574 f= *pf; f2sum+=f*f; fsum+=f; (*patch++)=f; 577 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 578 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 579 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 580 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f [all...] |
/packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/ |
db_feature_matching.cpp | 559 inline void db_SignedSquareNormCorr5x5_PreAlign_u(short *patch,const unsigned char * const *f_img,int x_f,int y_f,float *sum,float *recip) 570 f= *pf++; f2sum=f*f; fsum=f; (*patch++)=f; 571 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 572 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 573 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 574 f= *pf; f2sum+=f*f; fsum+=f; (*patch++)=f; 577 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 578 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 579 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f; 580 f= *pf++; f2sum+=f*f; fsum+=f; (*patch++)=f [all...] |
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
TerrainQuad.java | 252 * the LOD values of each patch.
437 // go through each patch and calculate its LOD based on camera distance
468 * Back on the ogl thread: update the terrain patch geometries
520 TerrainPatch patch = (TerrainPatch) child;
521 if (!patch.searchedForNeighboursAlready) {
523 patch.rightNeighbour = findRightPatch(patch);
524 patch.bottomNeighbour = findDownPatch(patch);
525 patch.leftNeighbour = findLeftPatch(patch); [all...] |
/external/chromium_org/native_client_sdk/src/tools/tests/ |
fix_deps_test.py | 33 with mock.patch('sys.stderr'): 37 with mock.patch('sys.stderr'): 41 with mock.patch('sys.stderr'):
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
Compiler.h | 90 #define GCC_VERSION_AT_LEAST(major, minor, patch) (GCC_VERSION >= (major * 10000 + minor * 100 + patch)) 93 #define GCC_VERSION_AT_LEAST(major, minor, patch) 0
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
version.py | 109 (major, minor, patch, prerelease, prerelease_num) = \ 112 if patch: 113 self.version = tuple(map(string.atoi, [major, minor, patch])) 183 # - indicating a post-release patch ('p', 'pl', 'patch')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
version.py | 109 (major, minor, patch, prerelease, prerelease_num) = \ 112 if patch: 113 self.version = tuple(map(string.atoi, [major, minor, patch])) 183 # - indicating a post-release patch ('p', 'pl', 'patch')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
main.py | 152 patch = host.scm().create_patch(options.git_commit, changed_files=changed_files) 154 patch_checker.check(patch)
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl | 144 const OutputPatch<HS2DS, OUTPUT_PATCH_SIZE> patch)
148 float3 s = map(patch[0].position, patch[1].position, patch[2].position, k);
158 float3 ds_du = dmap_du(patch[0].position, patch[1].position, patch[2].position, k);
159 float3 ds_dv = dmap_du(patch[1].position, patch[2].position, patch[0].position, k.yzx); [all...] |
/external/chromium_org/v8/tools/ |
fuzz-harness.sh | 68 cat << EOF | patch -s -p0 -d "$v8_root"
|
v8-info.sh | 37 PATCH="PATCH_LEVEL" 64 Output format: [V8 version] [SVN revision] [SVN patch merged]*. 68 Output format: [SVN patch merged]* 116 | grep "$MAJOR\|$MINOR\|$BUILD\|$PATCH" \
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/ |
d3d11spikysphere.hlsl | 144 const OutputPatch<HS2DS, OUTPUT_PATCH_SIZE> patch)
148 float3 s = map(patch[0].position, patch[1].position, patch[2].position, k);
158 float3 ds_du = dmap_du(patch[0].position, patch[1].position, patch[2].position, k);
159 float3 ds_dv = dmap_du(patch[1].position, patch[2].position, patch[0].position, k.yzx); [all...] |
/external/chromium_org/v8/tools/testrunner/server/ |
work_handler.py | 69 if not self._ApplyPatch(packet.patch): 130 def _ApplyPatch(self, patch): 131 if not patch: return True # Just skip if the patch is empty. 132 patchfilename = "_dtest_incoming_patch.patch" 134 f.write(patch) 137 self._SendResponse("Error applying patch.")
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/ |
diff_parser_unittest.py | 85 "See my awesome patch below!\n", 129 patch = p.sub(lambda x: " %s/" % prefix[x.group(1)], DIFF_TEST_DATA) 130 self.test_diff_parser(diff_parser.DiffParser(patch.splitlines()))
|
/external/libvpx/libvpx/tools/ |
ftfy.sh | 18 --msg-only Reformat the commit message only, ignore the patch itself. 43 [ $INTERSECT_RESULT -ne 0 ] && patch -p1 < "$1"
|