• Home
  • Raw
  • Download

Lines Matching refs:UCHAR

120 static void CalcBands(UCHAR *diff, UCHAR start, UCHAR stop, UCHAR num_bands);
121 static SBR_ERROR modifyBands(UCHAR max_band, UCHAR *diff, UCHAR length);
122 static void cumSum(UCHAR start_value, UCHAR *diff, UCHAR length,
123 UCHAR *start_adress);
133 static UCHAR getStartBand( in getStartBand()
135 UCHAR startFreq, /*!< Index to table of possible start bands */ in getStartBand()
204 static UCHAR getStopBand( in getStopBand()
206 UCHAR stopFreq, /*!< Index to table of possible start bands */ in getStopBand()
208 UCHAR k0) /*!< Start freq index */ in getStopBand()
210 UCHAR k2; in getStopBand()
215 UCHAR diff_tot[MAX_OCTAVE + MAX_SECOND_REGION]; in getStopBand()
216 UCHAR *diff0 = diff_tot; in getStopBand()
217 UCHAR *diff1 = diff_tot + MAX_OCTAVE; in getStopBand()
253 UCHAR max_freq_coeffs = (headerDataFlags & SBRDEC_QUAD_RATE) in getStopBand()
299 UCHAR *v_k_master, /*!< Master table to be created */ in sbrdecUpdateFreqScale()
300 UCHAR *numMaster, /*!< Number of entries in master table */ in sbrdecUpdateFreqScale()
308 UCHAR k0, k2, i; in sbrdecUpdateFreqScale()
309 UCHAR num_bands0 = 0; in sbrdecUpdateFreqScale()
310 UCHAR num_bands1 = 0; in sbrdecUpdateFreqScale()
311 UCHAR diff_tot[MAX_OCTAVE + MAX_SECOND_REGION]; in sbrdecUpdateFreqScale()
312 UCHAR *diff0 = diff_tot; in sbrdecUpdateFreqScale()
313 UCHAR *diff1 = diff_tot + MAX_OCTAVE; in sbrdecUpdateFreqScale()
353 bpo_div16 = (FIXP_SGL)(k0 & (UCHAR)0xfe) in sbrdecUpdateFreqScale()
575 static void CalcBands(UCHAR *diff, /*!< Vector of widths to be calculated */ in CalcBands()
576 UCHAR start, /*!< Lower end of subband range */ in CalcBands()
577 UCHAR stop, /*!< Upper end of subband range */ in CalcBands()
578 UCHAR num_bands) /*!< Desired number of bands */ in CalcBands()
611 static void cumSum(UCHAR start_value, UCHAR *diff, UCHAR length, in cumSum()
612 UCHAR *start_adress) { in cumSum()
626 static SBR_ERROR modifyBands(UCHAR max_band_previous, UCHAR *diff, in modifyBands()
627 UCHAR length) { in modifyBands()
645 static void sbrdecUpdateHiRes(UCHAR *h_hires, UCHAR *num_hires, in sbrdecUpdateHiRes()
646 UCHAR *v_k_master, UCHAR num_bands, in sbrdecUpdateHiRes()
647 UCHAR xover_band) { in sbrdecUpdateHiRes()
648 UCHAR i; in sbrdecUpdateHiRes()
660 static void sbrdecUpdateLoRes(UCHAR *h_lores, UCHAR *num_lores, UCHAR *h_hires, in sbrdecUpdateLoRes()
661 UCHAR num_hires) { in sbrdecUpdateLoRes()
662 UCHAR i; in sbrdecUpdateLoRes()
684 void sbrdecDownSampleLoRes(UCHAR *v_result, UCHAR num_result, in sbrdecDownSampleLoRes()
685 UCHAR *freqBandTableRef, UCHAR num_Ref) { in sbrdecDownSampleLoRes()
715 void shellsort(UCHAR *in, UCHAR n) { in shellsort()
747 UCHAR nBandsLo, nBandsHi; in resetFreqBandTables()