Home
last modified time | relevance | path

Searched refs:cnt (Results 1 – 3 of 3) sorted by relevance

/NW4C-1.3.3/demos/Nw4cDemo/sources/
DSmSceneCtrl.cpp229 u32 cnt = 0; in OutputLog() local
235 cnt++; in OutputLog()
237 NW_DEV_LOG( "SceneContex:SceneNode Num %d\n", cnt ); in OutputLog()
238 cnt = 0; in OutputLog()
246 cnt++; in OutputLog()
248 NW_DEV_LOG( "SceneContex:ModelArray Num %d\n", cnt ); in OutputLog()
249 cnt = 0; in OutputLog()
257 cnt++; in OutputLog()
259 NW_DEV_LOG( "SceneContex:Particle Model Array Num %d\n", cnt ); in OutputLog()
260 cnt = 0; in OutputLog()
[all …]
/NW4C-1.3.3/sources/libraries/anim/res/
Danim_ResAnimCurve.cpp310 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameRepeatPre_() local
311 frame -= cnt * duration; in NormalizeFrameRepeatPre_()
321 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameRepeatPost_() local
322 frame -= cnt * duration; in NormalizeFrameRepeatPost_()
333 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameMirrorPre_() local
334 frame -= cnt * duration; in NormalizeFrameMirrorPre_()
335 needsReverse = (cnt & 1)? true : false; in NormalizeFrameMirrorPre_()
346 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameMirrorPost_() local
347 frame -= cnt * duration; in NormalizeFrameMirrorPost_()
348 needsReverse = (cnt & 1)? true : false; in NormalizeFrameMirrorPost_()
/NW4C-1.3.3/sources/libraries/dev/
Ddev_DirectPrint.cpp484 int cnt = 0; // 出力文字数のカウンタ in DrawLine() local
503 int tab_size = TAB_WIDTH - (cnt & (TAB_WIDTH - 1)); in DrawLine()
505 cnt += tab_size; in DrawLine()
516 ++cnt; in DrawLine()
519 if (cnt >= width) in DrawLine()