Lines Matching defs:cookie
2430 // The array cookie is a size_t; pad that up to the element alignment.
2431 // The cookie is actually right-justified in that space.
2448 // The size of the cookie.
2453 // Compute an offset to the cookie.
2463 // Handle the array cookie specially in ASan.
2477 // over the cookie completely.
2484 // The element size is right-justified in the cookie.
2497 // cookie, otherwise return 0 to avoid an infinite loop calling DTORs.
2508 // ARM says that the cookie is always:
2527 // The cookie is always at the start of the buffer.
2528 Address cookie = newPtr;
2531 cookie = cookie.withElementType(CGF.SizeTy);
2534 CGF.Builder.CreateStore(elementSize, cookie);
2537 cookie = CGF.Builder.CreateConstInBoundsGEP(cookie, 1);
2538 CGF.Builder.CreateStore(numElements, cookie);
2541 // over the cookie completely.