Home
last modified time | relevance | path

Searched refs:dataLen (Results 1 – 4 of 4) sorted by relevance

/cts/suite/audio_quality/lib/src/
DSignalProcessingImpl.cpp131 int dataLen = (*buffer)->getSize(); in run() local
132 mBuffer.write<int32_t>(dataLen); in run()
137 if (!send((*buffer)->getData(), dataLen)) { in run()
141 LOGD("%d-th param buffer %d, stereo:%d", i, dataLen, (*buffer)->isStereo()); in run()
186 int32_t dataLen; in run() local
187 if (!read((char*)&dataLen, sizeof(dataLen))) { in run()
193 *buffer = new Buffer(dataLen, dataLen, (type == EAudioStereo) ? true: false); in run()
208 if (dataLen > (int)(*buffer)->getSize()) { in run()
209 LOGE("%d-th output data too long %d while buffer size %d", i, dataLen, in run()
213 if (!read((*buffer)->getData(), dataLen)) { in run()
[all …]
/cts/suite/audio_quality/test_description/
Dprocessing_main.py88 dataLen = self.readI32()
89 data = self.readI16Array(dataLen / 2)
95 print i, "-th input received audio data ", dataLen, cmd
/cts/tests/tests/identity/src/android/security/identity/cts/
DUtil.java466 int dataLen = (data != null ? data.length : 0); in coseSign1Sign() local
468 if (dataLen > 0 && detachedContentLen > 0) { in coseSign1Sign()
564 int dataLen = payload.length; in coseSign1CheckSignature() local
566 if (dataLen > 0 && detachedContentLen > 0) { in coseSign1CheckSignature()
708 int dataLen = (data != null ? data.length : 0); in coseMac0() local
710 if (dataLen > 0 && detachedContentLen > 0) { in coseMac0()
/cts/tests/tests/nativemidi/jni/
Dnative-lib.cpp241 int dataLen = mReceivedMsgs[msgIndex].numDataBytes; in compareInsAndOuts() local
242 for (int dataIndex = 0; dataIndex < dataLen; dataIndex++) { in compareInsAndOuts()