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

1 2 3 4 5 6

  /art/tools/ahat/src/main/com/android/ahat/
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); 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 = new ArrayList<Site>(site.getChildren())
    [all...]
ObjectsHandler.java 21 import com.android.ahat.heapdump.Site;
42 Site site = mSnapshot.getSite(id); local
45 site.getObjects(heapName, className, insts);
Summarizer.java 20 import com.android.ahat.heapdump.Site;
125 * Creates a DocString summarizing the given site.
127 public static DocString summarize(Site site) {
128 DocString text = DocString.text(site.getMethodName());
129 text.append(site.getSignature());
131 text.append(site.getFilename());
132 if (site.getLineNumber() > 0) {
133 text.append(":").append(Integer.toString(site.getLineNumber()));
135 URI uri = DocString.formattedUri("site?id=%d", site.getId())
    [all...]
  /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...]
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
Site.java 29 * allocation site.
31 public class Site implements Diffable<Site> {
32 // The site that this site was directly called from.
33 // mParent is null for the root site.
34 private Site mParent;
41 // A unique id to identify this site with. The id is chosen based on a
42 // depth first traversal of the complete site tree, which gives it the
47 // * A binary search can be used to find a site by id from the root site i
    [all...]
Sort.java 157 private static class SiteByHeapSize implements Comparator<Site> {
170 public int compare(Site a, Site b) {
179 public static final Comparator<Site> SITE_BY_TOTAL_SIZE = new Comparator<Site>() {
181 public int compare(Site a, Site b) {
192 * @return the default site comparator
194 public static Comparator<Site> defaultSiteCompare(AhatSnapshot snapshot) {
195 List<Comparator<Site>> comparators = new ArrayList<Comparator<Site>>()
    [all...]
AhatSnapshot.java 28 private final Site mRootSite;
42 Site rootSite) {
136 * Returns the root allocation site for this snapshot.
138 * @return the root allocation site
140 public Site getRootSite() {
145 * Returns the site associated with the given id.
146 * Where the id of a site x is x.getId().
147 * Returns the root site if no site with the given id is found.
149 * @param id the id of the site to ge
153 Site site = mRootSite.findSite(id); local
    [all...]
Diff.java 185 * objects are also appended to the given placeholders list, so their Site
250 private static void setSitesBaseline(Site root, Site baseline) {
252 for (Site child : root.getChildren()) {
265 private static void sites(Site a, Site b) {
270 // Set the site's ObjectsInfos as baselines of each other. This implicitly
272 for (Site.ObjectsInfo ainfo : a.getObjectsInfos()) {
279 for (Site.ObjectsInfo binfo : b.getObjectsInfos()) {
289 for (Site bchild : b.getChildren())
    [all...]
  /art/tools/ahat/src/test/com/android/ahat/
SiteTest.java 21 import com.android.ahat.heapdump.Site;
36 Site sKnownSite = oKnownSite.getSite();
43 Site sKnownSubSite = oKnownSubSite.getSite();
49 Site sKnownSubSiteParent = sKnownSubSite.getParent();
58 Site sKnownSiteParent = sKnownSite.getParent();
65 Site sObfSuperSite = oObfSuperSite.getSite();
72 Site sUnObfSuperSite = oUnObfSuperSite.getSite();
79 Site sOverriddenSite = oOverriddenSite.getSite();
  /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 78 .byte 3 @ Call site Encoding = udata4
79 .byte 39 @ Call site table length
80 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
84 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
88 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
ttype-encoding-90.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 <<
  /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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++abi/test/native/arm-linux-eabi/
ttype-encoding-00.pass.sh.s 78 .byte 3 @ Call site Encoding = udata4
79 .byte 39 @ Call site table length
80 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
84 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
88 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
ttype-encoding-90.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 <<
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
MachineModuleInfo.h 108 /// The current call site index being processed, if any. 0 if none.
230 /// Set the call site currently being processed.
231 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; }
233 /// Get the call site currently being processed, if any. return zero if
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/CodeGen/
MachineModuleInfo.h 99 /// The current call site index being processed, if any. 0 if none.
219 /// Set the call site currently being processed.
220 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; }
222 /// Get the call site currently being processed, if any. return zero if
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/CodeGen/
MachineModuleInfo.h 99 /// The current call site index being processed, if any. 0 if none.
219 /// Set the call site currently being processed.
220 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; }
222 /// Get the call site currently being processed, if any. return zero if
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/CodeGen/
MachineModuleInfo.h 99 /// The current call site index being processed, if any. 0 if none.
245 /// Set the call site currently being processed.
246 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; }
248 /// Get the call site currently being processed, if any. return zero if
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/CodeGen/
MachineModuleInfo.h 99 /// The current call site index being processed, if any. 0 if none.
245 /// Set the call site currently being processed.
246 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; }
248 /// Get the call site currently being processed, if any. return zero if
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/CodeGen/
MachineModuleInfo.h 99 /// The current call site index being processed, if any. 0 if none.
245 /// Set the call site currently being processed.
246 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; }
248 /// Get the call site currently being processed, if any. return zero if

Completed in 816 milliseconds

1 2 3 4 5 6