Home
last modified time | relevance | path

Searched refs:Sint32 (Results 1 – 25 of 43) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/sdl/src/audio/
DSDL_audiotypecvt.c182 Sint32 *dst; in SDL_Convert_U8_to_S32LSB()
189 dst = ((Sint32 *) (cvt->buf + cvt->len_cvt * 4)) - 1; in SDL_Convert_U8_to_S32LSB()
191 const Sint32 val = (((Sint32) ((*src) ^ 0x80)) << 24); in SDL_Convert_U8_to_S32LSB()
192 *dst = ((Sint32) SDL_SwapLE32(val)); in SDL_Convert_U8_to_S32LSB()
206 Sint32 *dst; in SDL_Convert_U8_to_S32MSB()
213 dst = ((Sint32 *) (cvt->buf + cvt->len_cvt * 4)) - 1; in SDL_Convert_U8_to_S32MSB()
215 const Sint32 val = (((Sint32) ((*src) ^ 0x80)) << 24); in SDL_Convert_U8_to_S32MSB()
216 *dst = ((Sint32) SDL_SwapBE32(val)); in SDL_Convert_U8_to_S32MSB()
397 Sint32 *dst; in SDL_Convert_S8_to_S32LSB()
404 dst = ((Sint32 *) (cvt->buf + cvt->len_cvt * 4)) - 1; in SDL_Convert_S8_to_S32LSB()
[all …]
DSDL_wave.c84 static Sint32
88 const Sint32 max_audioval = ((1 << (16 - 1)) - 1); in MS_ADPCM_nibble()
89 const Sint32 min_audioval = -(1 << (16 - 1)); in MS_ADPCM_nibble()
90 const Sint32 adaptive[] = { in MS_ADPCM_nibble()
94 Sint32 new_sample, delta; in MS_ADPCM_nibble()
108 delta = ((Sint32) state->iDelta * adaptive[nybble]) / 256; in MS_ADPCM_nibble()
123 Sint32 encoded_len, samplesleft; in MS_ADPCM_decode()
127 Sint32 new_sample; in MS_ADPCM_decode()
220 Sint32 sample;
253 static Sint32
[all …]
DSDL_mixer.c264 src1 = (Sint64) ((Sint32) SDL_SwapLE32(*src32)); in SDL_MixAudioFormat()
267 src2 = (Sint64) ((Sint32) SDL_SwapLE32(*dst32)); in SDL_MixAudioFormat()
274 *(dst32++) = SDL_SwapLE32((Uint32) ((Sint32) dst_sample)); in SDL_MixAudioFormat()
290 src1 = (Sint64) ((Sint32) SDL_SwapBE32(*src32)); in SDL_MixAudioFormat()
293 src2 = (Sint64) ((Sint32) SDL_SwapBE32(*dst32)); in SDL_MixAudioFormat()
300 *(dst32++) = SDL_SwapBE32((Uint32) ((Sint32) dst_sample)); in SDL_MixAudioFormat()
DSDL_audiocvt.c37 Sint32 sample; in SDL_ConvertMono()
146 (((Sint64) (Sint32) SDL_SwapBE32(src[0])) + in SDL_ConvertMono()
147 ((Sint64) (Sint32) SDL_SwapBE32(src[1]))); in SDL_ConvertMono()
148 *(dst++) = SDL_SwapBE32((Uint32) ((Sint32) (added / 2))); in SDL_ConvertMono()
153 (((Sint64) (Sint32) SDL_SwapLE32(src[0])) + in SDL_ConvertMono()
154 ((Sint64) (Sint32) SDL_SwapLE32(src[1]))); in SDL_ConvertMono()
155 *(dst++) = SDL_SwapLE32((Uint32) ((Sint32) (added / 2))); in SDL_ConvertMono()
505 Sint32 lf, rf, ce; in SDL_ConvertSurround()
513 lf = (Sint32) SDL_SwapBE32(src[0]); in SDL_ConvertSurround()
514 rf = (Sint32) SDL_SwapBE32(src[1]); in SDL_ConvertSurround()
[all …]
/third_party/flutter/skia/third_party/externals/sdl/include/
DSDL_test_fuzzer.h101 Sint32 SDLTest_RandomSint32();
294 Sint32 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain);
329 Sint32 SDLTest_RandomIntegerInRange(Sint32 min, Sint32 max);
DSDL_events.h183 Sint32 data1; /**< event dependent data */
184 Sint32 data2; /**< event dependent data */
212 Sint32 start; /**< The start cursor of selected editing text */
213 Sint32 length; /**< The length of selected editing text */
239 Sint32 x; /**< X coordinate, relative to window */
240 Sint32 y; /**< Y coordinate, relative to window */
241 Sint32 xrel; /**< The relative motion in the X direction */
242 Sint32 yrel; /**< The relative motion in the Y direction */
258 Sint32 x; /**< X coordinate, relative to window */
259 Sint32 y; /**< Y coordinate, relative to window */
[all …]
DSDL_timer.h56 #define SDL_TICKS_PASSED(A, B) ((Sint32)((B) - (A)) <= 0)
DSDL_joystick.h72 typedef Sint32 SDL_JoystickID;
/third_party/flutter/skia/third_party/externals/sdl/src/test/
DSDL_test_fuzzer.c109 Sint32
114 return (Sint32) SDLTest_RandomInt(&rndContext); in SDLTest_RandomSint32()
155 Sint32
156 SDLTest_RandomIntegerInRange(Sint32 pMin, Sint32 pMax) in SDLTest_RandomIntegerInRange()
168 return (Sint32)min; in SDLTest_RandomIntegerInRange()
174 return (Sint32)((number % ((max + 1) - min)) + min); in SDLTest_RandomIntegerInRange()
417 Sint32
418 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain) in SDLTest_RandomSint32BoundaryValue()
428 return (Sint32)SDLTest_GenerateSignedBoundaryValues(minValue, maxValue, in SDLTest_RandomSint32BoundaryValue()
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_sdltest.c820 Sint32 long_min = LONG_MIN; in sdltest_randomBoundaryNumberSint32()
821 Sint32 long_max = LONG_MAX; in sdltest_randomBoundaryNumberSint32()
823 Sint32 long_min = INT_MIN; in sdltest_randomBoundaryNumberSint32()
824 Sint32 long_max = INT_MAX; in sdltest_randomBoundaryNumberSint32()
1043 Sint32 min, max; in sdltest_randomIntegerInRange()
1044 Sint32 result; in sdltest_randomIntegerInRange()
1046 Sint32 long_min = LONG_MIN; in sdltest_randomIntegerInRange()
1047 Sint32 long_max = LONG_MAX; in sdltest_randomIntegerInRange()
1049 Sint32 long_min = INT_MIN; in sdltest_randomIntegerInRange()
1050 Sint32 long_max = INT_MAX; in sdltest_randomIntegerInRange()
[all …]
Dtestime.c318 static Sint32 unifont_draw_glyph(Uint32 codepoint, int rendererID, SDL_Rect *dstrect) in unifont_draw_glyph()
502Sint32 advance = unifont_draw_glyph(codepoint, rendererID, &dstrect) * UNIFONT_DRAW_SCALE; in _Redraw()
579Sint32 advance = unifont_draw_glyph(codepoint, rendererID, &dstrect) * UNIFONT_DRAW_SCALE; in _Redraw()
/third_party/flutter/skia/third_party/externals/sdl/src/video/
DSDL_bmp.c116 Sint32 biWidth = 0; in SDL_LoadBMP_RW()
117 Sint32 biHeight = 0; in SDL_LoadBMP_RW()
478 Sint32 biWidth; in SDL_SaveBMP_RW()
479 Sint32 biHeight; in SDL_SaveBMP_RW()
484 Sint32 biXPelsPerMeter; in SDL_SaveBMP_RW()
485 Sint32 biYPelsPerMeter; in SDL_SaveBMP_RW()
495 Sint32 bV4Endpoints[3 * 3] = {0}; in SDL_SaveBMP_RW()
/third_party/flutter/skia/third_party/externals/sdl/src/joystick/bsd/
DSDL_sysjoystick.c267 hatval_to_sdl(Sint32 hatval) in hatval_to_sdl()
481 Sint32 v;
501 v = (Sint32) x;
518 v = (Sint32) y;
558 v = (Sint32) hid_get_data(REP_BUF_DATA(rep), &hitem);
568 v = (Sint32) hid_get_data(REP_BUF_DATA(rep), &hitem);
576 v = (Sint32) hid_get_data(REP_BUF_DATA(rep), &hitem);
/third_party/flutter/skia/third_party/externals/sdl/src/dynapi/
DSDL_dynapi.c168 typedef Sint32 (SDLCALL *SDL_DYNAPI_ENTRYFN)(Uint32 apiver, void *table, Uint32 tablesize);
169 extern DECLSPEC Sint32 SDLCALL SDL_DYNAPI_entry(Uint32, void *, Uint32);
171 Sint32
/third_party/flutter/skia/third_party/externals/sdl/src/audio/sun/
DSDL_sunaudio.h40 Sint32 written; /* The number of samples written */
DSDL_sunaudio.c86 Sint32 left; in SUNAUDIO_WaitDevice()
91 Sint32 sleepy; in SUNAUDIO_WaitDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/audio/esd/
DSDL_esdaudio.c120 Sint32 ticks; in ESD_WaitDevice()
137 ticks = ((Sint32) (this->hidden->next_frame - SDL_GetTicks())) - FUDGE_TICKS; in ESD_WaitDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/audio/arts/
DSDL_artsaudio.c142 Sint32 ticks; in ARTS_WaitDevice()
160 ((Sint32) (this->hidden->next_frame - SDL_GetTicks())) - FUDGE_TICKS; in ARTS_WaitDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/timer/
DSDL_timer.c86 if ((Sint32)(timer->scheduled-curr->scheduled) < 0) { in SDL_AddTimerInternal()
154 if ((Sint32)(tick-current->scheduled) < 0) { in SDL_TimerThread()
/third_party/flutter/skia/third_party/externals/sdl/src/audio/paudio/
DSDL_paudio.c133 Sint32 ticks; in PAUDIO_WaitDevice()
135 ticks = ((Sint32) (this->hidden->next_frame - SDL_GetTicks())) - FUDGE_TICKS; in PAUDIO_WaitDevice()
/third_party/flutter/skia/third_party/externals/sdl/src/audio/bsd/
DSDL_bsdaudio.c130 Sint32 ticks; in BSDAUDIO_WaitDevice()
132 ticks = ((Sint32) (this->hidden->next_frame - SDL_GetTicks())) - FUDGE_TICKS; in BSDAUDIO_WaitDevice()
/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DVertexFormatTests.cpp150 case wgpu::VertexFormat::Sint32: in BytesPerComponents()
164 case wgpu::VertexFormat::Sint32: in ComponentCount()
781 TEST_P(VertexFormatTest, Sint32) { in TEST_P() argument
786 DoVertexFormatTest(wgpu::VertexFormat::Sint32, vertexData, vertexData); in TEST_P()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DVertexFormat.cpp55 {wgpu::VertexFormat::Sint32, 4, 1, 4, VertexFormatBaseType::Sint},
/third_party/flutter/skia/third_party/externals/sdl/src/video/nacl/
DSDL_naclopengles.c78 Sint32 attribs[64]; in NACL_GLES_CreateContext()
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/
DSDL_DirectFB_shape.c85 Sint32 pitch; in DirectFB_SetWindowShape()

12