/frameworks/av/media/libeffects/testlibs/ |
D | AudioFormatAdapter.h | 74 void process(const void * pIn, void * pOut, uint32_t numSamples) { in process() argument 83 reinterpret_cast<audio_sample_t *> (pOut), in process() 89 MixOutput(pOut, numSamplesIter); in process() 95 pOut = reinterpret_cast<audio_sample_t *> (pOut) in process() 100 ConvertOutput(pOut, nSamplesChannels); in process() 131 audio_sample_t * pOut = mBuffer; in ConvertInput() local 133 *(pOut++) = s15_to_audio_sample_t(*(pIn16++)); in ConvertInput() 146 void ConvertOutput(void *& pOut, uint32_t numSamples) { in ConvertOutput() argument 149 int16_t * pOut16 = reinterpret_cast<int16_t *>(pOut); in ConvertOutput() 161 pOut = pOut16; in ConvertOutput() [all …]
|
D | AudioEqualizer.cpp | 226 audio_sample_t * pOut, in process() argument 229 mpLowShelf->process(pIn, pOut, frameCount); in process() 231 mpPeakingFilters[i].process(pIn, pOut, frameCount); in process() 233 mpHighShelf->process(pIn, pOut, frameCount); in process()
|
D | AudioEqualizer.h | 185 void process(const audio_sample_t * pIn, audio_sample_t * pOut,
|
/frameworks/native/opengl/libs/ETC1/ |
D | etc1.cpp | 167 void decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table, in decode_subblock() argument 190 etc1_byte* q = pOut + 3 * (x + 4 * y); in decode_subblock() 200 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut) { in etc1_decode_block() argument 229 decode_subblock(pOut, r1, g1, b1, tableA, low, false, flipped); in etc1_decode_block() 230 decode_subblock(pOut, r2, g2, b2, tableB, low, true, flipped); in etc1_decode_block() 468 static void writeBigEndian(etc1_byte* pOut, etc1_uint32 d) { in writeBigEndian() argument 469 pOut[0] = (etc1_byte)(d >> 24); in writeBigEndian() 470 pOut[1] = (etc1_byte)(d >> 16); in writeBigEndian() 471 pOut[2] = (etc1_byte)(d >> 8); in writeBigEndian() 472 pOut[3] = (etc1_byte) d; in writeBigEndian() [all …]
|
/frameworks/native/opengl/include/ETC1/ |
D | etc1.h | 44 void etc1_encode_block(const etc1_byte* pIn, etc1_uint32 validPixelMask, etc1_byte* pOut); 54 void etc1_decode_block(const etc1_byte* pIn, etc1_byte* pOut); 68 etc1_uint32 pixelSize, etc1_uint32 stride, etc1_byte* pOut); 78 int etc1_decode_image(const etc1_byte* pIn, etc1_byte* pOut,
|
/frameworks/av/media/libeffects/lvm/wrapper/Reverb/ |
D | EffectReverb.cpp | 334 int process(effect_buffer_t* pIn, effect_buffer_t* pOut, int frameCount, ReverbContext* pContext) { in process() argument 463 pOut[outChannels * i] += pContext->OutFrames[FCC_2 * i]; in process() 464 pOut[outChannels * i + 1] += pContext->OutFrames[FCC_2 * i + 1]; in process() 468 pOut[outChannels * i] = pContext->OutFrames[FCC_2 * i]; in process() 469 pOut[outChannels * i + 1] = pContext->OutFrames[FCC_2 * i + 1]; in process() 476 pOut[outChannels * i + j] = pIn[outChannels * i + j]; in process() 484 pOut[i] += in process() 490 pOut[i] += pContext->OutFrames[i]; in process() 495 From2iToMono_Float((const process_buffer_t*)pContext->OutFrames, pOut, frameCount); in process() 497 memcpy(pOut, pContext->OutFrames, frameCount * sizeof(*pOut) * FCC_2); in process()
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
D | TonemapCurve.java | 199 final float pOut = curve[index * POINT_SIZE + OFFSET_POINT_OUT]; in getPoint() local 201 return new PointF(pIn, pOut); in getPoint()
|
/frameworks/compile/libbcc/lib/ |
D | RSCompilerDriver.cpp | 433 bool RSCompilerDriver::buildForCompatLib(Script &pScript, const char *pOut, in buildForCompatLib() argument 445 Compiler::ErrorCode status = compileScript(pScript, pOut, pOut, pRuntimePath, in buildForCompatLib()
|
/frameworks/compile/libbcc/include/bcc/ |
D | RSCompilerDriver.h | 160 bool buildForCompatLib(Script &pScript, const char *pOut,
|
/frameworks/av/media/libeffects/dynamicsproc/dsp/ |
D | DPFrequency.cpp | 375 float *pOut = out; in processSamples() local 412 *pOut++ = 0; in processSamples() 418 *pOut++ = mChannelBuffers[ch].cBOutput.read(); in processSamples()
|
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/ |
D | EffectBundle.cpp | 631 int LvmBundle_process(effect_buffer_t* pIn, effect_buffer_t* pOut, int frameCount, in LvmBundle_process() argument 639 pOutTmp = pOut; in LvmBundle_process() 669 pOut[i] = pOut[i] + pOutTmp[i]; in LvmBundle_process()
|