search for: heap_

Displaying 3 results from an estimated 3 matches for "heap_".

Did you mean: heap
2017 Aug 03
0
Wine release 2.14
...re attempting to delete a registry key (Coverity). regedit: Prevent out-of-bounds reads when unescaping a string (Valgrind). regedit: Use a helper function to allocate memory and check for a valid pointer. regedit: Use a helper function to free allocated memory. regedit: Use heap_xrealloc() for consistency. regedit: Use the heap_*() functions in childwnd.c where possible. regedit: Use the heap_*() functions in edit.c where possible. regedit: Use the heap_*() functions in framewnd.c where possible. regedit: Use the heap_*() functions in regedit.c where...
2018 May 11
0
Wine release 3.8
...ic library. mp3dmod: Add stub MP3 Decoder DMO. mp3dmod: Link to libmpg123. mp3dmod: Return S_OK from SetInputType(). mp3dmod: Implement SetOutputType(). mp3dmod: Implement ProcessInput(). mp3dmod: Implement ProcessOutput(). Zhiyi Zhang (2): user32: Use the heap_*() functions in text.c where possible. user32: Use common cleanup code in DrawTextExW(). -- Alexandre Julliard julliard at winehq.org
2012 Jul 17
3
complexity of operations in R
Hello! I am optimizing my code in R and for this I need to know a bit more about the internals. It would help tremendously if someone could link me to a page with O()-complexities of all the operations. In this particular case, I need something like a linked list with O(1) insertLast/First ability. I can't preallocate a vector since I do not know the final size of the list ahead of time. The