/external/chromium_org/v8/src/ |
platform-freebsd.cc | 222 Address aligned_base = RoundUp(base, alignment); local 223 ASSERT_LE(base, aligned_base); 226 if (aligned_base != base) { 227 size_t prefix_size = static_cast<size_t>(aligned_base - base); 237 OS::Free(aligned_base + aligned_size, suffix_size); 243 address_ = static_cast<void*>(aligned_base);
|
platform-macos.cc | 224 Address aligned_base = RoundUp(base, alignment); local 225 ASSERT_LE(base, aligned_base); 228 if (aligned_base != base) { 229 size_t prefix_size = static_cast<size_t>(aligned_base - base); 239 OS::Free(aligned_base + aligned_size, suffix_size); 245 address_ = static_cast<void*>(aligned_base);
|
platform-openbsd.cc | 254 Address aligned_base = RoundUp(base, alignment); local 255 ASSERT_LE(base, aligned_base); 258 if (aligned_base != base) { 259 size_t prefix_size = static_cast<size_t>(aligned_base - base); 269 OS::Free(aligned_base + aligned_size, suffix_size); 275 address_ = static_cast<void*>(aligned_base);
|
platform-solaris.cc | 234 Address aligned_base = RoundUp(base, alignment); local 235 ASSERT_LE(base, aligned_base); 238 if (aligned_base != base) { 239 size_t prefix_size = static_cast<size_t>(aligned_base - base); 249 OS::Free(aligned_base + aligned_size, suffix_size); 255 address_ = static_cast<void*>(aligned_base);
|
platform-linux.cc | 328 Address aligned_base = RoundUp(base, alignment); local 329 ASSERT_LE(base, aligned_base); 332 if (aligned_base != base) { 333 size_t prefix_size = static_cast<size_t>(aligned_base - base); 343 OS::Free(aligned_base + aligned_size, suffix_size); 349 address_ = static_cast<void*>(aligned_base);
|
spaces.cc | 151 Address aligned_base = local 154 size_t size = code_range_->size() - (aligned_base - base); 155 allocation_list_.Add(FreeBlock(aligned_base, size)); [all...] |
/external/v8/src/ |
platform-freebsd.cc | 366 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);
|
platform-macos.cc | 375 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);
|
platform-openbsd.cc | 413 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);
|
platform-solaris.cc | 356 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);
|
platform-linux.cc | 619 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); [all...] |
spaces.cc | 150 Address aligned_base = local 153 size_t size = code_range_->size() - (aligned_base - base); 154 allocation_list_.Add(FreeBlock(aligned_base, size)); [all...] |