Home | History | Annotate | Download | only in src

Lines Matching full:delta

1273   size_t delta = new_capacity - capacity_;
1274 ASSERT(IsAligned(delta, OS::AllocateAlignment()));
1275 if (!MemoryAllocator::CommitBlock(high(), delta, executable())) {
1286 size_t delta = capacity_ - new_capacity;
1287 ASSERT(IsAligned(delta, OS::AllocateAlignment()));
1288 if (!MemoryAllocator::UncommitBlock(high() - delta, delta)) {
2011 static void EnterComment(const char* comment, int delta) {
2013 if (delta <= 0) return;
2028 cs->size += delta;
2080 int delta = 0;
2084 delta += static_cast<int>(it.rinfo()->pc() - prev_pc);
2093 delta += static_cast<int>(code->relocation_start() - prev_pc);
2094 EnterComment("NoComment", delta);