/third_party/node/deps/v8/src/heap/base/ |
H A D | worklist.h | 45 class Segment; 51 void Push(Segment* segment); 52 bool Pop(Segment** segment); 76 void set_top(Segment* segment) { in set_top() 81 Segment* top_ = nullptr; 86 void Worklist<EntryType, SegmentSize>::Push(Segment* segment) { in Push() 95 bool Worklist<EntryType, SegmentSize>::Pop(Segment** segment) { in Pop() 123 Segment* current = top_; in Clear() 125 Segment* tmp = current; in Clear() 136 Segment* pre in Update() 208 class Worklist<EntryType, SegmentSize>::Segment : public internal::SegmentBase { global() class in heap::base::Worklist 224 Segment() : internal::SegmentBase(kSize) {} Segment() function in heap::base::Worklist::Segment [all...] |
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | symbol.rs | 33 pub fn from_idents<'a>(it: impl Iterator<Item = &'a dyn Segment>) -> Self { in from_idents() 43 pub trait Segment { traits 47 impl Segment for str { 53 impl Segment for usize { 59 impl Segment for Ident { 65 impl Segment for Symbol { 71 impl Segment for Namespace { 79 impl Segment for Pair { 86 impl Segment for ForeignName { 94 impl<T> Segment fo impls [all...] |
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | symbol.rs | 33 pub fn from_idents<'a>(it: impl Iterator<Item = &'a dyn Segment>) -> Self { in from_idents() 43 pub trait Segment { traits 47 impl Segment for str { 53 impl Segment for usize { 59 impl Segment for Ident { 65 impl Segment for Symbol { 71 impl Segment for Namespace { 79 impl Segment for Pair { 86 impl Segment for ForeignName { 94 impl<T> Segment fo impls [all...] |
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | symbol.rs | 33 pub fn from_idents<'a>(it: impl Iterator<Item = &'a dyn Segment>) -> Self { in from_idents() 43 pub trait Segment { traits 47 impl Segment for str { 53 impl Segment for usize { 59 impl Segment for Ident { 65 impl Segment for Symbol { 71 impl Segment for Namespace { 79 impl Segment for Pair { 86 impl Segment for ForeignName { 94 impl<T> Segment fo impls [all...] |
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | symbol.rs | 33 pub fn from_idents<'a>(it: impl Iterator<Item = &'a dyn Segment>) -> Self { in from_idents() 43 pub trait Segment { traits 47 impl Segment for str { 53 impl Segment for usize { 59 impl Segment for Ident { 65 impl Segment for Symbol { 71 impl Segment for Namespace { 79 impl Segment for Pair { 86 impl Segment for ForeignName { 94 impl<T> Segment fo impls [all...] |
/third_party/rust/crates/cxx/syntax/ |
H A D | symbol.rs | 33 pub fn from_idents<'a>(it: impl Iterator<Item = &'a dyn Segment>) -> Self { in from_idents() 43 pub trait Segment { traits 47 impl Segment for str { 53 impl Segment for usize { 59 impl Segment for Ident { 65 impl Segment for Symbol { 71 impl Segment for Namespace { 79 impl Segment for Pair { 86 impl Segment for ForeignName { 94 impl<T> Segment fo impls [all...] |
/third_party/node/deps/v8/src/zone/ |
H A D | zone-segment.h | 22 class Segment { class 27 Segment* next() const { return next_; } in next() 28 void set_next(Segment* const next) { next_ = next; } in set_next() 31 // the {Segment}. 34 // {capacity} returns the number of storage bytes in this {Segment}, i.e. 36 size_t capacity() const { return size_ - sizeof(Segment); } in capacity() 38 Address start() const { return address(sizeof(Segment)); } in start() 50 explicit Segment(size_t size) : size_(size) {} in Segment() function in v8::internal::Segment 63 Segment* next_ = nullptr;
|
H A D | zone.cc | 74 Segment* keep = segment_head_; in Reset() 99 Segment* current = segment_head_; in DeleteAll() 111 Segment* next = current->next(); in DeleteAll() 124 void Zone::ReleaseSegment(Segment* segment) { in ReleaseSegment() 141 Segment* head = segment_head_; in NewExpand() 143 static const size_t kSegmentOverhead = sizeof(Segment) + kAlignmentInBytes; in NewExpand() 163 Segment* segment = in NewExpand() 207 Segment* current = zone_->segment_head_; in ~ZoneScope() 209 Segment* next = current->next(); in ~ZoneScope()
|
H A D | zone-segment.cc | 12 void Segment::ZapContents() { in ZapContents() 19 void Segment::ZapHeader() { in ZapHeader() 21 memset(this, kZapDeadByte, sizeof(Segment)); in ZapHeader() 23 MSAN_ALLOCATED_UNINITIALIZED_MEMORY(start(), sizeof(Segment)); in ZapHeader()
|
H A D | accounting-allocator.h | 23 class Segment; 35 Segment* AllocateSegment(size_t bytes, bool supports_compression); 39 void ReturnSegment(Segment* memory, bool supports_compression); 59 void TraceAllocateSegment(Segment* segment) { in TraceAllocateSegment() 67 virtual void TraceAllocateSegmentImpl(Segment* segment) {} in TraceAllocateSegmentImpl()
|
H A D | accounting-allocator.cc | 85 Segment* AccountingAllocator::AllocateSegment(size_t bytes, in AllocateSegment() 105 DCHECK_LE(sizeof(Segment), bytes); in AllocateSegment() 106 return new (memory) Segment(bytes); in AllocateSegment() 109 void AccountingAllocator::ReturnSegment(Segment* segment, in ReturnSegment()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | LiveInterval.h | 15 // individual segment is represented as an instance of LiveRange::Segment, 152 /// It manages an ordered list of Segment objects. 161 struct Segment { struct in llvm::LiveRange 167 Segment() = default; 169 Segment(SlotIndex S, SlotIndex E, VNInfo *V) in Segment() function 185 bool operator<(const Segment &Other) const { 188 bool operator==(const Segment &Other) const { 192 bool operator!=(const Segment &Other) const { 199 using Segments = SmallVector<Segment, 2>; 208 using SegmentSet = std::set<Segment>; [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/core/ |
H A D | CMapFormat4.java | 270 public static class Segment { class in CMapFormat4.Builder 271 public static List<Builder.Segment> deepCopy(List<Builder.Segment> original) { in deepCopy() 272 List<Builder.Segment> list = new ArrayList<Builder.Segment>(original.size()); in deepCopy() 273 for (Builder.Segment segment : original) { in deepCopy() 274 list.add(new Segment(segment)); in deepCopy() 284 public Segment() { in Segment() method in CMapFormat4.Builder.Segment 287 public Segment(Builder.Segment othe method in CMapFormat4.Builder.Segment 291 public Segment(int startCount, int endCount, int idDelta, int idRangeOffset) { Segment() method in CMapFormat4.Builder.Segment [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LiveInterval.cpp | 15 // individual segment is represented as an instance of LiveRange::Segment, 73 using Segment = LiveRange::Segment; 95 impl().insertAtEnd(Segment(Def, Def.getDeadSlot(), VNI)); in createDeadDef() 99 Segment *S = segmentAt(I); in createDeadDef() 116 segments().insert(I, Segment(Def, Def.getDeadSlot(), VNI)); in createDeadDef() 124 impl().findInsertPos(Segment(Use.getPrevSlot(), Use, nullptr)); in extendInBlock() 140 iterator I = impl().findInsertPos(Segment(BeforeUse, Use, nullptr)); in extendInBlock() 160 Segment *S = segmentAt(I); in extendSegmentEndTo() 188 Segment * in extendSegmentStartTo() [all...] |
/third_party/skia/include/core/ |
H A D | SkContourMeasure.h | 57 struct Segment { struct in SkContourMeasure 66 static const Segment* Next(const Segment* seg) { in Next() 76 const SkTDArray<Segment> fSegments; 82 SkContourMeasure(SkTDArray<Segment>&& segs, SkTDArray<SkPoint>&& pts, 86 const Segment* distanceToSegment(SkScalar distance, SkScalar* t) const;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCSectionMachO.cpp | 83 MCSectionMachO::MCSectionMachO(StringRef Segment, StringRef Section, in MCSectionMachO() argument 88 assert(Segment.size() <= 16 && Section.size() <= 16 && in MCSectionMachO() 89 "Segment or section string too long"); in MCSectionMachO() 91 if (i < Segment.size()) in MCSectionMachO() 92 SegmentName[i] = Segment[i]; in MCSectionMachO() 183 StringRef &Segment, // Out. in ParseSectionSpecifier() 196 Segment = GetEmptyOrTrim(0); in ParseSectionSpecifier() 203 if (Segment.empty() || Segment.size() > 16) in ParseSectionSpecifier() 182 ParseSectionSpecifier(StringRef Spec, StringRef &Segment, StringRef &Section, unsigned &TAA, bool &TAAParsed, unsigned &StubSize) ParseSectionSpecifier() argument
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/ |
H A D | class_with_inner_struct_1_0.hpp | 6 struct Segment { int begin, end; }; struct in A 17 struct Segment { int begin, end; }; struct in B 43 struct Segment { int begin, end; }; struct in C
|
H A D | class_with_inner_struct.hpp | 6 struct Segment { int begin, end; }; struct in A 17 struct Segment { int begin, end; }; struct in B 43 struct Segment { int begin, end; }; struct in C
|
/third_party/skia/src/core/ |
H A D | SkContourMeasure.cpp | 27 SkScalar SkContourMeasure::Segment::getScalarT() const { in getScalarT() 193 SkTDArray<SkContourMeasure::Segment> fSegments; 223 SkContourMeasure::Segment* seg = fSegments.append(); in compute_quad_segs() 251 SkContourMeasure::Segment* seg = fSegments.append(); 276 SkContourMeasure::Segment* seg = fSegments.append(); 294 SkContourMeasure::Segment* seg = fSegments.append(); 305 const SkContourMeasure::Segment* seg = fSegments.begin(); 306 const SkContourMeasure::Segment* stop = fSegments.end(); 316 const SkContourMeasure::Segment* s = seg; 509 SkContourMeasure::SkContourMeasure(SkTDArray<Segment> [all...] |
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | format.h | 44 class Segment { class in amber::Format 46 explicit Segment(uint32_t num_bytes) in Segment() function in amber::Format::Segment 48 Segment(FormatComponentType name, FormatMode mode, uint32_t num_bits) in Segment() function in amber::Format::Segment 111 const std::vector<Segment>& GetSegments() const { return segments_; } in GetSegments() 222 bool AddSegment(const Segment& seg); 240 std::vector<Segment> segments_;
|
/third_party/skia/src/gpu/ops/ |
H A D | AAConvexPathRenderer.cpp | 38 struct Segment { struct 67 typedef SkTArray<Segment, true> SegmentArray; 141 Segment& sega = (*segments)[a]; in compute_vectors() 143 Segment& segb = (*segments)[b]; in compute_vectors() 153 if (Segment::kLine == segb.fType) { in compute_vectors() 165 const Segment& sega = (*segments)[a]; in compute_vectors() 167 Segment& segb = (*segments)[b]; in compute_vectors() 249 segments->back().fType = Segment::kLine; in add_line_to_segment() 260 segments->back().fType = Segment::kQuad; in add_quad_segment() 379 const Segment in create_vertices() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | WasmYAML.cpp | 373 IO &IO, WasmYAML::ElemSegment &Segment) { in mapping() 374 IO.mapRequired("Offset", Segment.Offset); in mapping() 375 IO.mapRequired("Functions", Segment.Functions); in mapping() 440 IO &IO, WasmYAML::DataSegment &Segment) { in mapping() 441 IO.mapOptional("SectionOffset", Segment.SectionOffset); in mapping() 442 IO.mapRequired("InitFlags", Segment.InitFlags); in mapping() 443 if (Segment.InitFlags & wasm::WASM_SEGMENT_HAS_MEMINDEX) { in mapping() 444 IO.mapRequired("MemoryIndex", Segment.MemoryIndex); in mapping() 446 Segment.MemoryIndex = 0; in mapping() 448 if ((Segment in mapping() 372 mapping( IO &IO, WasmYAML::ElemSegment &Segment) mapping() argument 439 mapping( IO &IO, WasmYAML::DataSegment &Segment) mapping() argument [all...] |
H A D | WasmEmitter.cpp | 199 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent() 451 for (auto &Segment : Section.Segments) { in writeSectionContent() 452 encodeULEB128(Segment.TableIndex, OS); in writeSectionContent() 453 writeInitExpr(OS, Segment.Offset); in writeSectionContent() 455 encodeULEB128(Segment.Functions.size(), OS); in writeSectionContent() 456 for (auto &Function : Segment.Functions) in writeSectionContent() 492 for (auto &Segment : Section.Segments) { in writeSectionContent() 493 encodeULEB128(Segment.InitFlags, OS); in writeSectionContent() 494 if (Segment.InitFlags & wasm::WASM_SEGMENT_HAS_MEMINDEX) in writeSectionContent() 495 encodeULEB128(Segment in writeSectionContent() [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/core/ |
H A D | cmap_table.cc | 839 * CMapTable::CMapFormat4::Builder::Segment class 841 CMapTable::CMapFormat4::Builder::Segment::Segment() {} in Segment() function in sfntly::CMapTable::CMapFormat4::Builder::Segment 843 CMapTable::CMapFormat4::Builder::Segment::Segment(Segment* other) in Segment() function in sfntly::CMapTable::CMapFormat4::Builder::Segment 850 CMapTable::CMapFormat4::Builder::Segment::Segment(int32_t start_count, in Segment() function in sfntly::CMapTable::CMapFormat4::Builder::Segment 860 CMapTable::CMapFormat4::Builder::Segment::~Segment() {} in ~Segment() [all...] |
H A D | cmap_table.h | 327 // CMapTable::CMapFormat4::Builder::Segment 328 class Segment : public RefCounted<Segment> { class in sfntly::CMapTable::CMapFormat4::Builder 330 Segment(); 331 explicit Segment(Segment* other); 332 Segment(int32_t start_count, 336 ~Segment(); 356 std::vector<Ptr<Segment> >* 357 DeepCopy(std::vector<Ptr<Segment> >* origina [all...] |