Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/lib/crc/x86/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 880 B image not shown  

Quelle  crc-t10dif.h   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 * CRC-T10DIF using [V]PCLMULQDQ instructions
 *
 * Copyright 2024 Google LLC
 */


#include "crc-pclmul-template.h"

static __ro_after_init DEFINE_STATIC_KEY_FALSE(have_pclmulqdq);

DECLARE_CRC_PCLMUL_FUNCS(crc16_msb, u16);

static inline u16 crc_t10dif_arch(u16 crc, const u8 *p, size_t len)
{
 CRC_PCLMUL(crc, p, len, crc16_msb, crc16_msb_0x8bb7_consts,
     have_pclmulqdq);
 return crc_t10dif_generic(crc, p, len);
}

#define crc_t10dif_mod_init_arch crc_t10dif_mod_init_arch
static inline void crc_t10dif_mod_init_arch(void)
{
 if (boot_cpu_has(X86_FEATURE_PCLMULQDQ)) {
  static_branch_enable(&have_pclmulqdq);
  if (have_vpclmul()) {
   if (have_avx512())
    static_call_update(crc16_msb_pclmul,
         crc16_msb_vpclmul_avx512);
   else
    static_call_update(crc16_msb_pclmul,
         crc16_msb_vpclmul_avx2);
  }
 }
}

Messung V0.5
C=93 H=94 G=93

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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.