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

  /external/llvm/lib/CodeGen/
LocalStackSlotAllocation.cpp 52 int64_t LocalOffset; // Local offset of the frame idx referenced
56 MI(I), LocalOffset(Offset), FrameIdx(Idx) {}
58 return LocalOffset < RHS.LocalOffset;
61 int64_t getLocalOffset() const { return LocalOffset; }
151 int64_t LocalOffset = StackGrowsDown ? -Offset : Offset;
153 << LocalOffset << "\n");
155 LocalOffsets[FrameIdx] = LocalOffset;
157 MFI->mapLocalFrameObject(FrameIdx, LocalOffset);
314 int64_t LocalOffset = LocalOffsets[Idx]
    [all...]
  /external/llvm/tools/llvm-dwp/
llvm-dwp.cpp 60 uint32_t LocalOffset = 0;
62 while (const char *s = Data.getCStr(&LocalOffset)) {
63 StringRef Str(s, LocalOffset - PrevOffset - 1);
72 PrevOffset = LocalOffset;
  /external/llvm/include/llvm/CodeGen/
MIRYamlMapping.h 198 Optional<int64_t> LocalOffset;
226 YamlIO.mapOptional("local-offset", Object.LocalOffset);
  /external/v8/src/base/platform/
platform-win32.cc 217 // LocalOffset(CET) = 3600000 and LocalOffset(PST) = -28800000. This
220 int64_t LocalOffset(TimezoneCache* cache);
354 int64_t Win32Time::LocalOffset(TimezoneCache* cache) {
396 int64_t offset = LocalOffset(cache);
480 // Time::LocalOffset inlcudes any daylight savings offset, so subtract it.
481 return static_cast<double>(t.LocalOffset(cache) -
    [all...]

Completed in 3551 milliseconds