Ziqiang Wu

Results 3 issues of Ziqiang Wu

![image](https://user-images.githubusercontent.com/52373880/121798537-92ae8a80-cc59-11eb-90b4-720f69e1f8c3.png) ![_UR%3 6P31% @2O1@1$Z2TE](https://user-images.githubusercontent.com/52373880/121798557-a6f28780-cc59-11eb-96c5-24e5c3e48c6c.png)

I noticed the code in include/page_cache.h: https://github.com/ZaidQureshi/bam/blob/d20ef4ac5d4513a411422e41caf48562977504dc/include/page_cache.h#L810 Wondering if it should be: ```c++ uint64_t* temp1 = new uint64_t[np]; ``` or ```c++ uint64_t* temp1 = (uint64_t*) malloc(np * sizeof(uint64_t)); ```

question

Hi, I'm looking at this line of code from (https://github.com/ZaidQureshi/bam/blob/d20ef4ac5d4513a411422e41caf48562977504dc/include/page_cache.h#L775) and I'm trying to understand the meaning of ctrl.ctrl->page_size * uints_per_page in the following snippet: ```c++ const uint32_t uints_per_page =...