Home | History | Annotate | Download | only in msan

Lines Matching refs:stack

79 static void *MsanAllocate(StackTrace *stack, uptr size, uptr alignment,
105 u32 stack_id = StackDepotPut(stack->trace, stack->size);
116 void MsanDeallocate(StackTrace *stack, void *p) {
128 u32 stack_id = StackDepotPut(stack->trace, stack->size);
146 void *MsanReallocate(StackTrace *stack, void *old_p, uptr new_size,
149 return MsanAllocate(stack, new_size, alignment, zeroise);
151 MsanDeallocate(stack, old_p);
165 void *new_p = MsanAllocate(stack, new_size, alignment, zeroise);
169 MsanDeallocate(stack, old_p);