HomeSort by relevance Sort by last modified time
    Searched defs:temp (Results 601 - 625 of 1947) sorted by null

<<21222324252627282930>>

  /external/sonivox/arm-fm-22k/lib_src/
eas_reverb.c 79 EAS_INT temp; local
224 temp = pPreset->m_nXfadeInterval;
226 temp = (temp * _OUTPUT_SAMPLE_RATE) >> 16;
227 pReverbData->m_nXfadeInterval = (EAS_U16) temp;
232 temp = pPreset->m_nAp0_ApOut;
234 temp = (temp * _OUTPUT_SAMPLE_RATE) >> 16;
235 pReverbData->m_sAp0.m_zApOut = (EAS_U16) (pReverbData->m_sAp0.m_zApIn + temp);
240 temp = pPreset->m_nAp1_ApOut
916 EAS_INT temp; local
    [all...]
eas_smf.c 277 EAS_U32 temp; local
329 temp = 0x7ffffff;
333 if (pSMFData->streams[i].ticks < temp)
335 temp = pSMFData->streams[i].ticks;
817 EAS_U32 temp; local
844 temp = 0;
849 temp = (temp << 8) | c;
852 pSMFData->tickConv = (EAS_U16) (((temp * 1024) / pSMFData->ppqn + 500) / 1000);
1049 EAS_U32 temp; local
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmsynth.c 225 EAS_I32 temp; local
228 temp = (EAS_I32) nLogRate << 7;
229 temp += ((EAS_I32) nKeyNumber - EG_SCALE_PIVOT_POINT) * (EAS_I32) nEGScale;
232 temp = max(temp, 0);
233 temp = min(temp, 32767);
237 return fmRateTable[temp >> 8];
401 EAS_I32 temp; local
422 temp = (EAS_I32) pChannel->pan - 64
518 EAS_I32 temp; local
627 EAS_U32 temp; local
730 EAS_I32 temp; local
806 EAS_I32 temp; local
    [all...]
eas_reverb.c 79 EAS_INT temp; local
224 temp = pPreset->m_nXfadeInterval;
226 temp = (temp * _OUTPUT_SAMPLE_RATE) >> 16;
227 pReverbData->m_nXfadeInterval = (EAS_U16) temp;
232 temp = pPreset->m_nAp0_ApOut;
234 temp = (temp * _OUTPUT_SAMPLE_RATE) >> 16;
235 pReverbData->m_sAp0.m_zApOut = (EAS_U16) (pReverbData->m_sAp0.m_zApIn + temp);
240 temp = pPreset->m_nAp1_ApOut
916 EAS_INT temp; local
    [all...]
eas_smf.c 277 EAS_U32 temp; local
329 temp = 0x7ffffff;
333 if (pSMFData->streams[i].ticks < temp)
335 temp = pSMFData->streams[i].ticks;
817 EAS_U32 temp; local
844 temp = 0;
849 temp = (temp << 8) | c;
852 pSMFData->tickConv = (EAS_U16) (((temp * 1024) / pSMFData->ppqn + 500) / 1000);
1049 EAS_U32 temp; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_reverb.c 79 EAS_INT temp; local
224 temp = pPreset->m_nXfadeInterval;
226 temp = (temp * _OUTPUT_SAMPLE_RATE) >> 16;
227 pReverbData->m_nXfadeInterval = (EAS_U16) temp;
232 temp = pPreset->m_nAp0_ApOut;
234 temp = (temp * _OUTPUT_SAMPLE_RATE) >> 16;
235 pReverbData->m_sAp0.m_zApOut = (EAS_U16) (pReverbData->m_sAp0.m_zApIn + temp);
240 temp = pPreset->m_nAp1_ApOut
916 EAS_INT temp; local
    [all...]
eas_smf.c 277 EAS_U32 temp; local
334 temp = 0x7ffffff;
338 if (pSMFData->streams[i].ticks < temp)
340 temp = pSMFData->streams[i].ticks;
822 EAS_U32 temp; local
849 temp = 0;
854 temp = (temp << 8) | c;
857 pSMFData->tickConv = (EAS_U16) (((temp * 1024) / pSMFData->ppqn + 500) / 1000);
1054 EAS_U32 temp; local
    [all...]
