/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 | 93 bool Diff = diffProgram(Program, Filename, "", false, &Error); 94 if (Error.empty() && Diff) { 105 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/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/llvm/tools/llvm-diff/ |
DiffLog.h | 56 /// A temporary-object class for building up diff messages. 59 SmallVector<DiffRecord, 20> Diff;
|
/external/chromium_org/chrome/common/extensions/permissions/ |
settings_override_permission.cc | 84 APIPermission* SettingsOverrideAPIPermission::Diff(
|
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/ |
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.
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
bitmap.py | 131 def Diff(self, other): 139 diff = [[0 for x in xrange(out_width * 3)] for x in xrange(out_height)] 155 diff[y][offset] = abs(c0.r - c1.r) 156 diff[y][offset+1] = abs(c0.g - c1.g) 157 diff[y][offset+2] = abs(c0.b - c1.b) 161 diff_img = png.from_array(diff, mode='RGB') 165 diff = Bitmap.FromPng(output.getvalue()) 169 return 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/chromium_org/chrome/common/extensions/api/sockets/ |
sockets_manifest_permission.cc | 229 ManifestPermission* SocketsManifestPermission::Diff(
|
/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> </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 | [all...] |
/external/llvm/lib/CodeGen/AsmPrinter/ |
AsmPrinter.cpp | [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
TargetLowering.cpp | 598 int Diff = ShAmt-C1; 599 if (Diff < 0) { 600 Diff = -Diff; 605 TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType()); 662 int Diff = ShAmt-C1; 663 if (Diff < 0) { 664 Diff = -Diff; 669 TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType()) [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 | 298 int64_t Diff(Time* other); 435 int64_t Time::Diff(Time* other) { 525 return localtime.Diff(&rounded_to_second); [all...] |
/external/guava/guava/lib/ |
jdiff.jar | |
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar | |