HomeSort by relevance Sort by last modified time
    Searched full:heapalloc (Results 1 - 25 of 50) sorted by null

1 2

  /external/lzma/CPP/Common/
NewHandler.cpp 18 // void *p = ::HeapAlloc(::GetProcessHeap(), 0, size);
46 // void *p = ::HeapAlloc(::GetProcessHeap(), 0, size);
70 // void *p = ::HeapAlloc(::GetProcessHeap(), 0, size);
103 void *p = HeapAlloc(GetProcessHeap(), 0, size);
  /device/google/contexthub/firmware/inc/
heap.h 31 void* heapAlloc(uint32_t sz);
atomicBitset.h 32 // struct AtomicBitset *set = (struct AtomicBitset*)heapAlloc(sz);
  /external/lzma/C/
7zAlloc.c 57 return HeapAlloc(GetProcessHeap(), 0, size);
  /external/lzma/CPP/Windows/
SecurityUtils.cpp 87 PSID pSid = ::HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sidLen);
88 LPWSTR domainName = (LPWSTR)::HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, (domainLen + 1) * sizeof(WCHAR));
  /device/google/contexthub/firmware/src/
slab.c 42 allocator = (struct SlabAllocator*)heapAlloc(sizeof(struct SlabAllocator) + bitsetSz + dataSz);
heap.c 115 void* heapAlloc(uint32_t sz)
174 // NULL is a valid reply from heapAlloc, and thus it is not an error for
nanohubCommand.c 283 mDownloadState = heapAlloc(sizeof(struct DownloadState));
897 packet = heapAlloc(rawPacket->dataLen + 1);
915 packet = heapAlloc(rx_len - sizeof(req->evtType));
1003 resp = heapAlloc(sizeof(*resp));
    [all...]
eventQ.c 48 struct EvtQueue *q = heapAlloc(sizeof(struct EvtQueue));
spi.c 283 struct SpiDeviceState *state = heapAlloc(sizeof(*state));
347 struct SpiDeviceState *state = heapAlloc(sizeof(*state));
simpleQ.c 57 sq = heapAlloc(sz);
appSec.c 144 struct AppSecState *state = heapAlloc(sizeof(struct AppSecState));
  /external/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 104 rgndata = HeapAlloc(GetProcessHeap(), 0, rgndata_size);
223 struct WineDXGIBackend* backend = HeapAlloc(GetProcessHeap(), 0, sizeof(struct WineDXGIBackend));
  /prebuilts/go/darwin-x86/src/cmd/trace/
trace.go 120 heapAlloc uint64
281 ctx.heapAlloc = ev.Args[0]
363 if ctx.nextGC > ctx.heapAlloc {
364 diff = ctx.nextGC - ctx.heapAlloc
366 ctx.emit(&ViewerEvent{Name: "Heap", Phase: "C", Time: ctx.time(ev), Pid: 1, Arg: &Arg{ctx.heapAlloc, diff}})
  /prebuilts/go/linux-x86/src/cmd/trace/
trace.go 120 heapAlloc uint64
281 ctx.heapAlloc = ev.Args[0]
363 if ctx.nextGC > ctx.heapAlloc {
364 diff = ctx.nextGC - ctx.heapAlloc
366 ctx.emit(&ViewerEvent{Name: "Heap", Phase: "C", Time: ctx.time(ev), Pid: 1, Arg: &Arg{ctx.heapAlloc, diff}})
  /prebuilts/go/darwin-x86/src/runtime/
malloc_test.go 22 st.Mallocs == 0 || st.Frees == 0 || st.HeapAlloc == 0 || st.HeapSys == 0 ||
31 st.Mallocs > 1e10 || st.Frees > 1e10 || st.HeapAlloc > 1e10 || st.HeapSys > 1e10 ||
mstats.go 102 HeapAlloc uint64 // bytes allocated and not yet freed (same as Alloc above)
123 NextGC uint64 // next collection will happen when HeapAlloc ? this amount
  /prebuilts/go/linux-x86/src/runtime/
malloc_test.go 22 st.Mallocs == 0 || st.Frees == 0 || st.HeapAlloc == 0 || st.HeapSys == 0 ||
31 st.Mallocs > 1e10 || st.Frees > 1e10 || st.HeapAlloc > 1e10 || st.HeapSys > 1e10 ||
mstats.go 102 HeapAlloc uint64 // bytes allocated and not yet freed (same as Alloc above)
123 NextGC uint64 // next collection will happen when HeapAlloc ? this amount
  /device/google/contexthub/firmware/src/cpu/cortexm4f/
appSupport.c 146 uint8_t *mem = heapAlloc(sect->bss_end);
  /device/google/contexthub/firmware/src/platform/stm32f4xx/
platform.c 134 userData = heapAlloc(sizeof(struct HostIntfDataBuffer));
313 mEarlyLogBuffer = heapAlloc(EARLY_LOG_BUF_SIZE);
  /device/google/contexthub/firmware/src/drivers/ams_tmd4903/
ams_tmd4903.c 325 struct AlsCalibrationData *data = heapAlloc(sizeof(struct AlsCalibrationData));
345 struct ProxCalibrationData *data = heapAlloc(sizeof(struct ProxCalibrationData));
  /prebuilts/go/darwin-x86/src/runtime/pprof/
pprof.go 462 fmt.Fprintf(w, "# HeapAlloc = %d\n", s.HeapAlloc)
  /prebuilts/go/linux-x86/src/runtime/pprof/
pprof.go 462 fmt.Fprintf(w, "# HeapAlloc = %d\n", s.HeapAlloc)
  /device/google/contexthub/firmware/src/drivers/bosch_bmp280/
bosch_bmp280.c 172 struct CalibrationData *data = heapAlloc(sizeof(struct CalibrationData));

Completed in 2385 milliseconds

1 2