Home
last modified time | relevance | path

Searched refs:EAS_INLINE (Results 1 – 8 of 8) sorted by relevance

/external/sonivox/arm-wt-22k/lib_src/
Deas_ctype.h35 EAS_INLINE EAS_I8 IsDigit (EAS_I8 c) { return ((c >= '0') && (c <= '9')); } in IsDigit()
36 EAS_INLINE EAS_I8 IsSpace (EAS_I8 c) { return (((c >= 9) && (c <= 13)) || (c == ' ')); } in IsSpace()
37 EAS_INLINE EAS_I8 ToUpper (EAS_I8 c) { if ((c >= 'a') && (c <= 'z')) return c & ~0x20; else return … in ToUpper()
38 EAS_INLINE EAS_I8 ToLower (EAS_I8 c) { if ((c >= 'A') && (c <= 'Z')) return c |= 0x20; else return … in ToLower()
Djet.c90 EAS_INLINE EAS_U8 JET_IncQueueIndex (EAS_U8 index, EAS_U8 queueSize) in JET_IncQueueIndex()
103 EAS_INLINE void JET_WriteQueue (EAS_U32 *pEventQueue, EAS_U8 *pWriteIndex, EAS_U8 readIndex, EAS_U8… in JET_WriteQueue()
126 EAS_INLINE EAS_BOOL JET_ReadQueue (EAS_U32 *pEventQueue, EAS_U8 *pReadIndex, EAS_U8 writeIndex, EAS… in JET_ReadQueue()
145 EAS_INLINE EAS_INT JET_NextSegment (EAS_INT seg_num) in JET_NextSegment()
234 EAS_INLINE EAS_INT JET_CloseSegment (EAS_DATA_HANDLE easHandle, EAS_INT queueNum) in JET_CloseSegment()
Deas_voicemgt.c125 EAS_INLINE const S_REGION* GetRegionPtr (S_SYNTH *pSynth, EAS_U16 regionIndex) in GetRegionPtr()
144 EAS_INLINE const S_SYNTH_INTERFACE* GetSynthPtr (EAS_INT voiceNum) in GetSynthPtr()
156 EAS_INLINE EAS_INT GetAdjustedVoiceNum (EAS_INT voiceNum) in GetAdjustedVoiceNum()
165 EAS_INLINE EAS_U8 VSynthToChannel (S_SYNTH *pSynth, EAS_U8 channel) in VSynthToChannel()
Deas_tonecontrol.c86 EAS_INLINE void TC_CalcTimeBase (S_TC_DATA *pData) in TC_CalcTimeBase()
Deas_rtttl.c86 EAS_INLINE void RTTTL_PutBackChar (S_RTTTL_DATA *pData, EAS_I8 value) { pData->dataByte = value; } in RTTTL_PutBackChar()
Deas_imelody.c117 EAS_INLINE void PutBackChar (S_IMELODY_DATA *pData) { if (pData->index) pData->index--; } in PutBackChar()
Deas_mdls.c405 EAS_INLINE void *PtrOfs (void *p, EAS_I32 offset) in PtrOfs()
/external/sonivox/arm-wt-22k/host_src/
Deas_types.h170 #ifndef EAS_INLINE
172 #define EAS_INLINE __inline__ macro
174 #define EAS_INLINE inline static macro
176 #define EAS_INLINE __inline macro