HomeSort by relevance Sort by last modified time
    Searched refs:pOut (Results 1 - 25 of 58) sorted by null

1 2 3

  /frameworks/av/media/libeffects/testlibs/
AudioFormatAdapter.h 33 // audio_sample_t * pOut,
71 // pOut A buffer of samples with the format specified on
74 void process(const void * pIn, void * pOut, uint32_t numSamples) {
83 reinterpret_cast<audio_sample_t *> (pOut),
89 MixOutput(pOut, numSamplesIter);
95 pOut = reinterpret_cast<audio_sample_t *> (pOut)
100 ConvertOutput(pOut, nSamplesChannels);
131 audio_sample_t * pOut = mBuffer;
133 *(pOut++) = s15_to_audio_sample_t(*(pIn16++))
    [all...]
AudioEqualizer.h 183 // pOut Output buffer.
185 void process(const audio_sample_t * pIn, audio_sample_t * pOut,
AudioEqualizer.cpp 226 audio_sample_t * pOut,
229 mpLowShelf->process(pIn, pOut, frameCount);
231 mpPeakingFilters[i].process(pIn, pOut, frameCount);
233 mpHighShelf->process(pIn, pOut, frameCount);
  /external/skia/third_party/etc1/
etc1.h 50 // pOut is an ETC1 compressed version of the data.
52 void etc1_encode_block(const etc1_byte* pIn, etc1_uint32 validPixelMask, etc1_byte* pOut);
58 // pOut is a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
62 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut);
71 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
76 etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut);
80 // pOut - pointer to the image data. Will be written such that
86 int etc1_decode_image(const etc1_byte* pIn, etc1_byte* pOut,
etc1.cpp 175 void decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table,
198 etc1_byte* q = pOut + 3 * (x + 4 * y);
208 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut) {
237 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
238 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped);
480 static void writeBigEndian(etc1_byte* pOut, etc1_uint32 d) {
481 pOut[0] = (etc1_byte)(d >> 24);
482 pOut[1] = (etc1_byte)(d >> 16);
483 pOut[2] = (etc1_byte)(d >> 8);
484 pOut[3] = (etc1_byte) d
    [all...]
  /frameworks/native/opengl/include/ETC1/
etc1.h 42 // pOut is an ETC1 compressed version of the data.
44 void etc1_encode_block(const etc1_byte* pIn, etc1_uint32 validPixelMask, etc1_byte* pOut);
50 // pOut is a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
54 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut);
63 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
68 etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut);
72 // pOut - pointer to the image data. Will be written such that
78 int etc1_decode_image(const etc1_byte* pIn, etc1_byte* pOut,
  /external/libopus/silk/
decode_frame.c 42 opus_int16 pOut[], /* O Pointer to output speech frame */
84 silk_decode_core( psDec, psDecCtrl, pOut, pulses );
89 silk_PLC( psDec, psDecCtrl, pOut, 0 );
99 silk_PLC( psDec, psDecCtrl, pOut, 1 );
108 silk_memcpy( &psDec->outBuf[ mv_len ], pOut, psDec->frame_length * sizeof( opus_int16 ) );
113 silk_PLC_glue_frames( psDec, pOut, L );
118 silk_CNG( psDec, psDecCtrl, pOut, L );
  /external/libnfc-nxp/src/
phFriNfc_LlcpUtils.c 199 pUtilFifo->pOut = (uint8_t *)pBuffStart;
209 pUtilFifo->pOut = pUtilFifo->pBuffStart;
239 if(pNext == pUtilFifo->pOut)
265 if((pUtilFifo->pOut == pUtilFifo->pIn) && (pUtilFifo->bFull == FALSE))
274 if(pUtilFifo->pOut == pUtilFifo->pBuffEnd)
281 pNext = (uint8_t*)pUtilFifo->pOut + 1;
286 pUtilFifo->pOut = pNext;
302 uint8_t * pOut = (uint8_t *)pUtilFifo->pOut;
310 if(pIn >= pOut)
    [all...]
phFriNfc_LlcpUtils.h 44 * If pIn == pOut the buffer is empty.
51 volatile uint8_t *pOut; /* Points to 1 before where the next TU1 will leave buffer */
  /development/tools/etc1tool/
etc1tool.cpp 109 int fwrite_big_endian_uint16(png_uint_32 data, FILE* pOut) {
110 if (fputc(0xff & (data >> 8), pOut) == EOF) {
113 if (fputc(0xff & data, pOut) == EOF) {
314 FILE* pOut = NULL;
337 if ((pOut = fopen(pOutput, "wb")) == NULL) {
345 if (fwrite(header, sizeof(header), 1, pOut) != 1) {
353 if (fwrite(pEncodedData, encodedSize, 1, pOut) != 1) {
360 fclose(pOut);
361 pOut = NULL;
399 if (pOut) {
    [all...]
  /frameworks/native/opengl/libs/ETC1/
etc1.cpp 167 void decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table,
190 etc1_byte* q = pOut + 3 * (x + 4 * y);
200 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut) {
229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped);
230 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped);
472 static void writeBigEndian(etc1_byte* pOut, etc1_uint32 d) {
473 pOut[0] = (etc1_byte)(d >> 24);
474 pOut[1] = (etc1_byte)(d >> 16);
475 pOut[2] = (etc1_byte)(d >> 8);
476 pOut[3] = (etc1_byte) d
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_chorus.c 266 EAS_PCM *pOut;
289 pOut = pDst + nChannelNumber;
320 *pOut = (EAS_I16)SATURATE(nOutputSample);
321 pOut += NUM_OUTPUT_CHANNELS;
366 *pOut = (EAS_I16)SATURATE(nOutputSample);
367 pOut += NUM_OUTPUT_CHANNELS;
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_chorus.c 266 EAS_PCM *pOut;
289 pOut = pDst + nChannelNumber;
320 *pOut = (EAS_I16)SATURATE(nOutputSample);
321 pOut += NUM_OUTPUT_CHANNELS;
366 *pOut = (EAS_I16)SATURATE(nOutputSample);
367 pOut += NUM_OUTPUT_CHANNELS;
  /external/sonivox/arm-wt-22k/lib_src/
eas_chorus.c 266 EAS_PCM *pOut;
289 pOut = pDst + nChannelNumber;
320 *pOut = (EAS_I16)SATURATE(nOutputSample);
321 pOut += NUM_OUTPUT_CHANNELS;
366 *pOut = (EAS_I16)SATURATE(nOutputSample);
367 pOut += NUM_OUTPUT_CHANNELS;
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_lib.h 460 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
463 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
466 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
469 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
472 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
475 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
478 uint8 *pOut, int predPitch, int blkwidth, int blkheight);
    [all...]
motion_comp.cpp     [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_decoder.c 602 dpbOutPicture_t *pOut;
608 pOut = h264bsdDpbOutputPicture(pStorage->dpb);
610 if (pOut != NULL)
612 *picId = pOut->picId;
613 *isIdrPic = pOut->isIdr;
614 *numErrMbs = pOut->numErrMbs;
615 return (pOut->data);
DecTestBench.c 594 u8 *pOut, *pIn;
622 pOut = pOutImage;
629 *pOut++ = *pIn++;
646 *pOut++ = *pIn++;
660 *pOut++ = *pIn++;
TestBenchMultipleInstance.c 462 u8 *pOut, *pIn;
487 pOut = pOutImage;
494 *pOut++ = *pIn++;
510 *pOut++ = *pIn++;
523 *pOut++ = *pIn++;
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmscam02.c 436 void CMSEXPORT cmsCIECAM02Forward(cmsHANDLE hModel, const cmsCIEXYZ* pIn, cmsJCh* pOut)
443 _cmsAssert(pOut != NULL);
457 pOut ->J = clr.J;
458 pOut ->C = clr.C;
459 pOut ->h = clr.h;
462 void CMSEXPORT cmsCIECAM02Reverse(cmsHANDLE hModel, const cmsJCh* pIn, cmsCIEXYZ* pOut)
469 _cmsAssert(pOut != NULL);
483 pOut ->X = clr.XYZ[0];
484 pOut ->Y = clr.XYZ[1];
485 pOut ->Z = clr.XYZ[2]
    [all...]
  /external/aac/libAACdec/src/
conceal.cpp 885 FIXP_DBL *pOut = pSpectralCoefficient + (win * windowLen);
892 pOut[i] = fMult(pCncl[i], fac);
897 pOut,
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/params/
TonemapCurve.java 37 * <p>The total number of points {@code (Pin, Pout)} for each color channel can be no more than
61 * Number of elements in a {@code (Pin, Pout)} point;
81 * <p>Values are stored as a contiguous array of {@code (Pin, Pout)} points.</p>
181 * @return the {@code (Pin, Pout)} pair mapping the tone for that index
197 final float pOut = curve[index * POINT_SIZE + OFFSET_POINT_OUT];
199 return new PointF(pIn, pOut);
207 * Values are stored as packed {@code (Pin, Pout}) points, and there are a total of
  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 165 UChar *pOut, *pOutLimit;
176 pOut=output;
201 ucnv_toUnicode(cnv, &pOut, pOutLimit,&p, pInter,NULL, flush,pErrorCode);
208 outputLength=pOut-output;
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSCompilerDriver.h 156 bool buildForCompatLib(RSScript &pScript, const char *pOut,
  /frameworks/compile/libbcc/lib/Renderscript/
RSCompilerDriver.cpp 372 bool RSCompilerDriver::buildForCompatLib(RSScript &pScript, const char *pOut,
384 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath,

Completed in 594 milliseconds

1 2 3