Lines Matching defs:const

19   AlignedCachedData(const byte* data, int length);
23 AlignedCachedData(const AlignedCachedData&) = delete;
24 AlignedCachedData& operator=(const AlignedCachedData&) = delete;
26 const byte* data() const { return data_; }
27 int length() const { return length_; }
28 bool rejected() const { return rejected_; }
32 bool HasDataOwnership() const { return owns_data_; }
47 const byte* data_;
73 CodeSerializer(const CodeSerializer&) = delete;
74 CodeSerializer& operator=(const CodeSerializer&) = delete;
95 uint32_t source_hash() const { return source_hash_; }
108 const DisallowGarbageCollection& no_gc);
125 static const uint32_t kVersionHashOffset = kMagicNumberOffset + kUInt32Size;
126 static const uint32_t kSourceHashOffset = kVersionHashOffset + kUInt32Size;
127 static const uint32_t kFlagHashOffset = kSourceHashOffset + kUInt32Size;
128 static const uint32_t kPayloadLengthOffset = kFlagHashOffset + kUInt32Size;
129 static const uint32_t kChecksumOffset = kPayloadLengthOffset + kUInt32Size;
130 static const uint32_t kUnalignedHeaderSize = kChecksumOffset + kUInt32Size;
131 static const uint32_t kHeaderSize = POINTER_SIZE_ALIGN(kUnalignedHeaderSize);
150 SerializedCodeData(const std::vector<byte>* payload,
151 const CodeSerializer* cs);
156 base::Vector<const byte> Payload() const;
163 SerializedCodeData(const byte* data, int size)
166 base::Vector<const byte> ChecksummedContent() const {
167 return base::Vector<const byte>(data_ + kHeaderSize, size_ - kHeaderSize);
171 uint32_t expected_source_hash) const;
173 uint32_t expected_source_hash) const;
174 SerializedCodeSanityCheckResult SanityCheckWithoutSource() const;