Home
last modified time | relevance | path

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

/NW4C-1.2.23/sources/libraries/anim/res/
Danim_ResAnimCurve.cpp270 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameRepeatPre_() local
271 frame -= cnt * duration; in NormalizeFrameRepeatPre_()
281 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameRepeatPost_() local
282 frame -= cnt * duration; in NormalizeFrameRepeatPost_()
293 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameMirrorPre_() local
294 frame -= cnt * duration; in NormalizeFrameMirrorPre_()
295 needsReverse = (cnt & 1)? true : false; in NormalizeFrameMirrorPre_()
306 s32 cnt = static_cast<s32>(std::floor( (frame - startFrame) / duration )); in NormalizeFrameMirrorPost_() local
307 frame -= cnt * duration; in NormalizeFrameMirrorPost_()
308 needsReverse = (cnt & 1)? true : false; in NormalizeFrameMirrorPost_()
/NW4C-1.2.23/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()