Lines Matching defs:offset
65 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) {}
88 Slot<T> SlotAt(uintptr_t offset) {
89 Ensure(offset + sizeof(T));
90 return Slot<T>(this, offset);
162 Address AddressAt(uintptr_t offset) {
163 DCHECK(offset < capacity_ && offset + sizeof(T) <= capacity_);
164 return reinterpret_cast<Address>(&buffer_[offset]);
168 T* RawSlotAt(uintptr_t offset) {
169 DCHECK(offset < capacity_ && offset + sizeof(T) <= capacity_);
170 return reinterpret_cast<T*>(&buffer_[offset]);
190 header->offset = static_cast<uint32_t>(start);
213 uint32_t offset;
246 header->offset = 0;
273 uintptr_t offset;
319 header->offset = start;
333 header->offset = 0;
376 uintptr_t addr, uintptr_t offset, uintptr_t size,
380 offset_(offset),
388 header->offset = offset_;
411 uintptr_t offset = size_;
413 return offset;
428 header->offset = offset_;
823 header->offset = w->position();
829 header->size = w->position() - header->offset;
1054 DW_OP_fbreg = 0x91 // 1 param: SLEB128 offset
1064 w->Write<uint32_t>(0); // Abbreviation table offset.
1649 // offset from the previous rule (from -8) to 0.
2082 line_info->SetPosition(static_cast<intptr_t>(event->line_info.offset),