HomeSort by relevance Sort by last modified time
    Searched refs:pOut (Results 1 - 25 of 65) 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,
  /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,
  /external/chromium_org/third_party/opus/src/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 );
  /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...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbe.c 564 Mem *pOut = 0; /* Output operand */
666 pOut = &aMem[pOp->p2];
667 memAboutToChange(p, pOut);
668 sqlite3VdbeMemReleaseExternal(pOut);
669 pOut->flags = MEM_Int;
878 pOut->u.i = pOp->p1;
889 pOut->u.i = *pOp->p4.pI64;
900 pOut->flags = MEM_Real;
902 pOut->r = *pOp->p4.pReal;
919 rc = sqlite3VdbeMemSetStr(pOut, pOp->p4.z, -1, SQLITE_UTF8, SQLITE_STATIC)
    [all...]
wal.h 63 int sqlite3WalRead(Wal *pWal, Pgno pgno, int *pInWal, int nOut, u8 *pOut);
  /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/chromium_org/third_party/openssl/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/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/compile/libbcc/include/bcc/Renderscript/
RSCompilerDriver.h 107 bool build(RSScript &pScript, const char *pOut, const char *pRuntimePath);
  /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...]
  /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);
  /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/chromium_org/third_party/icu/source/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;
  /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;

Completed in 1127 milliseconds

1 2 3