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

1 2

  /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) {
82 reinterpret_cast<audio_sample_t *> (pOut),
88 MixOutput(pOut, numSamplesIter);
94 pOut = reinterpret_cast<audio_sample_t *> (pOut)
99 ConvertOutput(pOut, nSamplesChannels);
130 audio_sample_t * pOut = mBuffer;
132 *(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);
  /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,
  /sdk/emulator/opengl/host/libs/Translator/include/GLcommon/
etc1.h 44 // pOut is an ETC1 compressed version of the data.
46 void etc1_encode_block(const etc1_byte* pIn, etc1_uint32 validPixelMask, etc1_byte* pOut);
52 // pOut is a pointer to a ETC_DECODED_BLOCK_SIZE array of bytes that represent a
56 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut);
65 // pOut - pointer to encoded data. Must be large enough to store entire encoded image.
70 etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut);
74 // pOut - pointer to the image data. Will be written such that
80 int etc1_decode_image(const etc1_byte* pIn, etc1_byte* pOut,
  /frameworks/av/libvideoeditor/vss/src/
M4AIR_API.c 413 * M4OSA_ERR M4AIR_get(M4OSA_Context pContext, M4VIFI_ImagePlane* pIn, M4VIFI_ImagePlane* pOut)
428 * @param pOut: (IN/OUT) Plane structure containing output Plane(s).
434 M4OSA_ERR M4AIR_get(M4OSA_Context pContext, M4VIFI_ImagePlane* pIn, M4VIFI_ImagePlane* pOut)
507 pu8_data_out = pOut[i].pac_data + pOut[i].u_topleft;
530 for(j=0;j<pOut[i].u_height;j++)
534 pOut[i].u_width);
537 pu8_data_out += pOut[i].u_stride;
551 for(j=0;j<pOut[i].u_height;j++)
554 for(k=0;k<pOut[i].u_width;k++
    [all...]
  /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...]
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
TextureUtils.cpp 66 etc1_byte* pOut = new etc1_byte[size];
67 int res = etc1_decode_image((const etc1_byte*)data, pOut, width, height, 3, bpr);
69 glTexImage2DPtr(target,level,format,width,height,border,format,type,pOut);
70 delete [] pOut;
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...]
  /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...]
  /frameworks/av/libvideoeditor/vss/common/inc/
M4AIR_API.h 159 * M4OSA_ERR M4AIR_get(M4OSA_Context pContext, M4VIFI_ImagePlane* pIn, M4VIFI_ImagePlane* pOut)
174 * @param pOut: (IN/OUT) Plane structure containing output Plane(s).
180 M4OSA_ERR M4AIR_get(M4OSA_Context pContext, M4VIFI_ImagePlane* pIn, M4VIFI_ImagePlane* pOut);
  /external/openssl/crypto/rc4/asm/
rc4-ia64.pl 172 $pOut = (1 << 3);
249 &I(\$c, "LKEY T[%u] = [T[%u]]", $i1 % $NT, $i1 % $NT) if ($p & $pOut);
266 $i3 % $NData, $i3 % $NData, $i1 % $NT) if ($p & $pOut);
275 $iw0%$NOutWord, $i3%$NData, $iw1%$NOutWord, $byte_num) if ($p & $pOut);
287 $iw1 % $NOutWord) if ($p & $pOut);
  /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/aac/libAACdec/src/
conceal.cpp 884 FIXP_DBL *pOut = pSpectralCoefficient + (win * windowLen);
891 pOut[i] = fMult(pCncl[i], fac);
896 pOut,
973 FIXP_DBL *RESTRICT pOut = &pSpectralCoefficient[samplesPerFrame-1]
    [all...]
  /external/icu4c/test/perf/utfperf/
utfperf.cpp 166 UChar *pOut, *pOutLimit;
177 pOut=output;
202 ucnv_toUnicode(cnv, &pOut, pOutLimit,&p, pInter,NULL, flush,pErrorCode);
209 outputLength=pOut-output;
  /frameworks/av/libvideoeditor/lvpp/
VideoEditorTools.cpp     [all...]

Completed in 699 milliseconds

1 2