Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/mtx/src/
Dquat.c90 r->w = p->w + q->w; in C_QUATAdd()
146 r->w = p->w - q->w; in C_QUATSubtract()
212 r->w = p->w*q->w - p->x*q->x - p->y*q->y - p->z*q->z; in C_QUATMultiply()
213 r->x = p->w*q->x + p->x*q->w + p->y*q->z - p->z*q->y; in C_QUATMultiply()
214 r->y = p->w*q->y + p->y*q->w + p->z*q->x - p->x*q->z; in C_QUATMultiply()
215 r->z = p->w*q->z + p->z*q->w + p->x*q->y - p->y*q->x; in C_QUATMultiply()
318 r->w = q->w * scale; in C_QUATScale()
366 return (q->x*p->x + q->y*p->y + q->z*p->z + q->w*p->w); in C_QUATDotProduct()
416 mag = (src->x * src->x) + (src->y * src->y) + (src->z * src->z) + (src->w * src->w); in C_QUATNormalize()
425 unit->w = src->w * mag; in C_QUATNormalize()
[all …]
Dmtx44vec.c71 f32 w; in C_MTX44MultVec() local
81 w = m[3][0]*src->x + m[3][1]*src->y + m[3][2]*src->z + m[3][3]; in C_MTX44MultVec()
82 w = 1.0f/w; in C_MTX44MultVec()
85 dst->x = vTmp.x * w; in C_MTX44MultVec()
86 dst->y = vTmp.y * w; in C_MTX44MultVec()
87 dst->z = vTmp.z * w; in C_MTX44MultVec()
158 f32 w; in C_MTX44MultVecArray() local
170 w = m[3][0]*srcBase->x + m[3][1]*srcBase->y + m[3][2]*srcBase->z + m[3][3]; in C_MTX44MultVecArray()
171 w = 1.0f/w; in C_MTX44MultVecArray()
174 dstBase->x = vTmp.x * w; in C_MTX44MultVecArray()
[all …]
Dmtx44.c728 f32 w; in C_MTX44Inverse() local
772 w = 1.0F / gjm[i][i]; in C_MTX44Inverse()
775 gjm[i][j] *= w; in C_MTX44Inverse()
776 inv[i][j] *= w; in C_MTX44Inverse()
784 w = gjm[k][i]; in C_MTX44Inverse()
787 gjm[k][j] -= gjm[i][j] * w; in C_MTX44Inverse()
788 inv[k][j] -= inv[i][j] * w; in C_MTX44Inverse()
Dmtx.c2154 ASSERTMSG( ( q->x || q->y || q->z || q->w ), MTX_QUAT_3 ); in C_MTXQuat()
2157 s = 2.0f / ( (q->x * q->x) + (q->y * q->y) + (q->z * q->z) + (q->w * q->w) ); in C_MTXQuat()
2160 wx = q->w * xs; wy = q->w * ys; wz = q->w * zs; in C_MTXQuat()
/RvlSDK-2.1/build/demos/hio2demo/include/
Dmulti.h21 #define SWAP16(w) ((((w) >> 8) & 0x00FF) | (((w) << 8) & 0xFF00)) argument
23 #define SWAP16(w) (w)
/RvlSDK-2.1/include/revolution/gx/
DGXVert.h200 void func(const ts x, const ts y, const ts z, const ts w);
256 static inline void func(const ts x, const ts y, const ts z, const ts w) \
265 *((td *) __EmBuffPtr) = (td) w; \
268 Em##func(x, y, z, w); \
309 static inline void func(const ts x, const ts y, const ts z, const ts w) \
314 GXWGFifo.td = (td) w; \
DGXEmVert.h48 void EmGXParam4f32( f32 x, f32 y, f32 z, f32 w );
/RvlSDK-2.1/build/libraries/demo/src/
DDEMOWin.c172 static void __DEMOWinMenu_refesh_menu (DEMOWinInfo *w);
173 static void __DEMOWinList_refresh_list (DEMOWinInfo *w);
1222 s32 w, len, i; in __DEMOWin_puts_n() local
1240 w = string[i] - ' '; in __DEMOWin_puts_n()
1241 s = ( w % 8 ) * 16 + fontShift; in __DEMOWin_puts_n()
1242 t = ( w / 8 ) * 16 + fontShift; in __DEMOWin_puts_n()
1634 static void __DEMOWinMenu_refesh_menu(DEMOWinInfo *w) in __DEMOWinMenu_refesh_menu() argument
1648 DEMOWinClearWindow(w); in __DEMOWinMenu_refesh_menu()
1651 m = (w->parent); in __DEMOWinMenu_refesh_menu()
1662 DEMOWinPrintfXY(w, 0, (u16)i, " %s ", m->items[(u16)j].name); in __DEMOWinMenu_refesh_menu()
[all …]
DDEMOPuts.c329 s32 c, w, len, i; in DEMOPuts() local
357 w = string[i] - ' '; in DEMOPuts()
358 s = ( w % 8 ) * 16 + fontShift; in DEMOPuts()
359 t = ( w / 8 ) * 16 + fontShift; in DEMOPuts()
/RvlSDK-2.1/build/demos/gxdemo/src/Indirect/
Dind-bump-st.c100 void setupSize(u16 w, u16 h);
200 void setupSize(u16 w, u16 h) in setupSize() argument
202 GXSetViewport(0, 0, w, h, 0, 1); in setupSize()
203 GXSetScissor(0, 0, w, h); in setupSize()
204 GXSetDispCopySrc(0, 0, w, h); in setupSize()
205 GXSetDispCopyDst(w, h); in setupSize()
207 GXSetTexCopySrc(0, 0, w, h); in setupSize()
208 GXSetTexCopyDst(w, h, LIT_TEX_FMT, FALSE); in setupSize()
Dind-bump-xyz.c124 void setupSize(u16 w, u16 h);
259 void setupSize(u16 w, u16 h) in setupSize() argument
261 GXSetViewport(0, 0, w, h, 0, 1); in setupSize()
262 GXSetScissor(0, 0, w, h); in setupSize()
263 GXSetDispCopySrc(0, 0, w, h); in setupSize()
264 GXSetDispCopyDst(w, h); in setupSize()
266 GXSetTexCopySrc(0, 0, w, h); in setupSize()
267 GXSetTexCopyDst(w, h, LIT_TEX_FMT, FALSE); in setupSize()
/RvlSDK-2.1/include/revolution/mtx/
DGeoTypes.h79 f32 x, y, z, w; member
/RvlSDK-2.1/build/demos/gxdemo/src/Geometry/
Dgeo-particle.c612 double x1, x2, w, y1; in BoxMuller() local
627 w = (x1 * x1) + (x2 * x2); in BoxMuller()
628 } while ( w > 1.0 ); in BoxMuller()
630 w = sqrt( (-2.0 * log( w ) ) / w ); in BoxMuller()
631 y1 = x1 * w; in BoxMuller()
632 y2 = x2 * w; in BoxMuller()
/RvlSDK-2.1/include/revolution/gd/
DGDVert.h86 static inline void func(const ts x, const ts y, const ts z, const ts w) \
91 GDWrite_##td(w); \
/RvlSDK-2.1/include/demo/
DDEMOWin.h107 #define DEMOWIN_CALC_MENU_WIDTH_PIXELS(w) ((((w)+DEMOWIN_X_CHAR_PAD)*FONT_CHAR_WIDTH)+4) argument
/RvlSDK-2.1/build/demos/hio2demo/vc++/simple/
DReadMe.txt23 �����̃t�@�C���̓v���R���p�C���ς݃w�b�_�[ (PCH) �t�@�C�� simple.pch�A
/RvlSDK-2.1/build/demos/hio2demo/src/
Ddual-main.c384 u32 x=96, y=128, w=128, h=192, col = myMakeColor(); in myPaintBox() local
385 u32 pixSize = (VI_DISPLAY_PIX_SZ << 1), lineSize = pixSize * w, i; in myPaintBox()
/RvlSDK-2.1/build/demos/kpaddemo/src/
Dsample.c130 s32 i,w,k, im,wm,km ; in move_cursor() local
160 w = wx * wx + wy ; in move_cursor()
161 if ( w >= wm ) continue ; in move_cursor()
164 wm = w ; in move_cursor()
/RvlSDK-2.1/build/buildtools/
Dmodulerules554 chmod +w $(INSTALL_ROOT)/lib/* ; \
567 chmod +w $(INSTALL_ROOT)/bin/demos/$(MODULENAME)/* ; \
581 chmod +w $(INSTALL_ROOT)/bin/tests/$(MODULENAME)/* ; \
594 chmod +w $(INSTALL_ROOT)/boot/* ; \
607 chmod +w $(INSTALL_ROOT)/bin/* ; \
/RvlSDK-2.1/build/demos/gxdemo/src/PixelProc/
Dcmn-model.c496 f32 w, h; member
594 wcos = obj3[i].w * cs; in cmModel3_Draw()
595 wsin = obj3[i].w * sn; in cmModel3_Draw()
/RvlSDK-2.1/build/demos/gxdemo/src/TexGen/
Dtg-clr-persp.c545 u16 w, h; in AnimTick() local
561 w = GXGetTexObjWidth(&g_texMap[2 * g_map]); in AnimTick()
564 g_map, w, h); in AnimTick()
/RvlSDK-2.1/dvddata/cxdemo/
Dtex-01.tpl2264 …・,イ 0・mカ,イ・・V��kz��゚・)w��V・��kz)w・゚…
2286 w
2288wクク・・・・・・ッッソ馞馞ソ・・・・・・・・\|{ソ・� � ・慵� � 慵ュYュyソサ・ソト6€ € ト6フラ…
2292 「;�€!€・丙匝購匝・改載菜「^・・・咬・喊・獄獄層宋損併鎗遭方鞭損腰・咨腿汚控埠。ラ・w・控夫遭風宋・・昂膳・ェ剳。ヨ攘埠禅埠爽繕繕・・膳宋・・不。ラ。ヨョ9埠剿剳・4繕剳ェ・禅剳・…
2333 € 拳折姐・諺節線扱碩誇跡胡€ € € €巡草w掀╋・ェェ┫€メェカ怦ム€雀ライ寫・勾裾標・・伴。ヨ・繋€
2342 ニワ摎・・セサヒ経経・マ=€#・€"傑攻昂宋宋决・鞭腿イ|経経泉コw
2462 …BHAHHJFJAF@pzvnlmjij^^fh`dfYH\BM2>(TFQAI5>2H>J:N<I=>85&<(@-wyyyvmmtjb_…
2464 "% )<%B*B1?8wunY{k\Sh\VRljge(% '
2465 …s・jq€・agp・jhnsH=E6D2]E=.C/VDj\@2<.C2]KD3=6A3I6・x}・z~}・wwuywqq\;631ZD,'
2467 %$ !uux|wlddk]YWmg^XVESH[P^Q>32.34;=($)%/*%,$xutvfgjd]^_ZX…
/RvlSDK-2.1/build/tools/TexConv/sample/
Dsample.tcs120 … 2, x, CMPR, 0, 7, 0, GX_CLAMP, GX_MIRROR ; set wrapS to clamp and set wrapT to mirror w/ mipmap
/RvlSDK-2.1/dvddata/wpadtests/
DMusicBox01.wav1 wZΣ=ウ技γ> テ稀オ僵・,メ 8オ・こ0ト・・ ト戯萄Lチ- エ稀ウ・・- ウ稀、ア8ナ哽┣Mム0モ戯陶Jこ, ウ紀導,9ヌィ[・+!モ紀・ゥJあ+ツ 8、・丙kム, テ…