The real deal y0

  • 1 Post
  • 414 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle


  • ^ this.
    The same applies for ad(h)d and a few others. You can have ad(h)d without being on the asd spectrum but they often coincide.
    Asd(authism) is a spectrum for crying out loud, a collection of sympthoms in a varying degree of severity. Because its a collection, which btw you need to have several in a specific degree to get asd diagnosed, it means that the sympthoms can coincide with other diagnoses.
    Its like being overweight, which can come from having diabetes ( type 1 i think?) or from having a slow working thyroid or even from having a bad diet.











  • Outdated info iirc. This was the case with android 13 for fp3, which they skipped completely and jumped to 14. They also still push updates regularly for all phones later than fp2.

    And if you want bleeding edge updates, no phone maker does that and youll have to look at lineageOS, which tends to break things once in a while.

    ( im a fp4 user with lineageos running android 15, sep 3 update )





  • Cache man, its a fun thing. 32k 32 (derp, 32 not 32k) is a common cache line size. Some compilers realise that your data might be hit often and aligns it to a cache line start to make its access fast and easy. So yes, it might allocate more memory than it should need, but then its to align the data to something like a cache line.
    There is also a hardware reasons that might also be the case. I know the wii’s main processor communicates with the co processor over memory locations that should be 32k aligned because of access speed, not only because of cache. Sometimes, more is less :')

    Hell, might even be a cause of instruction speed that loading and handling 32k of data might be faster than a single byte :').

    Then there is also the minimum heap allocation size that might factor in. Though a 32k minimum memory block seems… Excessive xD