Searched refs:aligned_start (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/base/files/
H A Dmemory_mapped_file_posix.cc38 // outer region [|aligned_start|, |aligned_start| + |size|] which contains
40 int64 aligned_start = 0; local
44 &aligned_start,
49 if (aligned_start < 0 || aligned_size < 0 ||
50 aligned_start > std::numeric_limits<off_t>::max() ||
58 map_start = static_cast<off_t>(aligned_start);
H A Dmemory_mapped_file_win.cc50 // We map here the outer region [|aligned_start|, |aligned_start+size|]
52 int64 aligned_start = 0; local
55 region.offset, region.size, &aligned_start, &ignored, &data_offset);
59 if (aligned_start < 0 || size < 0 ||
64 map_start.QuadPart = aligned_start;
H A Dmemory_mapped_file.cc78 int64* aligned_start,
85 *aligned_start = start & ~mask;
76 CalculateVMAlignedBoundaries(int64 start, int64 size, int64* aligned_start, int64* aligned_size, int32* offset) argument
H A Dmemory_mapped_file.h77 // - |aligned_start| is page aligned and <= |start|.
79 // - |offset| is the displacement of |start| w.r.t |aligned_start|.
82 int64* aligned_start,
/external/valgrind/main/helgrind/
H A Dlibhb_core.c5653 Addr aligned_start = cacheline_ROUNDUP(a); local
5655 UWord before_len = aligned_start - before_start;
5656 UWord aligned_len = after_start - aligned_start;
5658 tl_assert(before_start <= aligned_start);
5659 tl_assert(aligned_start <= after_start);
5662 tl_assert(get_cacheline_offset(aligned_start) == 0);
5665 tl_assert(a == aligned_start);
5682 if (aligned_start >= after_start)
5684 tl_assert(get_cacheline_offset(aligned_start) == 0);
5685 tag = aligned_start
[all...]
/external/lldb/source/Target/
H A DProcess.cpp2413 size_t aligned_start = total_bytes_read - total_bytes_read % type_width;
2414 for (size_t i = aligned_start; i + type_width <= total_bytes_read + bytes_read; i += type_width)

Completed in 341 milliseconds