/third_party/gn/src/gn/ |
H A D | c_include_iterator.cc | 155 if (offset_ == file_.size()) in GetNextLine() 158 size_t begin = offset_; in GetNextLine() 159 while (offset_ < file_.size() && file_[offset_] != '\n') in GetNextLine() 160 offset_++; in GetNextLine() 163 *line = file_.substr(begin, offset_ - begin); in GetNextLine() 167 if (offset_ < file_.size()) in GetNextLine() 168 offset_++; in GetNextLine()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/ |
H A D | header.cc | 26 offset_(0), in Header() 36 offset_(0), in Header() 46 offset_(offset), in Header() 58 return lhs->offset_ > rhs->offset_; in operator ()()
|
H A D | header.h | 43 int32_t offset() const { return offset_; } in offset() 76 const int32_t offset_; member in sfntly::Header
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-arguments.h | 36 void Reset() { offset_ = 0; } in Reset() 40 Address address = reinterpret_cast<Address>(buffer_ + offset_); in Push() 41 offset_ += sizeof(val); in Push() 47 Address address = reinterpret_cast<Address>(buffer_ + offset_); in Pop() 48 offset_ += sizeof(T); in Pop() 70 size_t offset_ = 0; member in v8::internal::wasm::CWasmArgumentsPacker
|
H A D | wasm-result.h | 35 : offset_(offset), message_(std::move(message)) { in WasmError() 41 WasmError(uint32_t offset, const char* format, ...) : offset_(offset) { in WasmError() 53 uint32_t offset() const { return offset_; } in offset() 61 uint32_t offset_ = 0; member in v8::internal::wasm::WasmError
|
H A D | wasm-module.h | 45 : offset_(offset), length_(length) { in WireBytesRef() 46 DCHECK_IMPLIES(offset_ == 0, length_ == 0); in WireBytesRef() 47 DCHECK_LE(offset_, offset_ + length_); // no uint32_t overflow. in WireBytesRef() 50 uint32_t offset() const { return offset_; } in offset() 52 uint32_t end_offset() const { return offset_ + length_; } in end_offset() 54 bool is_set() const { return offset_ != 0; } in is_set() 57 uint32_t offset_; member in v8::internal::wasm::WireBytesRef
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-label.h | 23 BytecodeLoopHeader() : offset_(kInvalidOffset) {} in BytecodeLoopHeader() 26 DCHECK_NE(offset_, kInvalidOffset); in offset() 27 return offset_; in offset() 35 DCHECK_EQ(offset_, kInvalidOffset); in bind_to() 36 offset_ = offset; in bind_to() 40 size_t offset_; member in v8::internal::interpreter::final
|
/third_party/node/deps/v8/src/debug/wasm/gdb-server/ |
H A D | gdb-remote-util.h | 51 : module_id_(module_id), offset_(offset) {} in wasm_addr_t() 53 : module_id_(address >> 32), offset_(address & 0xffffffff) {} in wasm_addr_t() 56 inline uint32_t Offset() const { return offset_; } in Offset() 59 return static_cast<uint64_t>(module_id_) << 32 | offset_; in operator uint64_t() 64 uint32_t offset_; member in v8::internal::wasm::gdb_server::wasm_addr_t
|
/third_party/node/deps/v8/src/compiler/backend/x64/ |
H A D | unwinding-info-writer-x64.cc | 24 initial_state->offset_ != eh_frame_writer_.base_offset()) { in BeginInstructionBlock() 27 initial_state->offset_); in BeginInstructionBlock() 31 } else if (initial_state->offset_ != eh_frame_writer_.base_offset()) { in BeginInstructionBlock() 33 eh_frame_writer_.SetBaseAddressOffset(initial_state->offset_); in BeginInstructionBlock() 51 DCHECK_EQ(existing_state->offset_, eh_frame_writer_.base_offset()); in EndInstructionBlock()
|
H A D | unwinding-info-writer-x64.h | 61 : register_(reg), offset_(offset), tracking_fp_(tracking_fp) {} in BlockInitialState() 64 int offset_; member in v8::internal::compiler::UnwindingInfoWriter::BlockInitialState
|
/third_party/protobuf/src/google/protobuf/io/ |
H A D | printer.cc | 52 offset_(0), in Printer() 63 offset_(0), in Printer() 166 std::make_pair(offset_ - iter->second.size(), offset_))); in Print() 253 offset_ += buffer_size_; in CopyToBuffer() 267 offset_ += size; in CopyToBuffer() 337 annotations->push_back({{offset_, 0}, args[idx]}); in WriteVariable() 345 a.first.second = offset_; in WriteVariable()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | frame.h | 202 inline bool from_stack_pointer() { return (offset_ & 1) == kFromSp; } in from_stack_pointer() 203 inline bool from_frame_pointer() { return (offset_ & 1) == kFromFp; } in from_frame_pointer() 204 inline int offset() { return offset_ & ~1; } in offset() 217 explicit FrameOffset(int offset) : offset_(offset) {} in FrameOffset() 219 int offset_; // Encodes SP or FP in the low order bit. member in v8::internal::compiler::FrameOffset
|
H A D | store-store-elimination.cc | 52 StoreOffset offset_; member 56 return (id_ == other.id_) && (offset_ == other.offset_); in operator ==() 60 return (id_ < other.id_) || (id_ == other.id_ && offset_ < other.offset_); in operator <() 65 return base::hash_combine(p.id_, p.offset_); in hash_value() 554 if (obs.offset_ == offset) SetErase(new_set, obs); in RemoveSameOffset()
|
/third_party/vixl/src/aarch32/ |
H A D | operands-aarch32.h | 623 // "sign_of(constructor's offset parameter) and the value of offset_ is 627 // sign_ is "constructor's sign parameter" and the value of offset_ is 630 // The value of offset_ reflects the effective offset. For an offset_ of 0, 632 // the sign of offset_. 639 offset_(0), in MemOperand() 656 offset_(offset), in MemOperand() 666 offset_(sign.IsPlus() ? offset : -offset), in MemOperand() 683 offset_(0), in MemOperand() 697 offset_( in MemOperand() 865 int32_t offset_; global() member in vixl::aarch32::MemOperand [all...] |
/third_party/vixl/src/aarch64/ |
H A D | operands-aarch64.h | 415 int64_t GetOffset() const { return offset_; } in GetOffset() 457 ((offset_ == 0) || !regoffset_.IsValid()); in IsValid() 462 (offset_ == other.offset_) && (addrmode_ == other.addrmode_) && in Equals() 470 int64_t offset_; member in vixl::aarch64::MemOperand 489 offset_(RawbitsToInt64(offset)), in SVEMemOperand() 508 offset_(RawbitsToInt64(offset)), in SVEMemOperand() 520 offset_(0), in SVEMemOperand() 535 offset_(0), in SVEMemOperand() 551 offset_( in SVEMemOperand() 712 int64_t offset_; global() member in vixl::aarch64::SVEMemOperand [all...] |
H A D | operands-aarch64.cc | 229 offset_(0), in MemOperand() 239 offset_(offset), in MemOperand() 254 offset_(0), in MemOperand() 274 offset_(0), in MemOperand() 295 offset_ = offset.GetImmediate(); in MemOperand() 304 offset_ = 0; in MemOperand() 318 offset_ = 0; in MemOperand() 368 offset_ += offset; in AddOffset() 388 if ((offset_ != 0) && (!regoffset_.IsNone())) return false; in IsValid()
|
/third_party/node/deps/v8/src/heap/cppgc/ |
H A D | object-start-bitmap.h | 90 const Address offset_; member in cppgc::internal::ObjectStartBitmap 107 ObjectStartBitmap::ObjectStartBitmap(Address offset) : offset_(offset) { in ObjectStartBitmap() 116 DCHECK_LE(offset_, address_maybe_pointing_to_the_middle_of_object); in FindHeader() 118 address_maybe_pointing_to_the_middle_of_object - offset_; in FindHeader() 132 return reinterpret_cast<HeapObjectHeader*>(object_offset + offset_); in FindHeader() 181 const size_t object_offset = header_address - offset_; in ObjectStartIndexAndBit() 200 offset_ + (kAllocationGranularity * object_start_number); in Iterate()
|
/third_party/node/deps/v8/src/codegen/ |
H A D | assembler.h | 126 DCHECK_GE(offset_, 0); in offset() 127 return offset_; in offset() 130 DCHECK_LT(offset_, 0); in set_offset() 131 offset_ = offset; in set_offset() 132 DCHECK_GE(offset_, 0); in set_offset() 143 int offset_; member in v8::internal::HeapObjectRequest
|
/third_party/node/deps/v8/src/objects/ |
H A D | swiss-hash-table-helpers.h | 84 offset_ = hash & mask_; in ProbeSequence() 86 uint32_t offset() const { return offset_; } in offset() 87 uint32_t offset(int i) const { return (offset_ + i) & mask_; } in offset() 91 offset_ += index_; in next() 92 offset_ &= mask_; in next() 101 // The index/offset into the control table, meaning that {ctrl[offset_]} is 104 uint32_t offset_; member in v8::internal::swiss_table::ProbeSequence
|
/third_party/skia/third_party/externals/libwebp/src/demux/ |
H A D | demux.c | 39 size_t offset_; member 199 frame->img_components_[0].offset_ = start_offset; in SetFrameInfo() 241 frame->img_components_[1].offset_ = chunk_start_offset; in StoreFrame() 367 chunk->data_.offset_ = start_offset; in StoreChunk() 422 frame->img_components_[1].offset_ = 0; in ParseSingleImage() 629 if (alpha->size_ > 0 && alpha->offset_ > image->offset_) { in IsValidExtendedFormat() 640 alpha->offset_ > image->offset_) { in IsValidExtendedFormat() 819 size_t start_offset = image->offset_; in GetFramePayload() [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/ |
H A D | index_sub_table_format4.h | 30 int32_t offset() const { return offset_; } in offset() 37 int32_t offset_; member in sfntly::IndexSubTableFormat4::CodeOffsetPair 45 void set_offset(int32_t v) { offset_ = v; } in set_offset()
|
/third_party/vixl/examples/aarch32/ |
H A D | disasm-a32.cc | 52 int32_t offset_; member in Symbol 64 offset_(offset), in Symbol() 70 offset_(ref.offset_), in Symbol() 76 Elf32_Addr GetMemoryAddress() const { return (addr_ & ~1) + offset_; } in GetMemoryAddress()
|
/third_party/node/deps/v8/src/heap/ |
H A D | object-start-bitmap.h | 85 size_t offset_; member in v8::internal::ObjectStartBitmap 90 ObjectStartBitmap::ObjectStartBitmap(size_t offset) : offset_(offset) { in ObjectStartBitmap() 147 Address ObjectStartBitmap::offset() const { return offset_; } in offset()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-cff-interp-common.hh | 321 byte_str_ref_t (const byte_str_t &str_, unsigned int offset_ = 0) in byte_str_ref_t() 322 : str (str_), offset (offset_), error (false) {} in byte_str_ref_t() 324 void reset (const byte_str_t &str_, unsigned int offset_ = 0) in reset() 327 offset = offset_; in reset() 343 byte_str_t sub_str (unsigned int offset_, unsigned int len_) const in sub_str() 344 { return str.sub_str (offset_, len_); } in sub_str()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | IndexRangeCache.cpp | 89 size_t offset_, in IndexRangeKey() 92 : type(type_), offset(offset_), count(count_), primitiveRestartEnabled(primitiveRestartEnabled_) in IndexRangeKey() 88 IndexRangeKey(DrawElementsType type_, size_t offset_, size_t count_, bool primitiveRestartEnabled_) IndexRangeKey() argument
|