Home
last modified time | relevance | path

Searched refs:cookie_ptr (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/third_party/base/allocator/partition_allocator/
Dpartition_alloc.h541 auto* cookie_ptr = reinterpret_cast<unsigned char*>(ptr); in PartitionCookieWriteValue() local
542 for (size_t i = 0; i < kCookieSize; ++i, ++cookie_ptr) in PartitionCookieWriteValue()
543 *cookie_ptr = kCookieValue[i]; in PartitionCookieWriteValue()
549 auto* cookie_ptr = reinterpret_cast<unsigned char*>(ptr); in PartitionCookieCheckValue() local
550 for (size_t i = 0; i < kCookieSize; ++i, ++cookie_ptr) in PartitionCookieCheckValue()
551 DCHECK(*cookie_ptr == kCookieValue[i]); in PartitionCookieCheckValue()