Searched refs:aligned_base (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/v8/src/
H A Dplatform-freebsd.cc262 Address aligned_base = RoundUp(base, alignment); local
263 ASSERT_LE(base, aligned_base);
266 if (aligned_base != base) {
267 size_t prefix_size = static_cast<size_t>(aligned_base - base);
277 OS::Free(aligned_base + aligned_size, suffix_size);
283 address_ = static_cast<void*>(aligned_base);
H A Dplatform-macos.cc281 Address aligned_base = RoundUp(base, alignment); local
282 ASSERT_LE(base, aligned_base);
285 if (aligned_base != base) {
286 size_t prefix_size = static_cast<size_t>(aligned_base - base);
296 OS::Free(aligned_base + aligned_size, suffix_size);
302 address_ = static_cast<void*>(aligned_base);
H A Dplatform-openbsd.cc319 Address aligned_base = RoundUp(base, alignment); local
320 ASSERT_LE(base, aligned_base);
323 if (aligned_base != base) {
324 size_t prefix_size = static_cast<size_t>(aligned_base - base);
334 OS::Free(aligned_base + aligned_size, suffix_size);
340 address_ = static_cast<void*>(aligned_base);
H A Dplatform-solaris.cc283 Address aligned_base = RoundUp(base, alignment); local
284 ASSERT_LE(base, aligned_base);
287 if (aligned_base != base) {
288 size_t prefix_size = static_cast<size_t>(aligned_base - base);
298 OS::Free(aligned_base + aligned_size, suffix_size);
304 address_ = static_cast<void*>(aligned_base);
H A Dplatform-linux.cc569 Address aligned_base = RoundUp(base, alignment); local
570 ASSERT_LE(base, aligned_base);
573 if (aligned_base != base) {
574 size_t prefix_size = static_cast<size_t>(aligned_base - base);
584 OS::Free(aligned_base + aligned_size, suffix_size);
590 address_ = static_cast<void*>(aligned_base);
H A Dspaces.cc150 Address aligned_base = local
153 size_t size = code_range_->size() - (aligned_base - base);
154 allocation_list_.Add(FreeBlock(aligned_base, size));
/external/v8/src/
H A Dplatform-freebsd.cc366 Address aligned_base = RoundUp(base, alignment); local
367 ASSERT_LE(base, aligned_base);
370 if (aligned_base != base) {
371 size_t prefix_size = static_cast<size_t>(aligned_base - base);
381 OS::Free(aligned_base + aligned_size, suffix_size);
387 address_ = static_cast<void*>(aligned_base);
H A Dplatform-macos.cc375 Address aligned_base = RoundUp(base, alignment); local
376 ASSERT_LE(base, aligned_base);
379 if (aligned_base != base) {
380 size_t prefix_size = static_cast<size_t>(aligned_base - base);
390 OS::Free(aligned_base + aligned_size, suffix_size);
396 address_ = static_cast<void*>(aligned_base);
H A Dplatform-solaris.cc356 Address aligned_base = RoundUp(base, alignment); local
357 ASSERT_LE(base, aligned_base);
360 if (aligned_base != base) {
361 size_t prefix_size = static_cast<size_t>(aligned_base - base);
371 OS::Free(aligned_base + aligned_size, suffix_size);
377 address_ = static_cast<void*>(aligned_base);
H A Dplatform-linux.cc619 Address aligned_base = RoundUp(base, alignment); local
620 ASSERT_LE(base, aligned_base);
623 if (aligned_base != base) {
624 size_t prefix_size = static_cast<size_t>(aligned_base - base);
634 OS::Free(aligned_base + aligned_size, suffix_size);
640 address_ = static_cast<void*>(aligned_base);
H A Dplatform-openbsd.cc413 Address aligned_base = RoundUp(base, alignment); local
414 ASSERT_LE(base, aligned_base);
417 if (aligned_base != base) {
418 size_t prefix_size = static_cast<size_t>(aligned_base - base);
428 OS::Free(aligned_base + aligned_size, suffix_size);
434 address_ = static_cast<void*>(aligned_base);
H A Dspaces.cc150 Address aligned_base = local
153 size_t size = code_range_->size() - (aligned_base - base);
154 allocation_list_.Add(FreeBlock(aligned_base, size));

Completed in 426 milliseconds