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

  /external/llvm/lib/Transforms/Scalar/
LoadCombine.cpp 35 STATISTIC(NumLoadsCombined, "Number of loads combined");
111 bool Combined = false;
120 Combined = true;
122 return Combined;
125 /// \brief Try to aggregate loads from a sorted list of loads to be combined.
133 bool Combined = false;
150 Combined = true;
165 Combined = true;
166 return Combined;
206 Twine(Loads[0].Load->getName()) + ".combined", false
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 46 import android.provider.BrowserContract.Combined;
130 bookmarkOrHistoryColumn(Combined.TITLE),
131 bookmarkOrHistoryLiteral(Combined.URL,
170 static final int COMBINED = 6000;
225 matcher.addURI(authority, "combined", COMBINED);
226 matcher.addURI(authority, "combined/#", COMBINED_ID);
330 // Combined history half
332 map.put(Combined._ID, bookmarkOrHistoryColumn(Combined._ID))
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserHistoryPage.java 42 import android.provider.BrowserContract.Combined;
89 Combined._ID, // 0
90 Combined.DATE_LAST_VISITED, // 1
91 Combined.TITLE, // 2
92 Combined.URL, // 3
93 Combined.FAVICON, // 4
94 Combined.VISITS, // 5
95 Combined.IS_BOOKMARK, // 6
115 Uri.Builder combinedBuilder = Combined.CONTENT_URI.buildUpon();
119 String sort = Combined.DATE_LAST_VISITED + " DESC"
    [all...]
Bookmarks.java 30 import android.provider.BrowserContract.Combined;
157 Combined.URL + " == ? OR " +
158 Combined.URL + " == ?";
175 final String[] projection = new String[] { Combined.URL };
176 return cr.query(Combined.CONTENT_URI, projection, QUERY_BOOKMARKS_WHERE, selArgs, null);
  /external/llvm/lib/Target/XCore/Disassembler/
XCoreDisassembler.cpp 242 unsigned Combined = fieldFromInstruction(Insn, 6, 5);
243 if (Combined < 27)
246 if (Combined == 31)
248 Combined += 5;
250 Combined -= 27;
251 unsigned Op1High = Combined % 3;
252 unsigned Op2High = Combined / 3;
261 unsigned Combined = fieldFromInstruction(Insn, 6, 5);
262 if (Combined >= 27)
265 unsigned Op1High = Combined % 3
    [all...]
  /external/skia/src/utils/
SkTFitsIn.h 104 typedef typename SkTCombineOutOfRange<OutOfRange_Low, OutOfRange_High>::type Combined;
105 return Combined::apply(s);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4dec_lib.h 292 int Combined, uint8 *pp_mod);
294 int Combined, uint8 *pp_mod);
  /frameworks/base/core/java/android/provider/
Browser.java 30 import android.provider.BrowserContract.Combined;
259 return new MatrixCursor(new String[]{Combined.URL}, 0);
BrowserContract.java 663 * A combined view of bookmarks and history. All bookmarks in all folders are included and
667 public static final class Combined implements CommonColumns, HistoryColumns, ImageColumns {
671 private Combined() {}
676 public static final Uri CONTENT_URI = Uri.withAppendedPath(AUTHORITY_URI, "combined");
  /external/llvm/lib/Analysis/
BlockFrequencyInfoImpl.cpp 157 HashTable Combined(NextPowerOf2(2 * Weights.size()));
159 combineWeight(Combined[W.TargetNode.Index], W);
162 if (Weights.size() == Combined.size())
167 Weights.reserve(Combined.size());
168 for (const auto &I : Combined)
196 // Early exit when combined into a single successor.
471 DEBUG(dbgs() << " => combined-scale = " << Loop.Scale << "\n");
  /external/llvm/tools/gold/
gold-plugin.cpp 833 std::unique_ptr<Module> Combined(new Module("ld-temp.o", Context));
834 Linker L(Combined.get());
859 GlobalValue *GV = Combined->getNamedValue(Name.first());
865 GlobalValue *GV = Combined->getNamedValue(Name.first());
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 665 /// combined with a load / store to form a post-indexed load / store.
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/clang/lib/Sema/
SemaExprMember.cpp     [all...]
  /external/blktrace/btt/doc/
btt.tex 88 a file to store the combined binary stream. (e.g.: \texttt{blkparse
163 are combined via merges into a single IO issued and completed. We
694 \item Combined data -- all read and write IOs
713 \item[c] Combined -- both read and write IOs
726 # Combined
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 45 STATISTIC(NodesCombined , "Number of dag nodes combined");
111 /// \brief Set of nodes which have been combined (at least once).
114 /// which have not yet been combined to the worklist.
134 // Skip handle nodes as they can't usefully be combined and confuse the
    [all...]
  /external/llvm/lib/AsmParser/
LLParser.cpp     [all...]

Completed in 1741 milliseconds