eas_xmf.c 117 EAS_U32 temp; local
123 if ((result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE)) != EAS_SUCCESS)
125 if (temp != XMF_IDENTIFIER)
129 if ((result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE)) != EAS_SUCCESS)
132 if (temp == XMF_VERSION_2_00)
135 result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE);
139 if (temp != XMF_FILE_TYPE)
142 "XMF file type was 0x%08x, expected 0x%08x\n", temp, XMF_FILE_TYPE); */ }
147 result = EAS_HWGetDWord(pEASData->hwInstData, fileHandle, &temp, EAS_TRUE);
151 if (temp != XMF_SPEC_LEVEL
    [all...]
  /external/srec/portable/src/
LCHAR.c 133 unsigned int temp; local
163 CHK(rc, lstrtoui(text, &temp, 10));
164 *result = (temp != 0);
173 LCHAR temp; local
185 temp = *end;
190 *end = temp;
194 *end = temp;
268 LCHAR temp; /* temp char */ local
302 temp = *p
    [all...]
PANSIFileImpl.c 214 void* temp; local
223 temp = MALLOC(*count * size, MTAG);
224 if (temp == NULL)
230 memcpy(temp, buffer, *count * size);
232 swap_byte_order(temp, *count, size);
235 temp = buffer;
237 *count = fwrite(temp, size, *count, impl->value);
240 FREE(temp);
241 temp = NULL;
391 LCHAR* temp; local
    [all...]
PFileSystem.c 541 LCHAR temp[P_PATH_MAX]; local
545 LSTRCPY(temp, path);
546 lstrtrim(temp);
547 CHKLOG(rc, PFileSystemCanonicalSlashes(temp));
548 *isDirectory = temp[LSTRLEN(temp)-1] == '/';
  /external/srec/srec/AcousticModels/src/
AcousticModelsImpl.c 482 LCHAR* temp; local
485 rc = HashMapGet(impl->parameters, key, (void **)&temp);
489 if (LSTRCMP(temp, value) == 0)
492 FREE(temp);
501 temp = MALLOC(sizeof(LCHAR) * (LSTRLEN(value) + 1), MTAG);
502 if (temp == NULL)
508 CHKLOG(rc, impl->parameters->put(impl->parameters, key, temp));
511 FREE(temp);
518 LCHAR* temp; local
521 rc = HashMapGet(impl->parameters, key, (void **)&temp);
    [all...]
  /external/srec/srec/cfront/
spec_anl.c 151 bigdata temp; local
178 temp = SHIFT_UP((bigdata)wav_data[i], COEFDATA_SHIFT);
179 data[i] = (fftdata)(SHIFT_DOWN(temp - (*last_sample), COEFDATA_SHIFT));
375 int ii, jj, temp; local
380 temp = list[ii];
381 if (temp < list[jj])
384 list[jj] = temp;
387 if (temp == list[jj])
  /external/srtp/crypto/cipher/
aes_icm.c 303 uint32_t temp; local
305 temp = ntohl(c->counter.v32[3]);
306 c->counter.v32[3] = htonl(++temp);
  /frameworks/av/media/libmedia/
JetPlayer.cpp 159 int temp; local
230 if ((temp = mAudioTrack->write(mAudioBuffer, num_output)) < 0) {
231 ALOGE("JetPlayer::render(): Error in writing:%d",temp);
232 return temp;
  /frameworks/av/media/libmediaplayerservice/
MidiFile.cpp 327 EAS_I32 temp; local
338 result = EAS_ParseMetaData(easData, easHandle, &temp);
352 mDuration = *duration = int(temp);
443 int temp; local
506 if ((temp = mAudioSink->write(mAudioBuffer, num_output)) < 0) {
507 ALOGE("Error in writing:%d",temp);
508 return temp;
  /frameworks/av/media/libstagefright/
StagefrightMediaScanner.cpp 68 EAS_I32 temp; local
86 result = EAS_ParseMetaData(easData, easHandle, &temp);
100 sprintf(buffer, "%ld", temp);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf_3.cpp 209 Word16 *p_dico, temp;
217 temp = sub (lsf_r1[0], *p_dico++);
218 temp = mult (wf1[0], temp);
219 dist = L_mult (temp, temp);
221 temp = sub (lsf_r1[1], *p_dico++);
222 temp = mult (wf1[1], temp);
223 dist = L_mac (dist, temp, temp)
285 Word16 temp; local
611 Word16 temp; local
1028 Word16 temp; local
    [all...]
q_plsf_5.cpp 217 Word16 temp; local
247 temp = (aux1 - ((Word32)wf1_0 * *(p_dico++))) >> 15;
248 dist = ((Word32)temp * temp);
256 temp = (aux2 - ((Word32)wf1_1 * *(p_dico++))) >> 15;
257 dist += ((Word32)temp * temp);
265 temp = (aux3 - ((Word32)wf2_0 * *(p_dico++))) >> 15;
266 dist += ((Word32)temp * temp);
383 Word16 temp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
dec_amr.cpp 577 Word16 temp;
903 temp = mult (code[i - T0], pit_sharp);
904 code[i] = add (code[i], temp);
1055 temp = mult (st->exc[i], pit_sharp);
1056 L_temp = L_mult (temp, gain_pit);
1386 Word16 temp; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
c1035pf.cpp 412 Word16 temp; local
454 temp = *p1;
456 if (temp < 0)
462 if (((index ^ temp) & 8) == 0)
467 if (temp <= index)
473 *(p1 + 5) = temp;
482 if ((temp & 7) <= (index & 7))
484 *(p1 + 5) = temp;
pitch_ol.cpp 566 RETURNING(temp)
581 RETURNING(temp)
624 Word16 temp; local
626 temp = Lag_max(corr, scal_sig, scal_fac, scal_flag, L_frame, lag_max,
629 return(temp);
647 Word16 temp; local
649 temp = Lag_max(vadSt, corr, scal_sig, scal_fac, scal_flag, L_frame,
652 return(temp);
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
pitch_f4.c 81 Word16 max, t0, step, temp; local
136 temp = Interpol_4(&corr[t0], i);
137 if(temp > max)
139 max = temp;
qpisf_2s.c 66 Word32 i, k, temp, min_err, distance; local
87 temp = min_err;
89 temp = vo_L_add(temp, min_err);
91 temp = vo_L_add(temp, min_err);
93 if(temp < distance)
95 distance = temp;
117 temp = min_err;
119 temp = vo_L_add(temp, min_err)
156 Word32 temp, min_err, distance; local
451 Word16 temp, *p_dico; local
498 Word16 temp, *p_dico; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_halfpel.cpp 76 int temp; local
92 temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
93 sad += AVC_ABS(temp);
117 int temp; local
131 temp = ((p1[j] + p2[j] + 1) >> 1) - *kk++;
132 sad += AVC_ABS(temp);
152 int temp; local
165 temp = ((p1[j] + p1[j+1] + 1) >> 1) - *kk++;
166 sad += AVC_ABS(temp);

Completed in 415 milliseconds

<<21222324252627282930>>