Searched defs:valueBuf (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java209 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
210 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
215 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
216 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
H A DEqualizerTest.java341 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
342 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
347 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
348 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
H A DPresetReverbTest.java235 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
236 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
241 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
242 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
H A DVirtualizerTest.java206 private int byteArrayToInt(byte[] valueBuf, int offset) { argument
207 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
212 private short byteArrayToShort(byte[] valueBuf, int offset) { argument
213 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioEffectTest.java1493 protected int byteArrayToInt(byte[] valueBuf) { argument
1494 return byteArrayToInt(valueBuf, 0);
1498 protected int byteArrayToInt(byte[] valueBuf, int offset) { argument
1499 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
1512 protected short byteArrayToShort(byte[] valueBuf) { argument
1513 return byteArrayToShort(valueBuf, 0);
1516 protected short byteArrayToShort(byte[] valueBuf, int offset) { argument
1517 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp413 int32_t *valueBuf = (int32_t *)value; local
433 if (track.mainBuffer != valueBuf) {
434 track.mainBuffer = valueBuf;
435 ALOGV("setParameter(TRACK, MAIN_BUFFER, %p)", valueBuf);
440 if (track.auxBuffer != valueBuf) {
441 track.auxBuffer = valueBuf;
442 ALOGV("setParameter(TRACK, AUX_BUFFER, %p)", valueBuf);
/frameworks/base/media/java/android/media/audiofx/
H A DAudioEffect.java1262 public int byteArrayToInt(byte[] valueBuf) { argument
1263 return byteArrayToInt(valueBuf, 0);
1270 public int byteArrayToInt(byte[] valueBuf, int offset) { argument
1271 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
1290 public short byteArrayToShort(byte[] valueBuf) { argument
1291 return byteArrayToShort(valueBuf, 0);
1297 public short byteArrayToShort(byte[] valueBuf, int offset) { argument
1298 ByteBuffer converter = ByteBuffer.wrap(valueBuf);

Completed in 69 milliseconds