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

  /external/webrtc/webrtc/voice_engine/
dtmf_inband.cc 362 int32_t tempVal;
377 tempVal = (int32_t)(kDtmfAmpLow * tempValLow) +
381 tempVal=(tempVal+16384)>>15;
384 signal[i]=(int16_t)((tempVal*Dtmf_dBm0kHz[volume]+8192)>>14);
  /hardware/ti/omap4-aah/camera/
Encoder_libjpeg.cpp 271 char * tempVal = NULL;
275 tempVal = (char*) malloc( sizeof(char) * (len + 1));
278 if (tempVal != NULL) {
286 memset(tempVal, '\0', len + 1);
287 strncpy(tempVal, str, len);
288 temp = strtok_r(tempVal, ".", &ctx);
309 free(tempVal);
  /hardware/ti/omap4xxx/camera/
Encoder_libjpeg.cpp 214 char * tempVal = NULL;
218 tempVal = (char*) malloc( sizeof(char) * (len + 1));
221 if (tempVal != NULL) {
229 memset(tempVal, '\0', len + 1);
230 strncpy(tempVal, str, len);
231 temp = strtok_r(tempVal, ".", &ctx);
252 free(tempVal);
  /device/google/contexthub/firmware/inc/platform/stm32f4xx/cmsis/
arm_math.h 547 uint32_t out, tempVal;
574 tempVal = (q31_t) (((q63_t) in * out) >> 31u);
575 tempVal = 0x7FFFFFFF - tempVal;
577 //out = (q31_t) (((q63_t) out * tempVal) >> 30u);
578 out = (q31_t) clip_q63_to_q31(((q63_t) out * tempVal) >> 30u);
598 uint32_t out = 0, tempVal = 0;
625 tempVal = (q15_t) (((q31_t) in * out) >> 15);
626 tempVal = 0x7FFF - tempVal;
    [all...]

Completed in 202 milliseconds