Searched refs:Sint8 (Results 1 – 6 of 6) sorted by relevance
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_test_fuzzer.h | 78 Sint8 SDLTest_RandomSint8(void); 251 Sint8 SDLTest_RandomSint8BoundaryValue(Sint8 boundary1, Sint8 boundary2, SDL_bool validDomain);
|
A D | SDL_stdinc.h | 171 #define SDL_MAX_SINT8 ((Sint8)0x7F) /* 127 */ 172 #define SDL_MIN_SINT8 ((Sint8)(~0x7F)) /* -128 */ 173 typedef int8_t Sint8; typedef 317 SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1);
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_fuzzer.c | 86 Sint8 91 return (Sint8) SDLTest_RandomInt(&rndContext) & 0x000000FF; in SDLTest_RandomSint8() 402 Sint8 403 SDLTest_RandomSint8BoundaryValue(Sint8 boundary1, Sint8 boundary2, SDL_bool validDomain) in SDLTest_RandomSint8BoundaryValue() 408 return (Sint8)SDLTest_GenerateSignedBoundaryValues(minValue, maxValue, in SDLTest_RandomSint8BoundaryValue()
|
/AliOS-Things-master/components/SDL2/src/audio/ |
A D | SDL_audiotypecvt.c | 73 const Sint8 *src = ((const Sint8 *) (cvt->buf + cvt->len_cvt)) - 1; in SDL_Convert_S8_to_F32_Scalar() 168 Sint8 *dst = (Sint8 *) cvt->buf; in SDL_Convert_F32_to_S8_Scalar() 180 *dst = (Sint8)(sample * 127.0f); in SDL_Convert_F32_to_S8_Scalar() 299 const Sint8 *src = ((const Sint8 *) (cvt->buf + cvt->len_cvt)) - 1; in SDL_Convert_S8_to_F32_SSE2() 338 src = (const Sint8 *) mmsrc; in SDL_Convert_S8_to_F32_SSE2() 557 Sint8 *dst = (Sint8 *) cvt->buf; in SDL_Convert_F32_to_S8_SSE2() 591 dst = (Sint8 *) mmdst; in SDL_Convert_F32_to_S8_SSE2() 858 const Sint8 *src = ((const Sint8 *) (cvt->buf + cvt->len_cvt)) - 1; in SDL_Convert_S8_to_F32_NEON() 889 src = (const Sint8 *) mmsrc; in SDL_Convert_S8_to_F32_NEON() 1091 Sint8 *dst = (Sint8 *) cvt->buf; in SDL_Convert_F32_to_S8_NEON() [all …]
|
A D | SDL_mixer.c | 121 Sint8 *dst8, *src8; in SDL_MixAudioFormat() 122 Sint8 src_sample; in SDL_MixAudioFormat() 127 src8 = (Sint8 *) src; in SDL_MixAudioFormat() 128 dst8 = (Sint8 *) dst; in SDL_MixAudioFormat()
|
A D | SDL_wave.c | 861 IMA_ADPCM_ProcessNibble(Sint8 *cindex, Sint16 lastsample, Uint8 nybble) in IMA_ADPCM_ProcessNibble() 865 const Sint8 index_table_4b[16] = { in IMA_ADPCM_ProcessNibble() 883 Sint8 index = *cindex; in IMA_ADPCM_ProcessNibble() 945 cstate[c] = (Sint8)(step > 0x80 ? step - 0x100 : step); in IMA_ADPCM_DecodeBlockHeader() 1020 sample = IMA_ADPCM_ProcessNibble((Sint8 *)state->cstate + c, sample, nybble & 0x0f); in IMA_ADPCM_DecodeBlockData() 1043 Sint8 *cstate; in IMA_ADPCM_Decode() 1087 cstate = (Sint8 *)SDL_calloc(state.channels, sizeof(Sint8)); in IMA_ADPCM_Decode()
|
Completed in 13 milliseconds