5 writes to cbSize
System.Speech (5)
AudioFormat\SpeechAudioFormatInfo.cs (1)
151
wfx.
cbSize
= (short)FormatSpecificData().Length;
Internal\SapiInterop\SpAudioStreamWrapper.cs (1)
30
wfx.
cbSize
= (short)audioFormat.FormatSpecificData().Length;
Internal\Synthesis\AudioBase.cs (3)
104
wfx.
cbSize
= 0;
389
wfx.
cbSize
= Marshal.ReadInt16(ptr, 16);
441
wfx.
cbSize
= 0;
9 references to cbSize
System.Speech (9)
AudioFormat\SpeechAudioFormatInfo.cs (3)
154
if (wfx.
cbSize
> 0)
156
byte[] wfxTemp = new byte[abWfx.Length + wfx.
cbSize
];
158
Array.Copy(FormatSpecificData(), 0, wfxTemp, abWfx.Length, wfx.
cbSize
);
Internal\SapiInterop\SpAudioStreamWrapper.cs (3)
33
if (wfx.
cbSize
== 0)
35
byte[] wfxTemp = new byte[_wfx.Length + wfx.
cbSize
];
37
Array.Copy(audioFormat.FormatSpecificData(), 0, wfxTemp, _wfx.Length, wfx.
cbSize
);
Internal\Synthesis\AudioBase.cs (3)
391
if (wfx.
cbSize
!= 0)
412
System.Diagnostics.Debug.Assert(
cbSize
== 0);
450
return 18 +
cbSize
;