Searched defs:Sized (Results 1 – 1 of 1) sorted by relevance
20 struct alignas(8) Sized { struct21 Sized() { Clear(); } in Sized() argument22 explicit Sized(char c) { Fill(c); } in Sized() function23 char v[sizeof(Aligned<N>)];24 void Clear() { memset(v, 0, sizeof(v)); } in Clear()25 void Fill(char c) { memset(v, c, sizeof(v)); } in Fill()26 static Sized Pattern(uint8_t c) { in Pattern()33 bool operator==(const Sized& right) const { in operator ==()38 SmallerSized Truncate() const { in Truncate()