Home
last modified time | relevance | path

Searched refs:min (Results 1 – 15 of 15) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/demo/demowin/
Ddemowin_slider_bar_float.cpp50 if (bar->pos < bar->min) in Decrement()
51 bar->pos = bar->min; in Decrement()
61 float totalDistance = this->max - this->min; in Update()
78 this->pos = (t + 0.5) * (max - min) + min; in Update()
81 if (this->pos < min) in Update()
82 this->pos = min; in Update()
103 float t = (float)(this->pos - min) / (max - min) - 0.5; in Update()
127 if (this->pos <= min) in Draw()
129 this->pos = min; in Draw()
153 float t = (float)(this->pos - min) / (max - min) - 0.5; in Draw()
[all …]
Ddemowin_slider_bar.cpp52 if (bar->pos < bar->min) in Decrement()
53 bar->pos = bar->min; in Decrement()
78 this->pos = (t + 0.5) * (max - min) + min; in Update()
81 if (this->pos < min) in Update()
82 this->pos = min; in Update()
103 float t = (float)(this->pos - min) / (max - min) - 0.5; in Update()
127 if (this->pos <= min) in Draw()
129 this->pos = min; in Draw()
153 float t = (float)(this->pos - min) / (max - min) - 0.5; in Draw()
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/
Ddemowin_slider_bar.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), func(_func), funcExtra(… in MenuItem()
34 int min; member
Ddemowin_slider_bar_float.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), decimals(_decimals), fu… in MenuItem()
34 float min; member
/CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/
Ddemowin_slider_bar.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), func(_func), funcExtra(… in MenuItem()
34 int min; member
Ddemowin_slider_bar_float.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), decimals(_decimals), fu… in MenuItem()
34 float min; member
/CafeSDK-2.12.13-1/system/include/cafe/vpad/
DvpadAPIs.h40 void VPADSetLStickClampThreshold( s32 chan, s32 max, s32 min) ;
41 void VPADSetRStickClampThreshold( s32 chan, s32 max, s32 min) ;
42 void VPADGetLStickClampThreshold( s32 chan, s32* max, s32* min) ;
43 void VPADGetRStickClampThreshold( s32 chan, s32* max, s32* min) ;
/CafeSDK-2.12.13-1/system/src/lib/libsys/
Dind_time.c75 (u64) 60 * pCosTime->min + in time()
/CafeSDK-2.12.13-1/system/include/cafe/os/
DOSTime.h84 int min; // minutes after the hour [0, 59] member
/CafeSDK-2.12.13-1/system/include/cafe/camera/
Dcamera.h149 int min; member
/CafeSDK-2.12.13-1/system/include/cafe/gx2/
Dgx2RenderState.h448 void GX2API GX2SetPointLimits(f32 min, f32 max);
Dgx2RenderStateReg.h789 f32 min, f32 max);
/CafeSDK-2.12.13-1/system/src/lib/demo/
DdemoTest.c236 td.year, td.mon+1, td.mday, td.hour, td.min, td.sec); in DEMOTestCheck()
/CafeSDK-2.12.13-1/system/include/cafe/pads/kpad/
Dkpad.h324 void KPADSetFSStickClamp ( s8 min, s8 max ) ;
/CafeSDK-2.12.13-1/system/src/tool/cafex/
DCafeFunctions.cs1075 UInt32 maj, min, mic, version; in readSDKFromCafeRoot()
1091 min = (version % 10000) / 100; in readSDKFromCafeRoot()
1094 SDK_VER.value = String.Format("{0}.{1:D2}.{2:D2}", maj, min, mic); in readSDKFromCafeRoot()