Lines Matching refs:PcmFormat
53 PcmFormat fmt, FuzzedDataProvider &fdp) in encode()
56 fmt == PcmFormat::kS16 ? sizeof(int16_t) : in encode()
57 fmt == PcmFormat::kS24 ? sizeof(int32_t) : in encode()
58 fmt == PcmFormat::kS24In3Le ? sizeof(uint8_t) * 3 : in encode()
59 fmt == PcmFormat::kF32 ? sizeof(float) : 0; in encode()
89 PcmFormat fmt = fdp.PickValueInArray( in LLVMFuzzerTestOneInput()
90 { PcmFormat::kS16, PcmFormat::kS24, in LLVMFuzzerTestOneInput()
91 PcmFormat::kS24In3Le, PcmFormat::kF32 }); in LLVMFuzzerTestOneInput()
98 case PcmFormat::kS16: in LLVMFuzzerTestOneInput()
101 case PcmFormat::kS24: { in LLVMFuzzerTestOneInput()
107 case PcmFormat::kF32: { in LLVMFuzzerTestOneInput()
113 case PcmFormat::kS24In3Le: in LLVMFuzzerTestOneInput()