Lines Matching refs:GX2_INLINE

140 GX2_INLINE void GX2CopyEndianSwap(void *dst, const void *src, u32 byteLen)  in GX2CopyEndianSwap()
169 GX2_INLINE void GX2EndianSwap(void *ptr, u32 byteLen) in GX2EndianSwap()
199 GX2_INLINE u32 GX2RoundUp(u32 value, u32 size) in GX2RoundUp()
266 GX2_INLINE void GX2NotifyMemAlloc(const void* addr, u32 size, u32 align){ in GX2NotifyMemAlloc()
271 GX2_INLINE void GX2NotifyMemFree(const void* addr){ in GX2NotifyMemFree()
493 GX2_INLINE void GX2SetBitFlags(u32* pFlags, u32 bits) { *pFlags |= bits; } in GX2SetBitFlags()
499 GX2_INLINE void GX2ClearBitFlags(u32* pFlags, u32 bits) { *pFlags &= ~bits; } in GX2ClearBitFlags()
505 GX2_INLINE void GX2MaskBitFlags(u32* pFlags, u32 mask) { *pFlags &= mask; } in GX2MaskBitFlags()
511 GX2_INLINE void GX2ReplaceBitFlags(u32* pFlags, u32 mask, u32 bits) { *pFlags &= ~mask; *pFlags |… in GX2ReplaceBitFlags()
517 GX2_INLINE GX2Boolean GX2TestBitFlagsAny(u32 flags, u32 bits) { return (GX2Boolean)((flags … in GX2TestBitFlagsAny()
523 GX2_INLINE GX2Boolean GX2TestBitFlagsAll(u32 flags, u32 bits) { return (GX2Boolean)((flags … in GX2TestBitFlagsAll()
529 GX2_INLINE u32 GX2Min(u32 a, u32 b) { return (a < b) ? a : b; } in GX2Min()
535 GX2_INLINE u32 GX2Max(u32 a, u32 b) { return (a > b) ? a : b; } in GX2Max()
541 GX2_INLINE GX2Boolean GX2IsAligned(const void *p, u32 alignment) in GX2IsAligned()
551 GX2_INLINE GX2Boolean GX2IsResolveSupported(GX2SurfaceFormat format) in GX2IsResolveSupported()
657 GX2_INLINE void GX2SetupContextState(GX2ContextState* pState) in GX2SetupContextState()