/frameworks/base/media/java/android/media/audiofx/ |
D | AudioEffect.java | 1291 public static int byteArrayToInt(byte[] valueBuf) { in byteArrayToInt() argument 1292 return byteArrayToInt(valueBuf, 0); in byteArrayToInt() 1299 public static int byteArrayToInt(byte[] valueBuf, int offset) { in byteArrayToInt() argument 1300 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() 1319 public static short byteArrayToShort(byte[] valueBuf) { in byteArrayToShort() argument 1320 return byteArrayToShort(valueBuf, 0); in byteArrayToShort() 1326 public static short byteArrayToShort(byte[] valueBuf, int offset) { in byteArrayToShort() argument 1327 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToShort()
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
D | VirtualizerTest.java | 206 private int byteArrayToInt(byte[] valueBuf, int offset) { in byteArrayToInt() argument 207 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() 212 private short byteArrayToShort(byte[] valueBuf, int offset) { in byteArrayToShort() argument 213 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToShort()
|
D | PresetReverbTest.java | 235 private int byteArrayToInt(byte[] valueBuf, int offset) { in byteArrayToInt() argument 236 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() 241 private short byteArrayToShort(byte[] valueBuf, int offset) { in byteArrayToShort() argument 242 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToShort()
|
D | BassBoostTest.java | 209 private int byteArrayToInt(byte[] valueBuf, int offset) { in byteArrayToInt() argument 210 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() 215 private short byteArrayToShort(byte[] valueBuf, int offset) { in byteArrayToShort() argument 216 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToShort()
|
D | EqualizerTest.java | 341 private int byteArrayToInt(byte[] valueBuf, int offset) { in byteArrayToInt() argument 342 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() 347 private short byteArrayToShort(byte[] valueBuf, int offset) { in byteArrayToShort() argument 348 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToShort()
|
/frameworks/av/cmds/screenrecord/ |
D | Overlay.cpp | 377 char valueBuf[PROPERTY_VALUE_MAX]; in doDrawInfoPage() local 379 property_get(kPropertyNames[i], valueBuf, ""); in doDrawInfoPage() 380 if (valueBuf[0] == '\0') { in doDrawInfoPage() 383 String8 str(String8::format("%s: [%s]", kPropertyNames[i], valueBuf)); in doDrawInfoPage()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaAudioEffectTest.java | 1493 protected int byteArrayToInt(byte[] valueBuf) { in byteArrayToInt() argument 1494 return byteArrayToInt(valueBuf, 0); in byteArrayToInt() 1498 protected int byteArrayToInt(byte[] valueBuf, int offset) { in byteArrayToInt() argument 1499 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToInt() 1512 protected short byteArrayToShort(byte[] valueBuf) { in byteArrayToShort() argument 1513 return byteArrayToShort(valueBuf, 0); in byteArrayToShort() 1516 protected short byteArrayToShort(byte[] valueBuf, int offset) { in byteArrayToShort() argument 1517 ByteBuffer converter = ByteBuffer.wrap(valueBuf); in byteArrayToShort()
|
/frameworks/av/services/audioflinger/ |
D | AudioMixer.cpp | 611 int32_t *valueBuf = reinterpret_cast<int32_t*>(value); in setParameter() local 626 if (track.mainBuffer != valueBuf) { in setParameter() 627 track.mainBuffer = valueBuf; in setParameter() 628 ALOGV("setParameter(TRACK, MAIN_BUFFER, %p)", valueBuf); in setParameter() 633 if (track.auxBuffer != valueBuf) { in setParameter() 634 track.auxBuffer = valueBuf; in setParameter() 635 ALOGV("setParameter(TRACK, AUX_BUFFER, %p)", valueBuf); in setParameter()
|