/third_party/flutter/skia/third_party/externals/sdl/src/audio/ |
D | SDL_audiotypecvt.c | 182 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 …]
|
D | SDL_wave.c | 84 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 …]
|
D | SDL_mixer.c | 264 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()
|
D | SDL_audiocvt.c | 37 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/ |
D | SDL_test_fuzzer.h | 101 Sint32 SDLTest_RandomSint32(); 294 Sint32 SDLTest_RandomSint32BoundaryValue(Sint32 boundary1, Sint32 boundary2, SDL_bool validDomain); 329 Sint32 SDLTest_RandomIntegerInRange(Sint32 min, Sint32 max);
|
D | SDL_events.h | 183 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 …]
|
D | SDL_timer.h | 56 #define SDL_TICKS_PASSED(A, B) ((Sint32)((B) - (A)) <= 0)
|
D | SDL_joystick.h | 72 typedef Sint32 SDL_JoystickID;
|
/third_party/flutter/skia/third_party/externals/sdl/src/test/ |
D | SDL_test_fuzzer.c | 109 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/ |
D | testautomation_sdltest.c | 820 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 …]
|
D | testime.c | 318 static Sint32 unifont_draw_glyph(Uint32 codepoint, int rendererID, SDL_Rect *dstrect) in unifont_draw_glyph() 502 … Sint32 advance = unifont_draw_glyph(codepoint, rendererID, &dstrect) * UNIFONT_DRAW_SCALE; in _Redraw() 579 … Sint32 advance = unifont_draw_glyph(codepoint, rendererID, &dstrect) * UNIFONT_DRAW_SCALE; in _Redraw()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/ |
D | SDL_bmp.c | 116 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/ |
D | SDL_sysjoystick.c | 267 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/ |
D | SDL_dynapi.c | 168 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/ |
D | SDL_sunaudio.h | 40 Sint32 written; /* The number of samples written */
|
D | SDL_sunaudio.c | 86 Sint32 left; in SUNAUDIO_WaitDevice() 91 Sint32 sleepy; in SUNAUDIO_WaitDevice()
|
/third_party/flutter/skia/third_party/externals/sdl/src/audio/esd/ |
D | SDL_esdaudio.c | 120 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/ |
D | SDL_artsaudio.c | 142 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/ |
D | SDL_timer.c | 86 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/ |
D | SDL_paudio.c | 133 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/ |
D | SDL_bsdaudio.c | 130 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/ |
D | VertexFormatTests.cpp | 150 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/ |
D | VertexFormat.cpp | 55 {wgpu::VertexFormat::Sint32, 4, 1, 4, VertexFormatBaseType::Sint},
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/nacl/ |
D | SDL_naclopengles.c | 78 Sint32 attribs[64]; in NACL_GLES_CreateContext()
|
/third_party/flutter/skia/third_party/externals/sdl/src/video/directfb/ |
D | SDL_DirectFB_shape.c | 85 Sint32 pitch; in DirectFB_SetWindowShape()
|