• Home
  • Raw
  • Download

Lines Matching refs:UCHAR

102 static void CalcBands(UCHAR * diff, UCHAR start, UCHAR stop, UCHAR num_bands);
103 static SBR_ERROR modifyBands(UCHAR max_band, UCHAR * diff, UCHAR length);
104 static void cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress);
116 static UCHAR
118 UCHAR startFreq, /*!< Index to table of possible start bands */ in getStartBand()
168 static UCHAR
170 UCHAR stopFreq, /*!< Index to table of possible start bands */ in getStopBand()
172 UCHAR k0) /*!< Start freq index */ in getStopBand()
174 UCHAR k2; in getStopBand()
178 UCHAR diff_tot[MAX_OCTAVE + MAX_SECOND_REGION]; in getStopBand()
179 UCHAR *diff0 = diff_tot; in getStopBand()
180 UCHAR *diff1 = diff_tot+MAX_OCTAVE; in getStopBand()
255 sbrdecUpdateFreqScale(UCHAR * v_k_master, /*!< Master table to be created */ in sbrdecUpdateFreqScale()
256 UCHAR *numMaster, /*!< Number of entries in master table */ in sbrdecUpdateFreqScale()
265 UCHAR k0, k2, i; in sbrdecUpdateFreqScale()
266 UCHAR num_bands0 = 0; in sbrdecUpdateFreqScale()
267 UCHAR num_bands1 = 0; in sbrdecUpdateFreqScale()
268 UCHAR diff_tot[MAX_OCTAVE + MAX_SECOND_REGION]; in sbrdecUpdateFreqScale()
269 UCHAR *diff0 = diff_tot; in sbrdecUpdateFreqScale()
270 UCHAR *diff1 = diff_tot+MAX_OCTAVE; in sbrdecUpdateFreqScale()
526 CalcBands(UCHAR * diff, /*!< Vector of widths to be calculated */ in CalcBands()
527 UCHAR start, /*!< Lower end of subband range */ in CalcBands()
528 UCHAR stop, /*!< Upper end of subband range */ in CalcBands()
529 UCHAR num_bands) /*!< Desired number of bands */ in CalcBands()
562 cumSum(UCHAR start_value, UCHAR* diff, UCHAR length, UCHAR *start_adress) in cumSum()
579 modifyBands(UCHAR max_band_previous, UCHAR * diff, UCHAR length) in modifyBands()
599 sbrdecUpdateHiRes(UCHAR * h_hires, in sbrdecUpdateHiRes()
600 UCHAR * num_hires, in sbrdecUpdateHiRes()
601 UCHAR * v_k_master, in sbrdecUpdateHiRes()
602 UCHAR num_bands, in sbrdecUpdateHiRes()
603 UCHAR xover_band) in sbrdecUpdateHiRes()
605 UCHAR i; in sbrdecUpdateHiRes()
619 sbrdecUpdateLoRes(UCHAR * h_lores, in sbrdecUpdateLoRes()
620 UCHAR * num_lores, in sbrdecUpdateLoRes()
621 UCHAR * h_hires, in sbrdecUpdateLoRes()
622 UCHAR num_hires) in sbrdecUpdateLoRes()
624 UCHAR i; in sbrdecUpdateLoRes()
649 sbrdecDownSampleLoRes(UCHAR *v_result, in sbrdecDownSampleLoRes()
650 UCHAR num_result, in sbrdecDownSampleLoRes()
651 UCHAR *freqBandTableRef, in sbrdecDownSampleLoRes()
652 UCHAR num_Ref) in sbrdecDownSampleLoRes()
685 void shellsort(UCHAR *in, UCHAR n) in shellsort()
724 UCHAR nBandsLo, nBandsHi; in resetFreqBandTables()