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