Lines Matching defs:size
62 : LocationBase<int32_t>(kRawLocation, 1 /* placeholder size*/),
67 : LocationBase<int32_t>(kRawLocation, 1 /* dummy size*/),
123 int size,
128 size,
244 Location(uint32_t type, int size, int alignment)
245 : LocationBase<int32_t>(type, size, alignment), referenced_(false) {}
247 Location(AllocatorWrapper allocator, uint32_t type, int size, int alignment)
248 : LocationBase<int32_t>(type, size, alignment), referenced_(false), forward_(allocator){}
333 int size,
337 size,
338 (size < kLiteralAlignment) ? size : kLiteralAlignment),
346 RawLiteral(const void* addr, int size, DeletionPolicy deletion_policy)
348 size,
349 (size < kLiteralAlignment) ? size : kLiteralAlignment),
355 int size,
359 int size,
363 size,
364 (size < kLiteralAlignment) ? size : kLiteralAlignment),
372 RawLiteral(const void* addr, int size, DeletionPolicy deletion_policy) = delete;
374 RawLiteral(AllocatorWrapper allocator, const void* addr, int size, DeletionPolicy deletion_policy)
376 size,
377 (size < kLiteralAlignment) ? size : kLiteralAlignment),