<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/98792>98792</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            `git clone` -> _Checking objects: 100% (16777216/16777216)_ how come is exact 2^24? Is _object_ count a `float` with 24bit _mantissa_? `git log` success, so `git clone` was success, but am confused
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            new issue
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          SwuduSusuwu
      </td>
    </tr>
</table>

<pre>
    None of the other values are exact powers of 2.
2^16, 2^24, 2^32 (more than other powers of 2) suggest rounding/truncation errors.
```
Welcome to Termux

Docs: https://doc.termux.com
Community: https://social.termux.com

Working with packages:
 - Search:  pkg search <query>
 - Install: pkg install <package>
 - Upgrade: pkg upgrade

Report issues at https://bugs.termux.com
~/SubStack $ cd ~/
~ $ git clone https://github.com/llvm/llvm-project.git
Cloning into 'llvm-project'...
remote: Enumerating objects: 6026964, done.
remote: Counting objects: 100% (3795/3795), done.
remote: Compressing objects: 100% (982/982), done.
Receiving objects: 100% (6026964/6026964), 1.28 GiB | 5.40 MiB/s, done.
remote: Total 6026964 (delta 3506), reused 2815 (delta 2813), pack-reused 6023169
Resolving deltas: 100% (4986719/4986719), done.
Checking objects: 100% (16777216/16777216), done.
Updating files: 100% (145782/145782), done.
~ $
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJycVEtv4zYQ_jX0ZRCBGr0POmycqNhDe9jsokeDlsYSG0p0-Yg3l_72grScuA5SoAUEaSh-85Hz-oS1clyIWlbcs-JhI7ybtGmfTn7wT976k9_s9fDa_qYXAn0ANxFoN5GBF6E8WRCGgH6K3sFRn8jYAMKE8QfGvyArHtOS4RaChfnFyhAY1rM2BG4Sy0p45c-wAevHkawDo_0yyGVk2Dnjl144qRcgY7Sx6zms5OsTl7-T6vVM4DR8JzP7nysqvh90b1n2BSbnjsFg2DHsBt0nLmKTXs9n5FbPs1-ke_0It7qXQn3wWI_X5lkuI5ykm-Ao-mcxUnSNu3AHTyRMPwVWOD6PYOMSWLb905N5ZdnjG_LrYp1QKkADUp6XAbryXoN_HEcjBrqA_bq8utk3OmrjQFobK-duotr70X6I6S-G3ZPfPznRPwPDHPoBwr91N_4apYNehQ75J-Eo3eT3kQs7pV4un7uj0X9Q75JRujXXSi8hZ3JxGhhW1yiGVZKslTY0axdDfFz8TEa44KX3ARfLWnIsmzJ22qAX-uC21X659Uk5Z1iElsyqpmDYnT_Nv5DMR0PWfsrT1Miwi-9blm_Uk3z51PPt_t2bFRnSBGv4Rd4Dq7ZQJDmHX-V96MRPL_ldO6Eu-QjUAyknICt4uXIa8pYGwDot3vexTrN1P_TY3QoqOWZp2VxisFrFGKLPTQh5U5dV2jDs3qzbJGwn6p8_zUFaVlWFQTi6d_OW4sdxOBf_IBXdEuRFFStwMW6dY9veaMdmaLOhyRqxoTatkDdYpTzfTC3WRbPvc8HT_WFosOmzggTWWJdNlYqi2MgWOea8SnOepTVicjjwhvISy5SygQ8NyznNQqoktHWizbiJI9g2ddXgRok9KRsFGHGh03k-GWLQY9PGUQijyXKupHX2ncVJp6hlJX8bQFZyuGPZI-z-T4p3MOkTRO2UdlX1VbmzDr5a2J3JdtCHMQIBrOQHpYUL50a9w3wvHexmsThprdgFx_WCSo8BZn3fk419azXcXv4k7DVi7x2IGXq9HEIbbrxR7X_TGIbdWe_iQIZ8v7T4dwAAAP__H60OLw">