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

1 2

  /external/clang/test/CodeGen/
2005-01-02-PointerDifference.c 4 int Diff(int *P, int *Q) { return P-Q; }
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
DC_2I_D16_TRC_WRA_01.c 28 LVM_INT32 Diff;
37 Diff=*(pDataIn++)-(LeftDC>>16);
38 if (Diff > 32767) {
39 Diff = 32767; }
40 else if (Diff < -32768) {
41 Diff = -32768; }
42 *(pDataOut++)=(LVM_INT16)Diff;
43 if (Diff < 0) {
50 Diff=*(pDataIn++)-(RightDC>>16);
51 if (Diff > 32767)
    [all...]
LVM_Mixer_TimeConstant.c 69 LVM_INT32 Diff;
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
152 MUL32x16INTO32(Diff,Interpolate,Diff,15)
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
diff_match_patch_test.java 5 * http://code.google.com/p/google-diff-match-patch/
33 import name.fraser.neil.plaintext.diff_match_patch.Diff;
50 // DIFF TEST FUNCTIONS
126 // First check that Diff equality works.
127 assertTrue("diff_charsToLines:", new Diff(EQUAL, "a").equals(new Diff(EQUAL, "a")));
129 assertEquals("diff_charsToLines:", new Diff(EQUAL, "a"), new Diff(EQUAL, "a"));
132 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "\u0001\u0002\u0001"), new Diff(INSERT, "\u0002\u0001\u0002"))
    [all...]
