HomeSort by relevance Sort by last modified time
    Searched refs:valueBuf (Results 1 - 10 of 10) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/
Utils.java 72 public static int byteArrayToInt(byte[] valueBuf) {
73 return byteArrayToInt(valueBuf, 0);
76 public static short byteArrayToShort(byte[] valueBuf) {
77 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
82 public static int byteArrayToInt(byte[] valueBuf, int offset) {
83 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
DirectiveList.java 331 StringBuffer valueBuf = new StringBuffer(m_curPos - m_scanStart);
338 valueBuf.setCharAt(valueIndex, m_directives.charAt(inputIndex));
342 value = new String(valueBuf);
  /external/smack/src/com/novell/sasl/client/
DirectiveList.java 331 StringBuffer valueBuf = new StringBuffer(m_curPos - m_scanStart);
338 valueBuf.setCharAt(valueIndex, m_directives.charAt(inputIndex));
342 value = new String(valueBuf);
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
BassBoostTest.java 209 private int byteArrayToInt(byte[] valueBuf, int offset) {
210 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
215 private short byteArrayToShort(byte[] valueBuf, int offset) {
216 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
VirtualizerTest.java 206 private int byteArrayToInt(byte[] valueBuf, int offset) {
207 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
212 private short byteArrayToShort(byte[] valueBuf, int offset) {
213 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
PresetReverbTest.java 235 private int byteArrayToInt(byte[] valueBuf, int offset) {
236 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
241 private short byteArrayToShort(byte[] valueBuf, int offset) {
242 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
EqualizerTest.java 341 private int byteArrayToInt(byte[] valueBuf, int offset) {
342 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
347 private short byteArrayToShort(byte[] valueBuf, int offset) {
348 ByteBuffer converter = ByteBuffer.wrap(valueBuf);
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java     [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaAudioEffectTest.java     [all...]
  /frameworks/av/services/audioflinger/
AudioMixer.cpp 425 int32_t *valueBuf = (int32_t *)value;
445 if (track.mainBuffer != valueBuf) {
446 track.mainBuffer = valueBuf;
447 ALOGV("setParameter(TRACK, MAIN_BUFFER, %p)", valueBuf);
452 if (track.auxBuffer != valueBuf) {
453 track.auxBuffer = valueBuf;
454 ALOGV("setParameter(TRACK, AUX_BUFFER, %p)", valueBuf);
    [all...]

Completed in 219 milliseconds