OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:wfx
(Results
1 - 5
of
5
) sorted by null
/external/qemu/audio/
audio_win_int.c
14
int waveformat_from_audio_settings (WAVEFORMATEX *
wfx
,
17
memset (
wfx
, 0, sizeof (*
wfx
));
19
wfx
->wFormatTag = WAVE_FORMAT_PCM;
20
wfx
->nChannels = as->nchannels;
21
wfx
->nSamplesPerSec = as->freq;
22
wfx
->nAvgBytesPerSec = as->freq << (as->nchannels == 2);
23
wfx
->nBlockAlign = 1 << (as->nchannels == 2);
24
wfx
->cbSize = 0;
29
wfx
->wBitsPerSample = 8
[
all
...]
audio_win_int.h
4
int waveformat_from_audio_settings (WAVEFORMATEX *
wfx
,
7
int waveformat_to_audio_settings (WAVEFORMATEX *
wfx
,
dsound_template.h
185
WAVEFORMATEX
wfx
;
local
204
err = waveformat_from_audio_settings (&
wfx
, as);
211
bd.lpwfxFormat = &
wfx
;
236
hr = glue (IFACE, _GetFormat) (ds->FIELD, &
wfx
, sizeof (
wfx
), NULL);
244
print_wave_format (&
wfx
);
256
err = waveformat_to_audio_settings (&
wfx
, &obt_as);
dsoundaudio.c
272
static void print_wave_format (WAVEFORMATEX *
wfx
)
274
dolog ("tag = %d\n",
wfx
->wFormatTag);
275
dolog ("nChannels = %d\n",
wfx
->nChannels);
276
dolog ("nSamplesPerSec = %ld\n",
wfx
->nSamplesPerSec);
277
dolog ("nAvgBytesPerSec = %ld\n",
wfx
->nAvgBytesPerSec);
278
dolog ("nBlockAlign = %d\n",
wfx
->nBlockAlign);
279
dolog ("wBitsPerSample = %d\n",
wfx
->wBitsPerSample);
280
dolog ("cbSize = %d\n",
wfx
->cbSize);
435
WAVEFORMATEX
wfx
;
local
456
err = waveformat_from_audio_settings (&
wfx
, &conf.settings)
[
all
...]
/external/v8/test/mjsunit/harmony/
proxies-example-membrane.js
244
var
wfx
= w.f({a: 6});
variable
261
assertThrows(function() {
wfx
.a }, Error);
279
assertEquals(6,
wfx
.a);
489
var
wfx
= w.f({a: 6})
508
assertEquals(6,
wfx
.a)
Completed in 247 milliseconds