Home
last modified time | relevance | path

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

/RvlSDK-3.3/build/libraries/mtx/src/
Dquat.c89 r->w = p->w + q->w; in C_QUATAdd()
145 r->w = p->w - q->w; in C_QUATSubtract()
211 r->w = p->w*q->w - p->x*q->x - p->y*q->y - p->z*q->z; in C_QUATMultiply()
212 r->x = p->w*q->x + p->x*q->w + p->y*q->z - p->z*q->y; in C_QUATMultiply()
213 r->y = p->w*q->y + p->y*q->w + p->z*q->x - p->x*q->z; in C_QUATMultiply()
214 r->z = p->w*q->z + p->z*q->w + p->x*q->y - p->y*q->x; in C_QUATMultiply()
317 r->w = q->w * scale; in C_QUATScale()
365 return (q->x*p->x + q->y*p->y + q->z*p->z + q->w*p->w); in C_QUATDotProduct()
415 mag = (src->x * src->x) + (src->y * src->y) + (src->z * src->z) + (src->w * src->w); in C_QUATNormalize()
424 unit->w = src->w * mag; in C_QUATNormalize()
[all …]
Dmtx44vec.c74 f32 w; in C_MTX44MultVec() local
84 w = m[3][0]*src->x + m[3][1]*src->y + m[3][2]*src->z + m[3][3]; in C_MTX44MultVec()
85 w = 1.0f/w; in C_MTX44MultVec()
88 dst->x = vTmp.x * w; in C_MTX44MultVec()
89 dst->y = vTmp.y * w; in C_MTX44MultVec()
90 dst->z = vTmp.z * w; in C_MTX44MultVec()
161 f32 w; in C_MTX44MultVecArray() local
173 w = m[3][0]*srcBase->x + m[3][1]*srcBase->y + m[3][2]*srcBase->z + m[3][3]; in C_MTX44MultVecArray()
174 w = 1.0f/w; in C_MTX44MultVecArray()
177 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.c2146 ASSERTMSG( ( q->x || q->y || q->z || q->w ), MTX_QUAT_3 ); in C_MTXQuat()
2149 s = 2.0f / ( (q->x * q->x) + (q->y * q->y) + (q->z * q->z) + (q->w * q->w) ); in C_MTXQuat()
2152 wx = q->w * xs; wy = q->w * ys; wz = q->w * zs; in C_MTXQuat()
/RvlSDK-3.3/build/demos/hio2demo/include/
Dmulti.h23 #define SWAP16(w) ((((w) >> 8) & 0x00FF) | (((w) << 8) & 0xFF00)) argument
25 #define SWAP16(w) (w)
/RvlSDK-3.3/include/revolution/gx/
DGXVert.h199 void func(const ts x, const ts y, const ts z, const ts w);
255 static inline void func(const ts x, const ts y, const ts z, const ts w) \
264 *((td *) __EmBuffPtr) = (td) w; \
267 Em##func(x, y, z, w); \
308 static inline void func(const ts x, const ts y, const ts z, const ts w) \
313 GXWGFifo.td = (td) w; \
DGXEmVert.h48 void EmGXParam4f32( f32 x, f32 y, f32 z, f32 w );
/RvlSDK-3.3/build/libraries/demo/src/
DDEMOWin.c178 static void __DEMOWinMenu_refesh_menu (DEMOWinInfo *w);
179 static void __DEMOWinList_refresh_list (DEMOWinInfo *w);
1228 s32 w, len, i; in __DEMOWin_puts_n() local
1246 w = string[i] - ' '; in __DEMOWin_puts_n()
1247 s = ( w % 8 ) * 16 + fontShift; in __DEMOWin_puts_n()
1248 t = ( w / 8 ) * 16 + fontShift; in __DEMOWin_puts_n()
1640 static void __DEMOWinMenu_refesh_menu(DEMOWinInfo *w) in __DEMOWinMenu_refesh_menu() argument
1654 DEMOWinClearWindow(w); in __DEMOWinMenu_refesh_menu()
1657 m = (w->parent); in __DEMOWinMenu_refesh_menu()
1668 DEMOWinPrintfXY(w, 0, (u16)i, " %s ", m->items[(u16)j].name); in __DEMOWinMenu_refesh_menu()
[all …]
DDEMOPuts.c346 s32 c, w, len, i; in DEMOPuts() local
374 w = string[i] - ' '; in DEMOPuts()
375 s = ( w % 8 ) * 16 + fontShift; in DEMOPuts()
376 t = ( w / 8 ) * 16 + fontShift; in DEMOPuts()
/RvlSDK-3.3/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, (float)w, (float)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, (float)w, (float)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-3.3/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-3.3/include/revolution/mtx/
DGeoTypes.h79 f32 x, y, z, w; member
/RvlSDK-3.3/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-3.3/vcmv/
DReadme_jp.txt66 dvdroot/content5/sample256x224.rgb565 .. �T���v���v���O�����p�w�i�摜
175 �� VCMVAllocateHeap()�Ŏw�肷��q�[�v�̑傫�����₷�ƋN����p�x ��
248 * ���ؔł� wad ���쐬����ۂ̃t�H���g�p�R���e���c�̎w�菈���ɕs�������������ߏC�����܂����B
264 * ���ؔł� wad ���쐬����ۂɎw�肷��R���e���c���Ԉ���Ă����̂ŏC�����܂����B
282 * Browser RSO, Font �̃R���e���g�C���f�b�N�X���w��ł���悤�ɕύX���܂����B
283 * ���ڂ�VCMVRun�Ŏw�肷��URL�������āA���TopPageURL����J�n�����Ă���
298 * �N���V�b�N�R���g���[���ŃR���e���c���X�N���[��������Ǝw�J�[�\��
301 ���������ꍇ�A���݃����R������ʂ̊O���w���Ă��Ă��A�Ō�̃����R��
336 �I��UI��L���ɂ��邩�����ɂ��邩�w�肷��悤�ɏC�����܂����B
381 * �o�[�`�����R���\�[���n�[�h�E�F�A�̉��x�Ɠ����T�C�Y�̔w�i�e�N�X�`����
[all …]
/RvlSDK-3.3/include/demo/
DDEMOWin.h107 #define DEMOWIN_CALC_MENU_WIDTH_PIXELS(w) ((((w)+DEMOWIN_X_CHAR_PAD)*FONT_CHAR_WIDTH)+4) argument
/RvlSDK-3.3/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-3.3/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-3.3/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-3.3/build/demos/kpaddemo/src/
Dsample.c206 s32 i,w,k, im,wm,km ; in move_cursor() local
235 w = wx * wx + wy ; in move_cursor()
236 if ( w >= wm ) continue ; in move_cursor()
239 wm = w ; in move_cursor()
Dmpls.c205 s32 i,w,k, im,wm,km ; in move_cursor() local
234 w = wx * wx + wy ; in move_cursor()
235 if ( w >= wm ) continue ; in move_cursor()
238 wm = w ; in move_cursor()
/RvlSDK-3.3/build/buildtools/
Dmodulerules680 chmod +w $(INSTALL_ROOT)/lib/* ; \
693 chmod +w $(INSTALL_ROOT)/bin/demos/$(MODULENAME)/* ; \
707 chmod +w $(INSTALL_ROOT)/bin/tests/$(MODULENAME)/* ; \
720 chmod +w $(INSTALL_ROOT)/boot/* ; \
733 chmod +w $(INSTALL_ROOT)/bin/* ; \
/RvlSDK-3.3/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-3.3/vcmv/bin/RVL/
DVcmvTestD.map5539 …@unnamed@lyt_layout_cpp@FPQ36nw4hbm3lyt4PanePQ36nw4hbm2ut19TagProcessorBase<w> homebuttonLib.vcmv…
5540 …0 16 SetTagProcessor__Q36nw4hbm3lyt7TextBoxFPQ36nw4hbm2ut19TagProcessorBase<w> homebuttonLib.vcmv…
5582 …30 16 SetTagProcessor__Q36nw4hbm3lyt6LayoutFPQ36nw4hbm2ut19TagProcessorBase<w> homebuttonLib.vcmv…
5937 …000daa30 000008 800e1bb0 000ddd90 16 ConvertOffsToPtr<w>__Q36nw4hbm3lyt6detailFPCvUi_PCw homebutt…
5954 … 0000bc 800e23e0 000de5c0 16 CalcLineStrNum<w>__25@unnamed@lyt_textBox_cpp@FPfPQ36nw4hbm2ut17TextW…
5955 …0e24a0 000de680 16 CalcLineRectImpl<w>__25@unnamed@lyt_textBox_cpp@FPQ36nw4hbm2ut4RectPQ36nw4hbm2u…
5964 …6c 800e2a50 000dec30 16 __ct__Q36nw4hbm2ut17TextWriterBase<w>FRCQ36nw4hbm2ut17TextWriterBase<w> h…
5985 …d0 16 GetTextDrawRect__Q36nw4hbm3lyt7TextBoxCFPQ36nw4hbm2ut17TextWriterBase<w> homebuttonLib.vcmv…
5986 …800e3420 000df600 16 CalcStringRect<w>__25@unnamed@lyt_textBox_cpp@FPQ36nw4hbm2ut4RectPQ36nw4hbm2u…
5987 …3490 000df670 16 CalcStringRectImpl<w>__25@unnamed@lyt_textBox_cpp@FPQ36nw4hbm2ut4RectPQ36nw4hbm2u…
[all …]