Searched refs:v_length (Results 1 – 1 of 1) sorted by relevance
/external/webrtc/modules/audio_processing/logging/ |
D | apm_data_dumper.h | 91 void DumpRaw(const char* name, size_t v_length, const double* v) { in DumpRaw() argument 95 fwrite(v, sizeof(v[0]), v_length, file); in DumpRaw() 117 void DumpRaw(const char* name, size_t v_length, const float* v) { in DumpRaw() argument 121 fwrite(v, sizeof(v[0]), v_length, file); in DumpRaw() 142 void DumpRaw(const char* name, size_t v_length, const bool* v) { in DumpRaw() argument 146 for (size_t k = 0; k < v_length; ++k) { in DumpRaw() 171 void DumpRaw(const char* name, size_t v_length, const int16_t* v) { in DumpRaw() argument 175 fwrite(v, sizeof(v[0]), v_length, file); in DumpRaw() 197 void DumpRaw(const char* name, size_t v_length, const int32_t* v) { in DumpRaw() argument 201 fwrite(v, sizeof(v[0]), v_length, file); in DumpRaw() [all …]
|