HomeSort by relevance Sort by last modified time
    Searched defs:smp (Results 1 - 8 of 8) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/address/
AddressFactoryImpl.java 97 StringMsgParser smp = new StringMsgParser(); local
98 SipUri sipUri = smp.parseSIPUrl(uri);
130 StringMsgParser smp = new StringMsgParser(); local
133 SipUri sipUri = smp.parseSIPUrl(uriString.toString());
153 StringMsgParser smp = new StringMsgParser(); local
154 TelURLImpl timp = (TelURLImpl) smp.parseUrl(telUrl);
193 StringMsgParser smp = new StringMsgParser(); local
194 return smp.parseAddress(address);
  /external/nist-sip/java/gov/nist/javax/sip/message/
MessageFactoryImpl.java 699 StringMsgParser smp = new StringMsgParser(); local
700 smp.setStrict(this.strict);
733 smp.setParseExceptionListener(parseExceptionListener);
735 SIPMessage sipMessage = smp.parseSIPMessage(requestString);
756 StringMsgParser smp = new StringMsgParser();
758 SIPMessage sipMessage = smp.parseSIPMessage(responseString);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 270 StringMsgParser smp = new StringMsgParser(sipMessageListener); local
271 smp.readBody = false;
278 sipMessage = smp.parseSIPMessage(inputBuffer.toString());
StringMsgParser.java 680 StringMsgParser smp = new StringMsgParser(); local
682 SIPMessage sipMessage = smp
  /frameworks/av/media/libeffects/visualizer/
EffectVisualizer.cpp 299 int32_t smp = inBuffer->s16[i]; local
300 if (smp < 0) smp = -smp - 1; // take care to keep the max negative in range
301 int32_t clz = __builtin_clz(smp);
328 int32_t smp = inBuffer->s16[2 * inIdx] + inBuffer->s16[2 * inIdx + 1]; local
329 smp = smp >> shift;
330 buf[captIdx] = ((uint8_t)smp)^0x80;
  /frameworks/av/media/libeffects/testlibs/
EffectReverb.c 236 int16_t smp; local
247 smp = *pSrc++;
248 *pDst++ = smp;
249 *pDst++ = smp;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
HeaderFactoryImpl.java 1166 StringMsgParser smp = new StringMsgParser(); local
1227 StringMsgParser smp = new StringMsgParser(); local
    [all...]
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerActivity.java 668 short smp = (short)((buf[cnt - 1] << 8) + (buf[cnt - 2] & 0xFF)); local
669 sumx += smp;
670 sumxx += smp*smp;
    [all...]

Completed in 875 milliseconds