%PDF- %PDF-
Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/heap/cppgc/ |
Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/heap/cppgc/memory.cc |
// Copyright 2021 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "src/heap/cppgc/memory.h" #include <cstddef> #include "src/heap/cppgc/globals.h" namespace cppgc { namespace internal { void NoSanitizeMemset(void* address, char c, size_t bytes) { volatile uint8_t* const base = static_cast<uint8_t*>(address); for (size_t i = 0; i < bytes; ++i) { base[i] = c; } } } // namespace internal } // namespace cppgc