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

  /hardware/qcom/gps/msm8960/utils/
log_util.h 138 #define LOG_(LOC_LOG, ID, WHAT, SPEC, VAL) \
142 LOC_LOG("[%s] %s %s line %d " #SPEC, \
145 LOC_LOG("%s %s line %d " #SPEC, \
151 #define LOG_I(ID, WHAT, SPEC, VAL) LOG_(LOC_LOGI, ID, WHAT, SPEC, VAL)
152 #define LOG_V(ID, WHAT, SPEC, VAL) LOG_(LOC_LOGV, ID, WHAT, SPEC, VAL)
155 #define EXIT_LOG(SPEC, VAL) LOG_V(EXIT_TAG, __func__, SPEC, VAL)
161 #define EXIT_LOG_CALLFLOW(SPEC, VAL) LOG_I(TO_MODEM, __func__, SPEC, VAL
    [all...]
  /hardware/qcom/gps/utils/
log_util.h 148 #define LOG_(LOC_LOG, ID, WHAT, SPEC, VAL) \
152 LOC_LOG("[%s] %s %s line %d " #SPEC, \
155 LOC_LOG("%s %s line %d " #SPEC, \
161 #define LOG_I(ID, WHAT, SPEC, VAL) LOG_(LOC_LOGI, ID, WHAT, SPEC, VAL)
162 #define LOG_V(ID, WHAT, SPEC, VAL) LOG_(LOC_LOGV, ID, WHAT, SPEC, VAL)
165 #define EXIT_LOG(SPEC, VAL) LOG_V(EXIT_TAG, __func__, SPEC, VAL)
171 #define EXIT_LOG_CALLFLOW(SPEC, VAL) LOG_I(TO_MODEM, __func__, SPEC, VAL
    [all...]
  /external/aac/libAACdec/src/
overlapadd.h 102 #define SPEC(ptr,w,gl) ((ptr)+((w)*(gl)))
stereo.cpp 173 leftSpectrum = SPEC(pAacDecoderChannelInfo[L]->pSpectralCoefficient, window, pAacDecoderChannelInfo[L]->granuleLength);
174 rightSpectrum = SPEC(pAacDecoderChannelInfo[R]->pSpectralCoefficient, window, pAacDecoderChannelInfo[R]->granuleLength);
248 leftSpectrum = SPEC(pAacDecoderChannelInfo[L]->pSpectralCoefficient, window, pAacDecoderChannelInfo[L]->granuleLength);
249 rightSpectrum = SPEC(pAacDecoderChannelInfo[R]->pSpectralCoefficient, window, pAacDecoderChannelInfo[R]->granuleLength);
block.cpp 233 FIXP_DBL *pSpectrum = SPEC(pSpectralCoefficient, window, pAacDecoderChannelInfo->granuleLength);
444 FIXP_DBL *pSpectralCoefficient = SPEC(pAacDecoderChannelInfo->pSpectralCoefficient, window, pAacDecoderChannelInfo->granuleLength) + BandOffsets[band];
552 FIXP_DBL *mdctSpectrum = SPEC(pSpectralCoefficient, window, pAacDecoderChannelInfo->granuleLength);
aacdec_pns.cpp 252 * \param spec pointer to were the noise values will be written to.
257 static int GenerateRandomVector (FIXP_DBL *RESTRICT spec,
263 FIXP_DBL *RESTRICT ptr = spec;
283 spec[i] = fMult(spec[i], invNrg_m);
292 static void ScaleBand (FIXP_DBL *RESTRICT spec, int size, int scaleFactor, int specScale, int noise_e, int out_of_phase)
314 spec [i] = fMultDiv2 (spec [i], sfMatissa) << shift;
319 spec [i] = fMultDiv2 (spec [i], sfMatissa) >> shift
    [all...]
aacdec_tns.cpp 216 static void CTns_Filter (FIXP_DBL *spec, int size, int inc, FIXP_TCC coeff [], int order)
238 maxVal = fixMax(maxVal,fixp_abs(spec[i]));
250 pSpec = &spec[size - 1];
252 pSpec = &spec[0];
350 FIXP_DBL *pSpectrum = SPEC(pSpectralCoefficient, window, granuleLength);
aacdec_hcr.cpp 644 pOut = SPEC(pQuantizedSpectralCoefficientsBase, window, pAacDecoderChannelInfo->granuleLength);
668 pBak = SPEC(pQuantizedSpectralCoefficientsBase, window, pAacDecoderChannelInfo->granuleLength);
    [all...]
  /external/chromium_org/chrome/installer/linux/rpm/
build.sh 17 rm -f "${SPEC}"
26 process_template "${SCRIPTDIR}/chrome.spec.template" "${SPEC}"
153 "${SPEC}"
266 SPEC="${TMPFILEDIR}/chrome.spec"
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
jsbundler.py 123 for spec in specs:
124 parts = spec.split(':')
126 Die('Invalid prefix rewrite spec %s' % spec)
294 dest='prefix_map', metavar='SPEC',
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
webkitdirs.pm 39 use File::Spec;
166 my $devnull = File::Spec->devnull();
446 $configurationProductDir = File::Spec->catdir($baseProductDir, configurationForVisualStudio(), "bin");
877 my $qmakepath = File::Spec->catfile(sourceDir(), "Tools", "qmake");
880 my $file = File::Spec->catfile(sourceDir(), "WebKit.pro");
909 my $devnull = File::Spec->devnull();
1014 my $stageLib = File::Spec->catdir($stageDir, $cpuDir, "lib");
1015 my $stageUsrLib = File::Spec->catdir($stageDir, $cpuDir, "usr", "lib");
1016 my $stageInc = File::Spec->catdir($stageDir, "usr", "include");
1025 $ccCommand = File::Spec->catfile($qnxHost, "usr", "bin", "qcc")
    [all...]
  /frameworks/rs/api/
gen_runtime.cpp 17 /* This program processes Renderscript function definitions described in spec files.
18 * For each spec file provided on the command line, it generates a corresponding
30 * - SpecFile: Represents on spec file.
32 * spec file contains many entries for clamp, we'll only have one clamp instance.
35 * spec file. Strings that are parts of a Specification can include placeholders,
93 string specType; // The type found in the spec, e.g. "f16"
105 string specName; // e.g. x, as found in the spec file
125 /* Parse the parameter definition found in the spec file. It will generate a name if none
133 // An entire spec file and the methods to process it.
153 /* Represents a function, like "clamp". Even though the spec file contains many entries for clamp
706 Specification* spec = Specification::scanSpecification(specFile); local
900 Specification* spec = new Specification(); local
    [all...]

Completed in 386 milliseconds