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

1 2 3 4 5

  /art/tools/ahat/src/
SitePrinter.java 21 import com.android.ahat.heapdump.Site;
27 public static void printSite(AhatSnapshot snapshot, Doc doc, Query query, String id, Site site) {
28 List<Site> path = new ArrayList<Site>();
29 for (Site parent = site; parent != null; parent = parent.getParent()) {
35 HeapTable.TableConfig<Site> table = new HeapTable.TableConfig<Site>() {
40 public long getSize(Site element, AhatHeap heap)
    [all...]
SiteHandler.java 21 import com.android.ahat.heapdump.Site;
43 Site site = mSnapshot.getSite(id, depth); local
45 doc.title("Site");
46 doc.big(Summarizer.summarize(site));
48 doc.section("Allocation Site");
49 SitePrinter.printSite(mSnapshot, doc, query, ALLOCATION_SITE_ID, site);
52 List<Site> children = site.getChildren();
57 HeapTable.TableConfig<Site> table = new HeapTable.TableConfig<Site>()
    [all...]
ObjectsHandler.java 21 import com.android.ahat.heapdump.Site;
43 Site site = mSnapshot.getSite(id, depth); local
46 for (AhatInstance inst : site.getObjects()) {
Summarizer.java 20 import com.android.ahat.heapdump.Site;
130 * Creates a DocString summarizing the given site.
132 public static DocString summarize(Site site) {
133 DocString text = DocString.text(site.getMethodName());
134 text.append(site.getSignature());
136 text.append(site.getFilename());
137 if (site.getLineNumber() > 0) {
138 text.append(":").append(Integer.toString(site.getLineNumber()));
140 URI uri = DocString.formattedUri("site?id=%d&depth=%d", site.getId(), site.getDepth())
    [all...]
  /art/tools/ahat/src/heapdump/
Sort.java 113 public static class SiteByHeapSize implements Comparator<Site> {
121 public int compare(Site a, Site b) {
130 public static final Comparator<Site> SITE_BY_TOTAL_SIZE = new Comparator<Site>() {
132 public int compare(Site a, Site b) {
137 public static Comparator<Site> defaultSiteCompare(AhatSnapshot snapshot) {
138 List<Comparator<Site>> comparators = new ArrayList<Comparator<Site>>();
    [all...]
Site.java 26 public class Site implements Diffable<Site> {
27 // The site that this site was directly called from.
28 // mParent is null for the root site.
29 private Site mParent;
36 // To identify this site, we pick a stack trace that includes the site.
38 // is the number of calls between this site and the innermost site o
    [all...]
Diff.java 179 * objects are also appended to the given placeholders list, so their Site
244 private static void setSitesBaseline(Site root, Site baseline) {
246 for (Site child : root.getChildren()) {
259 private static void sites(Site a, Site b) {
264 // Set the site's ObjectsInfos as baselines of each other. This implicitly
266 for (Site.ObjectsInfo ainfo : a.getObjectsInfos()) {
273 for (Site.ObjectsInfo binfo : b.getObjectsInfos()) {
283 for (Site bchild : b.getChildren())
    [all...]
AhatSnapshot.java 42 private final Site mRootSite = new Site("ROOT");
157 Site site = mRootSite.add(frames, frames == null ? 0 : frames.length, ahat); local
158 ahat.setSite(site);
245 * Returns the root site for this snapshot.
247 public Site getRootSite() {
251 // Get the site associated with the given id and depth.
252 // Returns the root site if no such site found
259 Site site = obj.getSite(); local
    [all...]
AhatInstance.java 42 private Site mSite;
211 * Returns the site where this instance was allocated.
213 public Site getSite() {
218 * Sets the allocation site of this instance.
220 void setSite(Site site) {
221 mSite = site;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigLib/
ArmVExpressSysConfig.c 29 #define SYS_CFGCTRL_SITE(site) (((site) & 0x3) << 16)
67 IN UINT32 Site,
84 SysCfgCtrl = SYS_CFGCTRL_START | ReadWrite | SYS_CFGCTRL_FUNCTION(Function) | SYS_CFGCTRL_SITE(Site) |
110 UINT32 Site;
122 Site = ARM_VE_DAUGHTERBOARD_1_SITE;
127 Site = ARM_VE_DAUGHTERBOARD_2_SITE;
131 Site = *Value;
142 Site = ARM_VE_MOTHERBOARD_SITE;
152 return AccessSysCfgRegister (SYS_CFGCTRL_READ, Function, Site, Position, Device, Value);
    [all...]
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressSysConfigRuntimeLib/
ArmVExpressSysConfigRuntimeLib.c 32 #define SYS_CFGCTRL_SITE(site) (((site) & 0x3) << 16)
70 IN UINT32 Site,
91 SysCfgCtrl = SYS_CFGCTRL_START | ReadWrite | SYS_CFGCTRL_FUNCTION(Function) | SYS_CFGCTRL_SITE(Site) |
117 UINT32 Site;
129 Site = ARM_VE_DAUGHTERBOARD_1_SITE;
134 Site = ARM_VE_DAUGHTERBOARD_2_SITE;
138 Site = *Value;
149 Site = ARM_VE_MOTHERBOARD_SITE;
159 return AccessSysCfgRegister (SYS_CFGCTRL_READ, Function, Site, Position, Device, Value);
    [all...]
  /build/make/tools/droiddoc/templates-sac/
footer.cs 5 userfeedback.api.startFeedback({'productId':'715571','authuser':'1'});return false;}catch(e){}">Site Feedback</a>
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmPlatformSysConfigLibNull/
ArmPlatformSysConfigLibNull.c 40 IN UINT32 Site,
  /external/compiler-rt/lib/profile/
InstrProfilingValue.c 84 /* This function will never be called when value site array is allocated
117 " Consider using option -mllvm -vp-counters-per-site=<n> to "
188 * number of tracked values per value site. Alternatively, a more
190 * the runtime to track the total number of evictions per-site.
282 /* Compute value count for each site. */
284 ValueProfNode *Site =
286 while (Site) {
288 Site = Site->Next;
299 static ValueProfNode *getNextNValueData(uint32_t VK, uint32_t Site,
    [all...]
InstrProfilingInternal.h 118 /* Return the number of value data for site \p Site. */
119 uint32_t (*GetNumValueDataForSite)(uint32_t VK, uint32_t Site);
124 * Read the next \p N value data for site \p Site and store the data
130 struct ValueProfNode *(*GetValueData)(uint32_t ValueKind, uint32_t Site,
154 * tracked values per value site to be \p MaxVals.
  /external/libcxxabi/test/native/arm-linux-eabi/
ttype-encoding-00.pass.sh.s 77 .byte 3 @ Call site Encoding = udata4
78 .byte 39 @ Call site table length
79 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
83 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
87 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
ttype-encoding-90.pass.sh.s 76 .byte 3 @ Call site Encoding = udata4
77 .byte 39 @ Call site table length
78 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
82 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
86 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/JIT/
JITDwarfEmitter.cpp 187 /// CallSiteEntry - Structure describing an entry in the call-site table.
238 // landing pad site.
285 // Record the first action of the landing pad site.
295 // Compute the call-site table. Entries must be ordered by address.
338 // throw, create a call-site entry with no landing pad for the region
341 CallSiteEntry Site = {LastLabel, BeginLabel, 0, 0};
342 CallSites.push_back(Site);
346 CallSiteEntry Site = {BeginLabel, LastLabel,
349 assert(Site.BeginLabel && Site.EndLabel && Site.PadLabel &
    [all...]
  /external/llvm/include/llvm/ProfileData/
InstrProf.h 76 /// for a given site.
245 /// Get the value profile data for value site \p SiteIdx from \p InstrProfR
247 /// Annotate up to \p MaxMDCount (default 3) number of records per value site.
352 /// The number of value site count mismatches.
378 /// Get the number of value site count mismatches.
545 /// Value profiling data pairs at a given value site.
591 /// site: Site.
593 uint32_t Site) const;
594 /// Return the array of profiled values at \p Site. If \p Total
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 131 /// LPadToCallSiteMap - Map a landing pad's EH symbol to the call site
135 /// CallSiteMap - Map of invoke call site index values to associated begin
139 /// CurCallSite - The current call site index being processed, if any. 0 if
366 /// site indexes.
369 /// getCallSiteLandingPad - Get the call site indexes for a landing pad EH
373 "missing call site number for landing pad!");
378 /// associated call site.
383 /// setCallSiteBeginLabel - Map the begin label for a call site.
384 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) {
385 CallSiteMap[BeginLabel] = Site;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachineModuleInfo.h 122 /// LPadToCallSiteMap - Map a landing pad's EH symbol to the call site
126 /// CallSiteMap - Map of invoke call site index values to associated begin
130 /// CurCallSite - The current call site index being processed, if any. 0 if
335 /// site indexes.
338 /// getCallSiteLandingPad - Get the call site indexes for a landing pad EH
342 "missing call site number for landing pad!");
347 /// associated call site.
352 /// setCallSiteBeginLabel - Map the begin label for a call site.
353 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) {
354 CallSiteMap[BeginLabel] = Site;
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 48 /// pad site.
54 // The action table follows the call-site table in the LSDA. The individual
137 // Record the first action of the landing pad site.
141 // Information used when created the call-site table. The action record
142 // field of the call site record is the offset of the first associated
208 /// Compute the call-site table. The entry for an invoke has a try-range
260 // create a call-site entry with no landing pad for the region between the
263 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 };
264 CallSites.push_back(Site);
276 CallSiteEntry Site =
    [all...]
CodeViewDebug.h 87 /// Map from inlined call site to inlined instructions and child inlined
128 const InlineSite &Site);
211 const InlineSite &Site);
220 /// particular, locals from inlined code live inside the inlining site.
CodeViewDebug.cpp 121 InlineSite *Site = &SiteInsertion.first->second;
123 Site->SiteFuncId = NextFuncId++;
124 Site->Inlinee = Inlinee;
128 return *Site;
292 InlineSite &Site = getInlineSite(InlinedAt, Inlinee);
293 Site.InlinedLocals.emplace_back(Var);
341 // of the inline call site.
348 InlineSite &Site =
351 addLocIfNotPresent(Site.ChildSites, Loc);
533 const InlineSite &Site) {
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfException.cpp 74 /// index for each landing pad site.
80 // The action table follows the call-site table in the LSDA. The individual
164 // Record the first action of the landing pad site.
168 // Information used when created the call-site table. The action record
169 // field of the call site record is the offset of the first associated
218 /// ComputeCallSiteTable - Compute the call-site table. The entry for an invoke
269 // create a call-site entry with no landing pad for the region between the
272 CallSiteEntry Site = { LastLabel, BeginLabel, 0, 0 };
273 CallSites.push_back(Site);
285 CallSiteEntry Site =
    [all...]

Completed in 743 milliseconds

1 2 3 4 5