Lines Matching refs:data

369         LoadMeterData data;  in SendLoadMeter()  local
372 data.callCount = (*m_RenderSystem)->GetCumulativeLoadMeter().callCount; in SendLoadMeter()
373data.cpuTime = static_cast<s32>( (*m_RenderSystem)->GetCumulativeLoadMeter().cumulativeTime * 1000… in SendLoadMeter()
374data.gpuTime = static_cast<s32>( (*m_RenderSystem)->GetCumulativeLoadMeter().cumulativeGpuTime * 1… in SendLoadMeter()
375 data.otherGpuTime = 0; in SendLoadMeter()
376data.cmdSize = static_cast<s32>( (*m_RenderSystem)->GetCumulativeLoadMeter().drawCommandBufferSize… in SendLoadMeter()
380 data.callCount = 0; in SendLoadMeter()
381 data.cpuTime = 0; in SendLoadMeter()
382 data.gpuTime = 0; in SendLoadMeter()
383 data.otherGpuTime = 0; in SendLoadMeter()
384 data.cmdSize = 0; in SendLoadMeter()
390 &data, in SendLoadMeter()
391 sizeof(data) in SendLoadMeter()
432 MemoryLeakData data; in NotifyMemoryLeak() local
433 data.deviceLeakSize = deviceLeakSize; in NotifyMemoryLeak()
434 data.particleLeakSize = particleLeakSize; in NotifyMemoryLeak()
439 &data, in NotifyMemoryLeak()
440 sizeof(data) in NotifyMemoryLeak()
459 MemoryStatusData data; in NotifyMemoryStatus() local
460 data.deviceMemoryUsed = deviceAllocator->GetTotalSize() - deviceAllocator->GetFreeSize(); in NotifyMemoryStatus()
463data.particleMemoryUsed = particleAllocator->GetTotalSize() - particleAllocator->GetFreeSize(); in NotifyMemoryStatus()
467 data.particleMemoryUsed = 0; in NotifyMemoryStatus()
473 &data, in NotifyMemoryStatus()
474 sizeof(data) in NotifyMemoryStatus()