Home
last modified time | relevance | path

Searched refs:wfmt (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/audio/directsound/
DSDL_directsound.c389 CreateSecondary(_THIS, const DWORD bufsize, WAVEFORMATEX *wfmt) in CreateSecondary() argument
404 format.lpwfxFormat = wfmt; in CreateSecondary()
409 IDirectSoundBuffer_SetFormat(*sndbuf, wfmt); in CreateSecondary()
432 CreateCaptureBuffer(_THIS, const DWORD bufsize, WAVEFORMATEX *wfmt) in CreateCaptureBuffer() argument
444 format.lpwfxFormat = wfmt; in CreateCaptureBuffer()
530 WAVEFORMATEX wfmt; in DSOUND_OpenDevice() local
531 SDL_zero(wfmt); in DSOUND_OpenDevice()
533 wfmt.wFormatTag = WAVE_FORMAT_IEEE_FLOAT; in DSOUND_OpenDevice()
535 wfmt.wFormatTag = WAVE_FORMAT_PCM; in DSOUND_OpenDevice()
538 wfmt.wBitsPerSample = SDL_AUDIO_BITSIZE(this->spec.format); in DSOUND_OpenDevice()
[all …]
/third_party/boost/libs/format/test/
Dformat_test_wstring.cpp30 wformat wfmt(L"%1$.1f"); in main() local
31 std::wstring ws = str(wfmt % 123.45f); in main()
/third_party/python/Objects/
Dmemoryobject.c2835 char vfmt, wfmt; in memory_richcompare() local
2872 if (get_native_fmtchar(&wfmt, ww->format) < 0) in memory_richcompare()
2873 wfmt = '_'; in memory_richcompare()
2874 if (vfmt == '_' || wfmt == '_' || vfmt != wfmt) { in memory_richcompare()