Lines Matching defs:size
41 // - Optionally, on destruction, check the size of the generated code.
42 // (The size can be either exact or a maximum size.)
46 // has enough space for the requested size.
59 kNoAssert, // Do not check the size of the code emitted.
60 kExactSize, // The code emitted must be exactly size bytes.
61 kMaximumSize // The code emitted must be at most size bytes.
68 size_t size,
72 Open(assembler, size, check_policy, size_policy);
91 size_t size,
98 assembler->GetBuffer()->EnsureSpaceFor(size);
101 limit_ = assembler_->GetSizeOfCodeGenerated() + size;
147 // - Always check the size (exact or maximum) of the generated code on
149 // - Emit pools if the specified size would push them out of range.
159 size_t size,
162 Open(masm, size, size_policy);
184 size_t size,
186 Open(masm, size, size_policy, kBlockPools);
209 size_t size,
224 masm->EnsureEmitPoolsFor(size);
229 size,
238 size_t size,
241 Open(masm, size, size_policy, pool_policy);
258 size_t size,
261 Open(masm, size, size_policy);
272 size_t size,
274 Open(masm, size, size_policy, kBlockPools);
298 size_t size,
301 Open(masm, size, assert_policy, pool_policy);
305 size_t size,
315 EmissionCheckScope::Open(masm, size, size_policy, pool_policy);