// Copyright 2022 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.
// Helper function for printing to a Vector. staticinlineint MOZ_FORMAT_PRINTF(2, 3)
SNPrintF(V8Vector<char> str, constchar* format, ...) {
va_list args;
va_start(args, format); int result = vsnprintf(str.start(), str.length(), format, args);
va_end(args); return result;
}
} // namespace js::jit
#endif// jit_riscv64_base_Vector_h
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-08-25)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.