Lines Matching refs:y
59 static void G3_Scale(fx32 x, fx32 y, fx32 z);
60 static void G3_Translate(fx32 x, fx32 y, fx32 z);
62 static void G3_Normal(fx16 x, fx16 y, fx16 z);
64 static void G3_Vtx(fx16 x, fx16 y, fx16 z);
65 static void G3_Vtx10(fx16 x, fx16 y, fx16 z);
66 static void G3_VtxXY(fx16 x, fx16 y);
68 static void G3_VtxYZ(fx16 y, fx16 z);
69 static void G3_VtxDiff(fx16 x, fx16 y, fx16 z);
80 static void G3_LightVector(GXLightId lightID, fx16 x, fx16 y, fx16 z);
88 static void G3_PositionTest(fx16 x, fx16 y, fx16 z);
89 static void G3_VectorTest(fx16 x, fx16 y, fx16 z);
278 static inline void G3_Scale(fx32 x, fx32 y, fx32 z) in G3_Scale() argument
281 reg_G3_MTX_SCALE = (u32)y; in G3_Scale()
297 static inline void G3_Translate(fx32 x, fx32 y, fx32 z) in G3_Translate() argument
300 reg_G3_MTX_TRANS = (u32)y; in G3_Translate()
333 static inline void G3_Normal(fx16 x, fx16 y, fx16 z) in G3_Normal() argument
336 SDK_MINMAX_ASSERT(y, -FX16_ONE, FX16_ONE - 1); in G3_Normal()
339 reg_G3_NORMAL = GX_PACK_NORMAL_PARAM(x, y, z); in G3_Normal()
373 static inline void G3_Vtx(fx16 x, fx16 y, fx16 z) in G3_Vtx() argument
375 reg_G3_VTX_16 = GX_FX16PAIR(x, y); in G3_Vtx()
390 static inline void G3_Vtx10(fx16 x, fx16 y, fx16 z) in G3_Vtx10() argument
392 reg_G3_VTX_10 = GX_PACK_VTX10_PARAM(x, y, z); in G3_Vtx10()
407 static inline void G3_VtxXY(fx16 x, fx16 y) in G3_VtxXY() argument
409 reg_G3_VTX_XY = GX_PACK_VTXXY_PARAM(x, y); in G3_VtxXY()
441 static inline void G3_VtxYZ(fx16 y, fx16 z) in G3_VtxYZ() argument
443 reg_G3_VTX_YZ = GX_PACK_VTXYZ_PARAM(y, z); in G3_VtxYZ()
458 static inline void G3_VtxDiff(fx16 x, fx16 y, fx16 z) in G3_VtxDiff() argument
461 SDK_MINMAX_ASSERT(y, (fx16)0xfe00, (fx16)0x1ff); in G3_VtxDiff()
464 reg_G3_VTX_DIFF = GX_PACK_VTXDIFF_PARAM(x, y, z); in G3_VtxDiff()
604 static inline void G3_LightVector(GXLightId lightID, fx16 x, fx16 y, fx16 z) in G3_LightVector() argument
608 SDK_MINMAX_ASSERT(y, -FX16_ONE, FX16_ONE - 1); in G3_LightVector()
611 reg_G3_LIGHT_VECTOR = GX_PACK_LIGHTVECTOR_PARAM(lightID, x, y, z); in G3_LightVector()
733 static inline void G3_PositionTest(fx16 x, fx16 y, fx16 z) in G3_PositionTest() argument
735 reg_G3_POS_TEST = GX_FX16PAIR(x, y); in G3_PositionTest()
751 static inline void G3_VectorTest(fx16 x, fx16 y, fx16 z) in G3_VectorTest() argument
754 SDK_MINMAX_ASSERT(y, -FX16_ONE, FX16_ONE - 1); in G3_VectorTest()
757 reg_G3_VEC_TEST = GX_PACK_VECTORTEST_PARAM(x, y, z); in G3_VectorTest()