HomeSort by relevance Sort by last modified time
    Searched defs:Site (Results 1 - 10 of 10) sorted by null

  /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 31 * allocation site.
33 public class Site implements Diffable<Site> {
34 // The site that this site was directly called from.
35 // mParent is null for the root site.
36 private Site mParent;
43 // A unique id to identify this site with. The id is chosen based on a
44 // depth first traversal of the complete site tree, which gives it the
49 // * A binary search can be used to find a site by id from the root site i
    [all...]
  /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...]
  /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/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.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-7.0/llvm/lib/CodeGen/AsmPrinter/
EHStreamer.cpp 60 /// pad site.
65 // The action table follows the call-site table in the LSDA. The individual
148 // Record the first action of the landing pad site.
152 // Information used when creating the call-site table. The action record
153 // field of the call site record is the offset of the first associated
217 /// Compute the call-site table. The entry for an invoke has a try-range
269 // create a call-site entry with no landing pad for the region between the
272 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 };
273 CallSites.push_back(Site);
285 CallSiteEntry Site =
    [all...]
CodeViewDebug.cpp 203 InlineSite *Site = &SiteInsertion.first->second;
211 Site->SiteFuncId = NextFuncId++;
213 Site->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()),
215 Site->Inlinee = Inlinee;
219 return *Site;
382 InlineSite &Site = getInlineSite(InlinedAt, Inlinee);
383 Site.InlinedLocals.emplace_back(Var);
431 // of the inline call site.
438 InlineSite &Site =
441 addLocIfNotPresent(Site.ChildSites, Loc)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 451 for (const auto &Site : InlineeLines.Sites) {
452 Result->addInlineSite(TypeIndex(Site.Inlinee), Site.FileName,
453 Site.SourceLineNum);
457 for (auto EF : Site.ExtraFiles) {
627 InlineeSite Site;
631 Site.FileName = *ExpF;
632 Site.Inlinee = IL.Header->Inlinee.getIndex();
633 Site.SourceLineNum = IL.Header->SourceLineNum;
639 Site.ExtraFiles.push_back(*ExpF2)
    [all...]

Completed in 739 milliseconds