Lines Matching refs:data

367         LoadMeterData data;  in SendLoadMeter()  local
370 data.callCount = (*m_RenderSystem)->GetCumulativeLoadMeter().callCount; in SendLoadMeter()
371data.cpuTime = static_cast<s32>( (*m_RenderSystem)->GetCumulativeLoadMeter().cumulativeTime * 1000… in SendLoadMeter()
372data.gpuTime = static_cast<s32>( (*m_RenderSystem)->GetCumulativeLoadMeter().cumulativeGpuTime * 1… in SendLoadMeter()
373 data.otherGpuTime = 0; in SendLoadMeter()
374data.cmdSize = static_cast<s32>( (*m_RenderSystem)->GetCumulativeLoadMeter().drawCommandBufferSize… in SendLoadMeter()
378 data.callCount = 0; in SendLoadMeter()
379 data.cpuTime = 0; in SendLoadMeter()
380 data.gpuTime = 0; in SendLoadMeter()
381 data.otherGpuTime = 0; in SendLoadMeter()
382 data.cmdSize = 0; in SendLoadMeter()
388 &data, in SendLoadMeter()
389 sizeof(data) in SendLoadMeter()
430 MemoryLeakData data; in NotifyMemoryLeak() local
431 data.deviceLeakSize = deviceLeakSize; in NotifyMemoryLeak()
432 data.particleLeakSize = particleLeakSize; in NotifyMemoryLeak()
437 &data, in NotifyMemoryLeak()
438 sizeof(data) in NotifyMemoryLeak()
457 MemoryStatusData data; in NotifyMemoryStatus() local
458 data.deviceMemoryUsed = deviceAllocator->GetTotalSize() - deviceAllocator->GetFreeSize(); in NotifyMemoryStatus()
461data.particleMemoryUsed = particleAllocator->GetTotalSize() - particleAllocator->GetFreeSize(); in NotifyMemoryStatus()
465 data.particleMemoryUsed = 0; in NotifyMemoryStatus()
471 &data, in NotifyMemoryStatus()
472 sizeof(data) in NotifyMemoryStatus()