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

1 2

  /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,
204 // Diff the output of the raw program against the reference output. If it
208 bool Diff = diffProgram(Program, "", "", false, &Error);
213 if (!Diff) {
223 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) {
160 Diff = BD.diffProgram(BD.getProgram(), BitcodeResult, "",
164 if (Diff) {
211 /// 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/extensions/common/permissions/
settings_override_permission.cc 82 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/llvm/lib/Support/
FileUtilities.cpp 96 // The diff failed.
141 double Diff;
143 Diff = std::abs(V1/V2 - 1.0);
145 Diff = std::abs(V2/V1 - 1.0);
147 Diff = 0; // Both zero.
148 if (Diff > RelTolerance) {
152 << "abs. diff = " << std::abs(V1-V2) << " rel.diff = " << Diff << '\n'
170 /// error occurs, allowing the caller to distinguish between a failed diff and
    [all...]
  /external/chromium_org/chrome/common/extensions/api/bluetooth/
bluetooth_manifest_permission.cc 169 ManifestPermission* BluetoothManifestPermission::Diff(
  /external/chromium_org/extensions/common/api/sockets/
sockets_manifest_permission.cc 232 ManifestPermission* SocketsManifestPermission::Diff(
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
HeapSnapshotCommon.js 190 WebInspector.HeapSnapshotCommon.Diff = function()
  /external/chromium_org/tools/telemetry/telemetry/core/
bitmap.py 282 def Diff(self, other):
290 diff = [[0 for x in xrange(out_width * 3)] for x in xrange(out_height)]
306 diff[y][offset] = abs(c0.r - c1.r)
307 diff[y][offset+1] = abs(c0.g - c1.g)
308 diff[y][offset+2] = abs(c0.b - c1.b)
312 diff_img = png.from_array(diff, mode='RGB')
316 diff = Bitmap.FromPng(output.getvalue())
320 return 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>&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/llvm/lib/Transforms/Scalar/
ConstantHoisting.cpp 392 APInt Diff = ConstCand->ConstInt->getValue() -
394 Constant *Offset = Diff == 0 ? nullptr : ConstantInt::get(Ty, Diff);
420 APInt Diff = CC->ConstInt->getValue() - MinValItr->ConstInt->getValue();
421 if ((Diff.getBitWidth() <= 64) &&
422 TTI->isLegalAddImmediate(Diff.getSExtValue()))
  /external/clang/lib/CodeGen/
CGStmt.cpp     [all...]
MicrosoftCXXABI.cpp 398 llvm::Constant *Diff =
401 return llvm::ConstantExpr::getTrunc(Diff, CGM.IntTy);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 619 int Diff = ShAmt-C1;
620 if (Diff < 0) {
621 Diff = -Diff;
626 TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType());
708 int Diff = ShAmt-C1;
709 if (Diff < 0) {
710 Diff = -Diff;
715 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/guava/guava/lib/
jdiff.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/
bnd-1.50.0.jar 

Completed in 551 milliseconds

1 2