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

  /external/compiler-rt/lib/esan/
esan.cpp 108 uptr ShadowStart, ShadowEnd;
109 for (int i = 0; getShadowRegion(i, &ShadowStart, &ShadowEnd); ++i) {
110 VPrintf(3, "Shadow #%d: [%zx-%zx) (%zuGB)\n", i, ShadowStart,
111 ShadowEnd, (ShadowEnd - ShadowStart) >> 30);
113 for (int i = 0; getShadowRegion(i, &ShadowStart, &ShadowEnd); ++i) {
115 appToShadow(ShadowStart), appToShadow(ShadowEnd - 1)+1);
153 uptr ShadowStart, ShadowEnd;
154 for (int i = 0; getShadowRegion(i, &ShadowStart, &ShadowEnd); ++i) {
155 VPrintf(1, "Shadow #%d: [%zx-%zx) (%zuGB)\n", i, ShadowStart, ShadowEnd,
156 (ShadowEnd - ShadowStart) >> 30)
    [all...]
working_set.cpp 120 // This routine will word-align ShadowStart and ShadowEnd prior to scanning.
123 static u32 countAndClearShadowValues(u32 BitIdx, uptr ShadowStart,
130 ShadowStart = RoundDownTo(ShadowStart, sizeof(u32));
134 for (u32 *Ptr = (u32 *)ShadowStart; Ptr < (u32 *)ShadowEnd; ++Ptr) {

Completed in 91 milliseconds