HomeSort by relevance Sort by last modified time
    Searched refs:size_arg (Results 1 - 5 of 5) sorted by null

  /external/srec/portable/include/
pmalloc.h 103 void *(PortMalloc)(psize_t size_arg);
  /external/srec/portable/src/
pmalloc.c 340 void *(PortMalloc)(psize_t size_arg)
351 size = (size_arg + (CELL_OFF + M_MASK)) & ~M_MASK;
354 if (size <= size_arg)
355 return (0); /* size_arg too large */
  /external/v8/test/cctest/
test-alloc.cc 196 Block(Address base_arg, int size_arg)
197 : base(base_arg), size(size_arg) {}
  /external/chromium/chrome/browser/
browser_main.cc 1037 std::string size_arg = local
    [all...]
  /external/v8/src/
spaces.h 849 FreeBlock(Address start_arg, size_t size_arg)
850 : start(start_arg), size(size_arg) {
854 FreeBlock(void* start_arg, size_t size_arg)
855 : start(static_cast<Address>(start_arg)), size(size_arg) {
    [all...]

Completed in 108 milliseconds