diff_match_patch.java 2 * Diff Match and Patch
5 * http://code.google.com/p/google-diff-match-patch/
40 * Functions for diff, match and patch.
48 * Class containing the diff, match and patch methods.
57 * Number of seconds to map a diff before giving up (0 for infinity).
65 * The size beyond which the double-ended diff activates.
114 // DIFF FUNCTIONS
118 * The data structure representing a diff is a Linked list of Diff objects:
119 * {Diff(Operation.DELETE, "Hello"), Diff(Operation.INSERT, "Goodbye")
    [all...]
  /external/llvm/tools/llvm-diff/
DiffLog.cpp 34 Diff.push_back(DiffRecord(L, R));
38 Diff.push_back(DiffRecord(L, DiffRecord::second_type(0)));
42 Diff.push_back(DiffRecord(DiffRecord::first_type(0), R));
45 unsigned DiffLogBuilder::getNumLines() const { return Diff.size(); }
48 return (Diff[I].first ? (Diff[I].second ? DC_match : DC_left)
51 Instruction *DiffLogBuilder::getLeft(unsigned I) const { return Diff[I].first; }
52 Instruction *DiffLogBuilder::getRight(unsigned I) const { return Diff[I].second; }
DiffLog.h 56 /// A temporary-object class for building up diff messages.
59 SmallVector<DiffRecord, 20> Diff;
DifferenceEngine.cpp 178 bool Result = diff(L, R, true, true);
188 diff(Pair.first, Pair.second);
192 void diff(BasicBlock *L, BasicBlock *R) { function in class:__anon11979::FunctionDifferenceEngine
204 // If the instructions differ, start the more sophisticated diff
206 if (diff(LeftI, RightI, false, false)) {
248 bool diff(Instruction *L, Instruction *R, bool Complain, bool TryUnify) { function in class:__anon11979::FunctionDifferenceEngine
461 void diff(Function *L, Function *R) { function in class:__anon11979::FunctionDifferenceEngine
486 return !diff(L, R, false, false);
549 DiffLogBuilder Diff(Engine.getConsumer());
570 Diff.addMatch(L, R)
635 void DifferenceEngine::diff(Function *L, Function *R) { function in class:DifferenceEngine
653 void DifferenceEngine::diff(Module *L, Module *R) { function in class:DifferenceEngine
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CommandList.java 22 Dicttool.addCommand("diff", Diff.class);
Diff.java 28 public class Diff extends Dicttool.Command {
29 public static final String COMMAND = "diff";
31 public Diff() {
66 // diff a en_US with a en_GB dictionary, but someone who diffs a de dict with a
67 // pt_BR dict is almost certainly only interested in header-level diff, and the word
68 // diff would be very large, meaningless, and annoying.
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
VisualDiffUtils.java 32 * diff.text
37 * diff.text
39 public static LinkedList<diff_match_patch.Diff> splitDiffsOnNewline(
40 LinkedList<diff_match_patch.Diff> diffs) {
41 LinkedList<diff_match_patch.Diff> newDiffs = new LinkedList<diff_match_patch.Diff>();
45 for (diff_match_patch.Diff diff : diffs) {
46 parts = diff.text.split("\n", -1);
48 newDiffs.add(diff);
71 diff_match_patch.Diff diff; local
112 diff_match_patch.Diff diff; local
    [all...]
TextResult.java 200 LinkedList<diff_match_patch.Diff> diffs =
  /external/llvm/tools/bugpoint/
FindBugs.cpp 92 bool Diff = diffProgram(Program, Filename, "", false, &Error);
93 if (Error.empty() && Diff) {
104 outs() << "\n*** diff'd output matches!\n";
BugDriver.cpp 38 // program. If this filename is set, it is used as the reference diff source,
200 // Diff the output of the raw program against the reference output. If it
204 bool Diff = diffProgram(Program, "", "", false, &Error);
209 if (!Diff) {
219 outs() << "\n*** Input program does not match reference diff!\n";
Miscompilation.cpp 80 bool Diff = BD.diffProgram(BD.getProgram(), BitcodeResult, "",
84 if (Diff) {
118 Diff = BD.diffProgram(BD.getProgram(), BitcodeResult, "", false, &Error);
121 if (Diff) {
159 Diff = BD.diffProgram(BD.getProgram(), BitcodeResult, "",
163 if (Diff) {
210 /// program, checking to see if the program matches the diff. If there is
    [all...]
ExecutionDriver.cpp 77 cl::desc("Append the exit code to the output so it gets diff'd too"),
449 if (int Diff = DiffFilesWithTolerance(sys::Path(ReferenceOutputFile),
452 if (Diff == 2) {
  /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...]
  /external/llvm/lib/Support/
FileUtilities.cpp 97 // The diff failed.
142 double Diff;
144 Diff = std::abs(V1/V2 - 1.0);
146 Diff = std::abs(V2/V1 - 1.0);
148 Diff = 0; // Both zero.
149 if (Diff > RelTolerance) {
153 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
171 /// error occurs, allowing the caller to distinguish between a failed diff and
    [all...]
  /external/jdiff/src/jdiff/
MethodAPI.java 99 if (Diff.showAllChanges &&
103 if (Diff.showAllChanges &&
MergeChanges.java 95 ctorDiff.addModifiersChange(removedCtor.modifiers_.diff(addedCtor.modifiers_));
107 ctorDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedCtor.doc_, addedCtor.doc_, id, title);
155 methodDiff.addModifiersChange(removedMethod.modifiers_.diff(addedMethod.modifiers_));
167 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedMethod.doc_, addedMethod.doc_, id, title);
232 methodDiff.addModifiersChange(removedMethod.modifiers_.diff(addedMethod.modifiers_));
244 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedMethod.doc_, addedMethod.doc_, id, title);
275 if (Diff.showAllChanges &&
285 if (Diff.showAllChanges &&
315 fieldDiff.addModifiersChange(removedField.modifiers_.diff(addedField.modifiers_));
324 fieldDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedField.doc_, addedField.doc_, id, title)
    [all...]
APIComparator.java 144 Diff.closeDiffFile();
218 pkgDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, null, oldPkg.doc_, newPkg.doc_, id, title);
222 // Only add to the parent Diff object if some difference has been found
262 String inheritanceChange = ClassDiff.diff(oldClass, newClass);
283 classDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_,
288 String modifiersChange = oldClass.modifiers_.diff(newClass.modifiers_);
398 memberDiff.documentationChange_ = Diff.saveDocDiffs(
401 String modifiersChange = oldCtor.modifiers_.diff(newCtor.modifiers_);
605 if (Diff.showAllChanges &&
616 if (Diff.showAllChanges &&
    [all...]
Diff.java 12 class Diff {
48 DiffMyers diff = new DiffMyers(oldDocWords, newDocWords); local
49 DiffMyers.change script = diff.diff_2(false);
343 if (!Diff.noDocDiffs) {
344 diffFile.println(" <TD BGCOLOR=\"#EEEEFF\" CLASS=\"NavBarCell1\"> <A HREF=\"" + Diff.diffFileName + "index" + HTMLReportGenerator.reportFileExt + "\"><FONT CLASS=\"NavBarFont1\"><B>Text Changes</B></FONT></A>&nbsp;</TD>");
475 if (!Diff.noDocDiffs) {
516 String link = "<a href=\"" + Diff.diffFileName + diffOutput.pkgName_ + HTMLReportGenerator.reportFileExt + "#" + diffOutput.id_ + "\">";
586 * Emit the HTML footer and close the diff file.
    [all...]
HTMLFiles.java 147 if (!Diff.noDocDiffs) {
148 h_.writeText(" <TD BGCOLOR=\"#EEEEFF\" CLASS=\"NavBarCell1\"> <A HREF=\"" + Diff.diffFileName + "index" + h_.reportFileExt + "\"><FONT CLASS=\"NavBarFont1\"><B>Text Changes</B></FONT></A>&nbsp;</TD>");
328 h_.writeText("div.and-diff-id {border: 1px solid #eee;position:relative;float:right;clear:both;padding:0px;}");
Options.java 310 Diff.noDocDiffs = false;
318 Diff.showAllChanges = true;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
for_each_selectors.h 181 template<typename It, typename Diff>
189 Diff
195 template<typename It, typename Diff>
203 Diff

Completed in 299 milliseconds

1 2