Home
last modified time | relevance | path

Searched refs:max (Results 1 – 24 of 24) sorted by relevance

/CafeSDK-2.12.13-1/system/src/lib/demo/demowin/
Ddemowin_scroll_bar.cpp31 if (this->count <= this->max) in Update()
34 float sizeY = this->count - this->max; in Update()
51 if (*this->pPos >= this->count - this->max) in Update()
54 *this->pPos = this->count - this->max; in Update()
90 *pPos = count - max; in Draw()
95 if (*pPos >= count - max) in Draw()
98 *pPos = count - max; in Draw()
105 if (count > max) in Draw()
107 float sizeY = count - max; in Draw()
Ddemowin_slider_bar_float.cpp36 if (bar->pos > bar->max) in Increment()
37 bar->pos = bar->max; in Increment()
61 float totalDistance = this->max - this->min; in Update()
78 this->pos = (t + 0.5) * (max - min) + min; in Update()
84 if (this->pos > max) in Update()
85 this->pos = max; in Update()
103 float t = (float)(this->pos - min) / (max - min) - 0.5; in Update()
135 if (this->pos >= max) in Draw()
137 this->pos = max; in Draw()
153 float t = (float)(this->pos - min) / (max - min) - 0.5; in Draw()
[all …]
Ddemowin_slider_bar.cpp37 if (bar->pos > bar->max) in Increment()
38 bar->pos = bar->max; in Increment()
78 this->pos = (t + 0.5) * (max - min) + min; in Update()
84 if (this->pos > max) in Update()
85 this->pos = max; in Update()
103 float t = (float)(this->pos - min) / (max - min) - 0.5; in Update()
135 if (this->pos >= max) in Draw()
137 this->pos = max; in Draw()
153 float t = (float)(this->pos - min) / (max - min) - 0.5; in Draw()
Ddemowin_tab_window.cpp71 scrollBar->max = height; in PreUpdate()
115 scrollBar->max = height; in PreDraw()
/CafeSDK-2.12.13-1/system/include/cafe/demo/demowin/
Ddemowin_scroll_bar.h19 …: MenuItem(window, position, size), pos(0), subHeight(size.y / 10), count(_count), max(_max), pPos… in MenuItem()
22 …: MenuItem(window, position, size), subHeight(size.y / 10), count(_count), max(_max), pPos(_pPos) … in ScrollBar()
25 …: MenuItem(copy), pos(copy.pos), subHeight(copy.subHeight), count(copy.count), max(copy.max), pPos… in ScrollBar()
42 float max; member
Ddemowin_slider_bar.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), func(_func), funcExtra(… in MenuItem()
35 int max; member
Ddemowin_slider_bar_float.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), decimals(_decimals), fu… in MenuItem()
35 float max; member
/CafeSDK-2.12.13-1/system/src/lib/demo/headers/cafe/demo/demowin/
Ddemowin_scroll_bar.h19 …: MenuItem(window, position, size), pos(0), subHeight(size.y / 10), count(_count), max(_max), pPos… in MenuItem()
22 …: MenuItem(window, position, size), subHeight(size.y / 10), count(_count), max(_max), pPos(_pPos) … in ScrollBar()
25 …: MenuItem(copy), pos(copy.pos), subHeight(copy.subHeight), count(copy.count), max(copy.max), pPos… in ScrollBar()
42 float max; member
Ddemowin_slider_bar.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), func(_func), funcExtra(… in MenuItem()
35 int max; member
Ddemowin_slider_bar_float.h19 …: MenuItem(window, position, size), min(_min), max(_max), target(_target), decimals(_decimals), fu… in MenuItem()
35 float max; 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_gcnt.gpj20 ind_gcnt.max [Assembly]
Dind_mcnt.gpj23 ind_mcnt.max [Assembly]
Dind_call.gpj23 ind_call.max [Assembly]
Dind_dots.gpj23 ind_dots.max [Assembly]
/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/SLConverter/deferredTestDX9/
DdeferredTest.fx161 diffuseCol * max(0.0, dot(normal, lightDir)) +
162 specularCol * pow(max(0.0, dot(refl, toViewer)), shininess), 1.0);
/CafeSDK-2.12.13-1/system/include/cafe/camera/
Dcamera.h148 int max; 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/
Ddemowin.cpp379 scrollBar->max = height; in PreUpdate()
401 scrollBar->max = height; in PreDraw()
/CafeSDK-2.12.13-1/system/src/tool/gfx/projects/gfd/
DgfdFileShader.cpp318 GFDStringTable *GFDCreateStringTable(u32 max) in GFDCreateStringTable() argument
327 pTable->m_maxDB = max; in GFDCreateStringTable()
399 GFDDataTable *GFDCreateDataTable(u32 max) in GFDCreateDataTable() argument
407 …pTable->m_maxDB = max * sizeof(u32); // assume chars are average of 8 or so in size (will grow se… in GFDCreateDataTable()
2039 static char *makeName(char *dst, char *src1, char *src2, u32 max) in makeName() argument
2047 strncat_s(dst, max, src1, max-1); in makeName()
2050 strncat_s(dst+len, max-len, src2, max-len-1); in makeName()
/CafeSDK-2.12.13-1/system/src/lib/mtx/
Dmtx44.c891 f32 max = 0.0f; in C_MTX44Inverse() local
899 if ( ftmp > max ) in C_MTX44Inverse()
901 max = ftmp; in C_MTX44Inverse()
908 if ( max == 0.0f ) in C_MTX44Inverse()
/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/gfx/projects/TexConv2/ddsReader/
DDDS.cpp204 mipSize = max( mipSize, minMipSize ); in DDSConvertMipsToCubeFormat()