/bionic/libc/arch-arm64/generic/bionic/ |
memcmp.S | 47 #define diff x6 define 71 eor diff, data1, data2 /* Non-zero if differences found. */ 72 csinv endloop, diff, xzr, ne /* Last Dword or differences. */ 76 /* Not reached the limit, must have found a diff. */ 93 orr diff, diff, mask 97 rev diff, diff 101 /* The MS-non-zero bit of DIFF marks either the first bit 105 clz pos, diff [all...] |
/cts/hostsidetests/theme/src/android/theme/cts/ |
ComparisonTask.java | 82 File diff = File.createTempFile("diff_" + mName, ".png"); local 83 createDiff(ref, gen, diff); 84 Log.logAndDisplay(LogLevel.INFO, TAG, "Diff created: " + diff.getPath()); 133 // The diff will contain image1, image2 and the difference between the two. 134 final BufferedImage diff = new BufferedImage(width * 3, height, BufferedImage.TYPE_INT_ARGB); local 157 diff.setRGB(x, j, color1); 159 diff.setRGB(x, j, color2); 161 diff.setRGB(x, j, color3); 164 ImageIO.write(diff, "png", out) [all...] |
/cts/tests/tests/content/src/android/content/pm/cts/ |
FeatureGroupInfoTest.java | 134 int diff = sFeatureInfoComparator.compare(a[i], b[i]); local 135 if (diff != 0) { 136 return diff; 158 final int diff; 160 diff = -1; 162 diff = 1; 164 diff = Integer.compare(o1.reqGlEsVersion, o2.reqGlEsVersion); 166 diff = o1.name.compareTo(o2.name); 169 if (diff == 0) { 172 return diff; [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/ |
recon_altivec.asm | 16 .macro row_of16 Diff Pred Dst Stride 20 lvx v3, 0, \Diff ;# v3 = d0..d7 23 lvx v3, r8, \Diff ;# v3 = d8..d15 24 addi \Diff, \Diff, 32 ;# next diff 56 .macro two_rows_of8 Diff Pred Dst Stride write_first_four_pels 59 lvx v3, 0, \Diff ;# v3 = d0..d7 62 lvx v3, r8, \Diff ;# v2 = d8..d15 100 addi r3, r3, 32; ;# next diff [all...] |
/external/libvpx/libvpx/vp8/common/ppc/ |
recon_altivec.asm | 16 .macro row_of16 Diff Pred Dst Stride 20 lvx v3, 0, \Diff ;# v3 = d0..d7 23 lvx v3, r8, \Diff ;# v3 = d8..d15 24 addi \Diff, \Diff, 32 ;# next diff 56 .macro two_rows_of8 Diff Pred Dst Stride write_first_four_pels 59 lvx v3, 0, \Diff ;# v3 = d0..d7 62 lvx v3, r8, \Diff ;# v2 = d8..d15 100 addi r3, r3, 32; ;# next diff [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/ppc/ |
recon_altivec.asm | 16 .macro row_of16 Diff Pred Dst Stride 20 lvx v3, 0, \Diff ;# v3 = d0..d7 23 lvx v3, r8, \Diff ;# v3 = d8..d15 24 addi \Diff, \Diff, 32 ;# next diff 56 .macro two_rows_of8 Diff Pred Dst Stride write_first_four_pels 59 lvx v3, 0, \Diff ;# v3 = d0..d7 62 lvx v3, r8, \Diff ;# v2 = d8..d15 100 addi r3, r3, 32; ;# next diff [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/model/ |
EntityDiff.java | 48 final EntityDiff diff = new EntityDiff(); local 57 diff.add(builder.build()); 66 diff.add(builder.build()); 74 diff.add(builder.build()); 79 diff.add(builder.build()); 89 diff.add(builder.build()); 105 diff.add(builder.build()); 112 diff.add(builder.build()); 123 diff.add(builder.build()); 127 return diff; [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ |
denoising.c | 30 * pixel adjustments vs. pixel diff value ahead of time. 32 * = (filter_coefficient * diff + 128) >> 8 40 * The adjustment vs. diff curve becomes flat very quick when diff increases. 45 * diff adjustment w/o motion correction adjustment w/ motion correction 49 * [-3, 3] diff diff 87 int diff = 0; local 91 diff = mc_running_avg_y[c] - sig[c]; 92 absdiff = abs(diff); [all...] |
/external/libvpx/libvpx/vp8/encoder/ |
denoising.c | 29 * pixel adjustments vs. pixel diff value ahead of time. 31 * = (filter_coefficient * diff + 128) >> 8 39 * The adjustment vs. diff curve becomes flat very quick when diff increases. 44 * diff adjustment w/o motion correction adjustment w/ motion correction 48 * [-3, 3] diff diff 81 int diff = 0; local 85 diff = mc_running_avg_y[c] - sig[c]; 86 absdiff = abs(diff); [all...] |
/external/llvm/docs/ |
Phabricator.rst | 47 Note that you can upload patches created through various diff tools, 49 **as much context as possible** with your diff! Don't worry, Phabricator 50 will automatically send a diff with a smaller context in the review 54 To get a full diff, use one of the following commands (or just use Arcanist 57 * ``git diff -U999999 other-branch`` 58 * ``svn diff --diff-cmd=diff -x -U999999`` 63 * Click *Create Diff*. 64 * Paste the text diff or upload the patch file [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ |
denoising.c | 29 * pixel adjustments vs. pixel diff value ahead of time. 31 * = (filter_coefficient * diff + 128) >> 8 39 * The adjustment vs. diff curve becomes flat very quick when diff increases. 44 * diff adjustment w/o motion correction adjustment w/ motion correction 48 * [-3, 3] diff diff 82 int diff = 0; local 86 diff = mc_running_avg_y[c] - sig[c]; 87 absdiff = abs(diff); [all...] |
/external/chromium_org/chrome/browser/chromeos/login/screens/ |
screen_context.cc | 90 void ScreenContext::GetChangesAndReset(base::DictionaryValue* diff) { 92 DCHECK(diff); 93 changes_.Swap(diff); 97 void ScreenContext::ApplyChanges(const base::DictionaryValue& diff, 103 keys->reserve(diff.size()); 105 base::DictionaryValue::Iterator it(diff);
|
screen_context.h | 69 // GetChangesAndReset() in |diff|. All previous contents of |diff| 71 void GetChangesAndReset(base::DictionaryValue* diff); 73 // Applies changes from |diff| to the context. All keys from |diff| 75 void ApplyChanges(const base::DictionaryValue& diff,
|
/external/chromium_org/media/video/capture/win/ |
capability_list_win.cc | 67 ResolutionDiff diff; local 68 diff.capability = &(*it); 69 diff.diff_width = it->supported_format.frame_size.width() - requested_width; 70 diff.diff_height = 73 diff.diff_frame_rate = 77 diff_list.push_back(diff);
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/ppc/ |
csystemdependent.c | 47 void (*vp8_subtract_mby)(short *diff, unsigned char *src, unsigned char *pred, int stride); 48 void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride); 64 extern void subtract_mby_c(short *diff, unsigned char *src, unsigned char *pred, int stride); 65 extern void subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride); 96 extern void vp8_subtract_mby_ppc(short *diff, unsigned char *src, unsigned char *pred, int stride); 97 extern void vp8_subtract_mbuv_ppc(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
|
/external/chromium_org/tools/git/ |
for-all-touched-files.py | 51 """Provides a list of all new and modified files listed by [git diff 52 branch_name] where branch_name can be blank to get a diff of the 60 lines = GitShell('git diff --stat=600,500 %s' % branch_name) 76 """For each new or modified file output by [git diff branch_name], 98 help='Sets what to diff to (default origin/master). Set ' 99 'to empty to diff workspace against HEAD.')
|
/external/libnl/lib/netfilter/ |
queue_obj.c | 169 int diff = 0; local 176 diff |= NFNL_QUEUE_DIFF_VAL(GROUP, queue_group); 177 diff |= NFNL_QUEUE_DIFF_VAL(MAXLEN, queue_maxlen); 178 diff |= NFNL_QUEUE_DIFF_VAL(COPY_MODE, queue_copy_mode); 179 diff |= NFNL_QUEUE_DIFF_VAL(COPY_RANGE, queue_copy_range); 184 return diff;
|
/external/libvpx/libvpx/vp8/encoder/ppc/ |
csystemdependent.c | 47 void (*vp8_subtract_mby)(short *diff, unsigned char *src, unsigned char *pred, int stride); 48 void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride); 64 extern void subtract_mby_c(short *diff, unsigned char *src, unsigned char *pred, int stride); 65 extern void subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride); 96 extern void vp8_subtract_mby_ppc(short *diff, unsigned char *src, unsigned char *pred, int stride); 97 extern void vp8_subtract_mbuv_ppc(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
|
/external/llvm/tools/llvm-diff/ |
llvm-diff.cpp | 1 //===-- llvm-diff.cpp - Module comparator command-line driver ---*- C++ -*-===// 39 Diag.print("llvm-diff", errs()); 51 Engine.diff(LFn, RFn); 82 // If any global names were given, just diff those. 87 // Otherwise, diff everything in the module. 89 Engine.diff(LModule, RModule);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ppc/ |
csystemdependent.c | 47 void (*vp8_subtract_mby)(short *diff, unsigned char *src, unsigned char *pred, int stride); 48 void (*vp8_subtract_mbuv)(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride); 64 extern void subtract_mby_c(short *diff, unsigned char *src, unsigned char *pred, int stride); 65 extern void subtract_mbuv_c(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride); 96 extern void vp8_subtract_mby_ppc(short *diff, unsigned char *src, unsigned char *pred, int stride); 97 extern void vp8_subtract_mbuv_ppc(short *diff, unsigned char *usrc, unsigned char *vsrc, unsigned char *pred, int stride);
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
NameNormalizer.java | 89 int diff = getComplexityCollator().compare(clean1, clean2); local 90 if (diff != 0) { 91 return diff; 96 diff = -clean1.compareTo(clean2); 97 if (diff != 0) { 98 return diff;
|
/external/chromium_org/chrome/test/ispy/server/views/ |
main_view.html | 51 Diff ({{ "%.1f"|format(comp['percent_different']) }}%)<br> 52 <a class="imagelink" href="{{ comp['diff'] }}"> 53 <img class="image" src={{ comp['diff'] }}>
|
/external/chromium_org/components/autofill/core/browser/webdata/ |
autofill_entry.cc | 36 int diff = name_.compare(key.name()); local 37 if (diff < 0) 40 if (diff == 0)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGGradientStop.cpp | 39 void RenderSVGGradientStop::styleDidChange(StyleDifference diff, const RenderStyle* oldStyle) 41 RenderObject::styleDidChange(diff, oldStyle); 42 if (diff.hasNoChange())
|
/external/chromium_org/third_party/libusb/ |
windows-build.patch | 0 diff --git a/libusb/libusb.h b/libusb/libusb.h 27 diff --git a/libusb/os/threads_posix.c b/libusb/os/threads_posix.c 43 diff --git a/libusb/os/windows_usb.c b/libusb/os/windows_usb.c
|