HomeSort by relevance Sort by last modified time
    Searched defs:Diff (Results 1 - 17 of 17) sorted by null

  /external/clang/test/CodeGen/
2005-01-02-PointerDifference.c 4 int Diff(int *P, int *Q) { return P-Q; }
  /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...]
  /frameworks/base/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/llvm/tools/llvm-diff/
DiffLog.h 56 /// A temporary-object class for building up diff messages.
59 SmallVector<DiffRecord, 20> Diff;
  /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/
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...]
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...]
  /external/clang/lib/CodeGen/
CGStmt.cpp 865 llvm::Value *Diff =
868 Builder.CreateICmpULE(Diff, Builder.getInt(Range), "inbounds");
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /external/google-diff-match-patch/name/fraser/neil/plaintext/
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/v8/src/
platform-win32.cc 301 int64_t Diff(Time* other);
440 int64_t Time::Diff(Time* other) {
530 return localtime.Diff(&rounded_to_second);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 3430 milliseconds