diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:45:12 +0300 |
commit | 49116032d905455a7b1c994e4a696afc885c1e71 (patch) | |
tree | be835aa92c6248212e705f25388ebafcf84bc7a1 /contrib/libs/hyperscan/src/hwlm | |
parent | 4e839db24a3bbc9f1c610c43d6faaaa99824dcca (diff) | |
download | ydb-49116032d905455a7b1c994e4a696afc885c1e71.tar.gz |
Restoring authorship annotation for <thegeorg@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/hyperscan/src/hwlm')
-rw-r--r-- | contrib/libs/hyperscan/src/hwlm/hwlm_literal.cpp | 2 | ||||
-rw-r--r-- | contrib/libs/hyperscan/src/hwlm/hwlm_literal.h | 8 | ||||
-rw-r--r-- | contrib/libs/hyperscan/src/hwlm/noodle_engine_avx2.c | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/contrib/libs/hyperscan/src/hwlm/hwlm_literal.cpp b/contrib/libs/hyperscan/src/hwlm/hwlm_literal.cpp index 53c5808f69..692f7c6c0e 100644 --- a/contrib/libs/hyperscan/src/hwlm/hwlm_literal.cpp +++ b/contrib/libs/hyperscan/src/hwlm/hwlm_literal.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015-2019, Intel Corporation + * Copyright (c) 2015-2019, Intel Corporation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: diff --git a/contrib/libs/hyperscan/src/hwlm/hwlm_literal.h b/contrib/libs/hyperscan/src/hwlm/hwlm_literal.h index f8f7588b48..598de81471 100644 --- a/contrib/libs/hyperscan/src/hwlm/hwlm_literal.h +++ b/contrib/libs/hyperscan/src/hwlm/hwlm_literal.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015-2019, Intel Corporation + * Copyright (c) 2015-2019, Intel Corporation * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -121,9 +121,9 @@ struct hwlmLiteral { u32 id_in, hwlm_group_t groups_in, const std::vector<u8> &msk_in, const std::vector<u8> &cmp_in); - /** \brief Simple constructor: no group information, no msk/cmp. - * - * This constructor is only used in internal unit test. */ + /** \brief Simple constructor: no group information, no msk/cmp. + * + * This constructor is only used in internal unit test. */ hwlmLiteral(const std::string &s_in, bool nocase_in, u32 id_in) : hwlmLiteral(s_in, nocase_in, false, id_in, HWLM_ALL_GROUPS, {}, {}) {} }; diff --git a/contrib/libs/hyperscan/src/hwlm/noodle_engine_avx2.c b/contrib/libs/hyperscan/src/hwlm/noodle_engine_avx2.c index ab9150f46e..5edc646af1 100644 --- a/contrib/libs/hyperscan/src/hwlm/noodle_engine_avx2.c +++ b/contrib/libs/hyperscan/src/hwlm/noodle_engine_avx2.c @@ -210,7 +210,7 @@ hwlm_error_t scanDoubleFast(const struct noodTable *n, const u8 *buf, const u8 *d = buf + start, *e = buf + end; DEBUG_PRINTF("start %zu end %zu \n", start, end); assert(d < e); - u32 lastz0 = 0; + u32 lastz0 = 0; for (; d < e; d += 32) { m256 v = noCase ? and256(load256(d), caseMask) : load256(d); |