Searched defs:temp (Results 1 - 25 of 1265) sorted by path

1234567891011>>

/external/aac/libAACdec/src/
H A Daacdec_hcr.cpp750 UCHAR temp; local
791 temp = pSortedCodebook[i];
793 pSortedCodebook[i+1] = temp;
H A Daacdecoder.cpp583 int temp; local
585 temp = FDKreadBits(hBs,4);
587 if (temp != 0) {
592 temp = FDKreadBits(hBs,8);
594 if (temp != 0xa5) {
611 int temp, dataElementLength = 0; local
613 temp = FDKreadBits(hBs,8);
615 dataElementLength += temp;
616 } while (temp == 255 );
H A Dblock.cpp166 int temp; local
188 temp = CBlock_DecodeHuffmanWord(bs,hcb);
189 factor += temp - 60; /* MIDFAC 1.5 dB */
196 temp = CBlock_DecodeHuffmanWord(bs,hcb);
197 position += temp - 60;
413 UINT temp= (r1 - r0)*x + (r0 << 4); local
415 value = fMultDiv2((FIXP_DBL)temp, MantissaTabler[exponent]);
/external/aac/libFDK/src/
H A DFDK_trigFcts.cpp242 FIXP_DBL result, temp; local
261 temp = fPow2(x); // q25 * q25 - (DFRACT_BITS-1) = q19
262 temp = fMult(temp, ONEBY3P56); // q19 * q31 - (DFRACT_BITS-1) = q19
263 temp = temp + Q(19); // q19 + q19 = q19
264 result = fDivNorm(x, temp, &res_e);
279 temp = fPow2Div2(x); // q25 * q25 - (DFRACT_BITS-1) - 1 = q18
280 temp = temp
[all...]
H A Dscale.cpp352 SHORT temp, maxVal = 0; local
355 temp = (SHORT)(*vector++);
356 maxVal |= (temp^(temp>>(SHORT_BITS-1)));
379 INT_PCM temp, maxVal = 0; local
382 temp = (INT_PCM)(*vector); vector+=stride;
383 maxVal |= (temp^(temp>>((sizeof(INT_PCM)*8)-1)));
405 SHORT temp, maxVal = 0; local
408 temp
433 FIXP_DBL temp, maxVal = (FIXP_DBL)0; local
451 SHORT temp, maxVal = (FIXP_SGL)0; local
[all...]
/external/aac/libSBRdec/src/
H A Denv_calc.cpp1403 FIXP_DBL temp = bufferReal[l] << (int)preShift; local
1404 accu = fPow2AddDiv2(accu, temp);
1420 FIXP_DBL temp = bufferReal[l] >> (int)negpreShift; local
1421 accu = fPow2AddDiv2(accu, temp);
1466 FIXP_DBL temp; local
1513 temp = analysBufferReal[l][k] << (int)preShift;
1514 sumLine += fPow2Div2(temp);
1515 temp = analysBufferImag[l][k] << (int)preShift;
1516 sumLine += fPow2Div2(temp);
1521 temp
2140 FIXP_DBL temp; local
[all...]
H A Denv_extr.cpp944 INT temp = 0, k; local
952 /* 3bit transient position (temp={0;..;7}) */
953 temp = FDKreadBits( hBitBuf, 3);
958 /* 4bit transient position (temp={0;..;15}) */
959 temp = FDKreadBits( hBitBuf, 4);
968 temp,
997 temp = 0, staticFreqRes; local
1018 temp = FDKreadBits (hBs, 2); /* E [2 bits ] */
1019 nEnv = (int) (1 << temp); /* E -> e */
1095 temp
[all...]
H A Dsbrdec_freq_sca.cpp444 FIXP_DBL temp; local
450 temp = stop;
452 /* Calculate temp^num_bands: */
454 //temp = fMult(temp,bandfactor);
455 temp = fMultDiv2(temp,bandfactor)<<2;
457 if (temp<start) { /* Factor too strong, make it weaker */
534 FIXP_SGL exact, temp; local
546 temp
[all...]
/external/aac/libSBRenc/src/
H A Dbit_sbr.cpp621 INT i, temp; local
639 temp = ceil_ln2(sbrEnvData->hSbrBSGrid->bs_num_env);
640 payloadBits += FDKwriteBits (hBitStream, temp, SBR_ENV_BITS);
650 temp = sbrEnvData->hSbrBSGrid->bs_abs_bord - (bufferFrameStart + numberTimeSlots);
652 temp = sbrEnvData->hSbrBSGrid->bs_abs_bord - bufferFrameStart;
654 payloadBits += FDKwriteBits (hBitStream, temp, SBR_ABS_BITS);
658 temp = (sbrEnvData->hSbrBSGrid->bs_rel_bord[i] - 2) >> 1;
659 payloadBits += FDKwriteBits (hBitStream, temp, SBR_REL_BITS);
662 temp = ceil_ln2(sbrEnvData->hSbrBSGrid->n + 2);
663 payloadBits += FDKwriteBits (hBitStream, sbrEnvData->hSbrBSGrid->p, temp);
[all...]
H A Dinvf_est.cpp199 INT i,temp, j; local
253 temp = min(stopChannel - startChannel, numberOfStrongest);
254 invTemp = GetInvInt(temp);
256 for(i=0; i<temp; i++) {
257 origQuotaMeanStrongest += fMultDiv2(quotaVecOrig[i + stopChannel - temp], invTemp);
258 sbrQuotaMeanStrongest += fMultDiv2(quotaVecSbr[i + stopChannel - temp], invTemp);
H A Dsbr_encoder.cpp1735 INT temp; local
1737 temp = (2048);
1738 temp += 1024 + MAX_SAMPLE_DELAY;
1739 temp *= noChannels;
1740 temp *= sizeof(INT_PCM);
1741 return temp;
H A Dtran_det.cpp379 FIXP_DBL mean_val,std_val,temp; local
421 temp = ((FIXP_DBL)mean_val - ((FIXP_DBL)Energies[j][i] >> scaleFactor0))<<shift;
422 temp = fPow2(temp);
423 temp = fMult(temp, i_noCols1);
424 accu += temp;
427 temp = ((FIXP_DBL)mean_val - ((FIXP_DBL)Energies[j][i] >> scaleFactor1))<<shift;
428 temp = fPow2(temp);
[all...]
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp153 char *temp = (char *)realloc(_buffer, _length + 1); local
154 if ( temp != NULL ) {
155 _buffer = temp;
240 char* temp = theReturn._buffer; local
241 while( (temp = strchr( temp, findChar )) != 0 )
242 *temp = replaceChar;
250 String temp = _buffer, newString;
253 while ( (loc = temp.indexOf( match )) != -1 )
255 newString += temp
273 const char* temp = strchr( &_buffer[fromIndex], ch ); local
310 char* temp = strrchr( _buffer, ch ); local
331 char temp = s2[ 0 ]; local
366 int temp = right; local
376 char temp = _buffer[ right ]; // save the replaced character local
385 String temp = _buffer; local
394 String temp = _buffer; local
[all...]
/external/bison/lib/
H A Dgetopt.c793 const char *temp = strchr (optstring, c);
799 if (temp == NULL || c == ':' || c == ';')
836 if (temp[0] == 'W' && temp[1] == ';')
1061 if (temp[1] == ':')
1063 if (temp[2] == ':')
789 const char *temp = strchr (optstring, c); local
H A Dobstack.h161 } temp; /* Temporary for some macros. */
271 Also, we can avoid using the 'temp' slot, to make faster code. */
434 ( (h)->temp.tempint = (length), \
435 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
436 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0))
439 ( (h)->temp.tempint = (length), \
440 (((h)->next_free + (h)->temp.tempint > (h)->chunk_limit) \
441 ? (_obstack_newchunk ((h), (h)->temp.tempint), 0) : 0), \
442 memcpy ((h)->next_free, where, (h)->temp.tempint), \
443 (h)->next_free += (h)->temp
160 } temp; /* Temporary for some macros. */ member in struct:obstack
[all...]
/external/bluetooth/bluedroid/bta/ar/
H A Dbta_ar.c249 UINT8 temp[8], *p; local
284 p = temp;
287 (UINT32)2, (UINT8*)temp);
305 UINT8 temp[8], *p; local
340 p = temp;
343 (UINT32)2, (UINT8*)temp);
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_dm.c1406 char temp[256]; local
1407 uuid_to_string((bt_uuid_t*)(p_data->disc_res.p_uuid_list + (i*MAX_UUID_SIZE)), temp);
1408 BTIF_TRACE_ERROR("Index: %d uuid:%s", i, temp);
1453 char temp[256]; local
1467 uuid_to_string(&uuid, temp);
1468 BTIF_TRACE_ERROR(" uuid:%s", temp);
/external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
H A Dsbc_dct.c87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
102 temp = x0 ;
104 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, ( temp - x4 ), x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
112 temp = x2 ;
114 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8,( temp - x6 ), x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
131 temp = x1 ;
133 x5 = temp - x5 ;
141 temp
209 SINT32 temp,x2; local
[all...]
/external/bluetooth/bluedroid/stack/a2dp/
H A Da2d_api.c174 UINT8 temp[8]; local
205 p = temp;
208 (UINT32)2, (UINT8*)temp);
/external/bluetooth/bluedroid/stack/avct/
H A Davct_lcb_act.c525 UINT16 temp; local
540 temp = (curr_msg_len + AVCT_HDR_LEN_START - p_lcb->peer_mtu);
541 nosp = temp / (p_lcb->peer_mtu - 1) + 1;
542 if ( (temp % (p_lcb->peer_mtu - 1)) != 0)
/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_sdp.c217 UINT8 temp[8]; local
257 p = temp;
260 (UINT32)2, (UINT8*)temp);
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble.c1854 UINT8 temp[4]; /* for (r || DIV) r=1*/ local
1856 UINT8 *p=temp, *p_mac = (UINT8 *)signature;
1901 if (!SMP_Encrypt(er, BT_OCTET16_LEN, temp, 4, &output))
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_api.c1101 UINT32 temp; local
1125 temp = (((UINT32)flush_tout * 8) + 3) / 5;
1128 if (temp > HCI_MAX_AUTO_FLUSH_TOUT)
1135 hci_flush_to = (UINT16)temp;
/external/bluetooth/bluedroid/utils/src/
H A Dbt_utils.c104 int temp; local
105 if (sscanf(buf, "%d", &temp) == 1) {
106 g_DoSchedulingGroup[g_TaskIdx] = temp == 0;

Completed in 555 milliseconds

1234567891011>>