Skip to content

Commit

Permalink
Update API docs (87a760e).
Browse files Browse the repository at this point in the history
  • Loading branch information
facebook-github-bot committed Dec 13, 2024
1 parent 076940a commit 946811b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xml/neon-inl_8h.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@
<codeline lineno="98"><highlight class="normal"></highlight></codeline>
<codeline lineno="99"><highlight class="normal"></highlight><highlight class="comment">/*<sp/>Hamming<sp/>distances<sp/>for<sp/>multiple<sp/>of<sp/>64<sp/>bits<sp/>*/</highlight><highlight class="normal"></highlight></codeline>
<codeline lineno="100"><highlight class="normal"></highlight><highlight class="keyword">inline</highlight><highlight class="normal"><sp/>hamdis_t<sp/>hamming(</highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/>uint64_t*<sp/>pa,<sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/>uint64_t*<sp/>pb,<sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords)<sp/>{</highlight></codeline>
<codeline lineno="101"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords256<sp/>=<sp/>nwords<sp/>/<sp/>256;</highlight></codeline>
<codeline lineno="102"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords128<sp/>=<sp/>(nwords<sp/>-<sp/>nwords256<sp/>*<sp/>256)<sp/>/<sp/>128;</highlight></codeline>
<codeline lineno="103"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords64<sp/>=<sp/>(nwords<sp/>-<sp/>nwords256<sp/>*<sp/>256<sp/>-<sp/>nwords128<sp/>*<sp/>128)<sp/>/<sp/>64;</highlight></codeline>
<codeline lineno="101"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords256<sp/>=<sp/>nwords<sp/>/<sp/>4;</highlight></codeline>
<codeline lineno="102"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords128<sp/>=<sp/>(nwords<sp/>%<sp/>4)<sp/>/<sp/>2;</highlight></codeline>
<codeline lineno="103"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keyword">const</highlight><highlight class="normal"><sp/></highlight><highlight class="keywordtype">size_t</highlight><highlight class="normal"><sp/>nwords64<sp/>=<sp/>nwords<sp/>%<sp/>2;</highlight></codeline>
<codeline lineno="104"><highlight class="normal"></highlight></codeline>
<codeline lineno="105"><highlight class="normal"><sp/><sp/><sp/><sp/>hamdis_t<sp/>h<sp/>=<sp/>0;</highlight></codeline>
<codeline lineno="106"><highlight class="normal"><sp/><sp/><sp/><sp/></highlight><highlight class="keywordflow">if</highlight><highlight class="normal"><sp/>(nwords256<sp/>&gt;<sp/>0)<sp/>{</highlight></codeline>
Expand Down

0 comments on commit 946811b

Please sign in to comment.