Home
last modified time | relevance | path

Searched defs:inBuffer (Results 1 – 25 of 200) sorted by relevance

12345678

/aosp_15_r20/frameworks/av/services/camera/virtualcamera/tests/
H A DJpegUtilTest.cc145 std::shared_ptr<AHardwareBuffer> inBuffer) { in compress()
155 std::shared_ptr<AHardwareBuffer> inBuffer = in TEST_F() local
167 std::shared_ptr<AHardwareBuffer> inBuffer = in TEST_F() local
179 std::shared_ptr<AHardwareBuffer> inBuffer = in TEST_F() local
188 std::shared_ptr<AHardwareBuffer> inBuffer = in TEST_F() local
/aosp_15_r20/frameworks/av/media/module/codecs/flac/dec/
H A DFLACDecoder.cpp272 status_t FLACDecoder::parseMetadata(const uint8_t *inBuffer, size_t inBufferLen) { in parseMetadata()
337 status_t FLACDecoder::decodeOneFrame(const uint8_t *inBuffer, size_t inBufferLen, in decodeOneFrame()
418 status_t FLACDecoder::addDataToBuffer(const uint8_t *inBuffer, size_t inBufferLen) { in addDataToBuffer()
/aosp_15_r20/external/zstd/contrib/seekable_format/tests/
H A Dseekable_tests.c65 void* const inBuffer = malloc(inSize); in main() local
240 char* inBuffer = malloc(capacity); in main() local
272 …{ char const inBuffer[] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusm… in main() local
/aosp_15_r20/external/OpenCL-CTS/test_conformance/api/
H A Dtest_native_kernel.cpp50 cl_int inBuffer[ n_elems ], outBuffer[ n_elems ]; in test_native_kernel() local
52 cl_int* inBuffer = (cl_int *)_malloca( n_elems * sizeof(cl_int) ); in test_native_kernel() local
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharsetDecoderTest.java43 ByteBuffer inBuffer = ByteBuffer.wrap(arr, 0, arr.length).slice(); in test_ByteArray_decode_no_offset() local
59 ByteBuffer inBuffer = ByteBuffer.wrap(arr, offset, arr.length - offset).slice(); in test_ByteArray_decode_with_offset() local
/aosp_15_r20/cts/tests/tests/hardware/src/android/hardware/cts/
H A DHardwareBufferTest.java251 HardwareBuffer inBuffer = HardwareBuffer.create(2, 4, HardwareBuffer.RGBA_8888, 1, in testWriteJavaReadNativeParcel() local
275 final HardwareBuffer inBuffer = HardwareBuffer.create(2, 4, HardwareBuffer.RGBA_8888, 1, in testWriteNativeReadJavaParcel() local
/aosp_15_r20/frameworks/av/media/libstagefright/codecs/xaacdec/
H A DSoftXAAC.cpp522 uint8_t* inBuffer = NULL; in onQueueFilled() local
1054 IA_ERRORCODE SoftXAAC::configXAACDecoder(uint8_t* inBuffer, uint32_t inBufferLength) { in configXAACDecoder()
1407 IA_ERRORCODE SoftXAAC::decodeXAACStream(uint8_t* inBuffer, uint32_t inBufferLength, in decodeXAACStream()
/aosp_15_r20/external/zstd/contrib/pzstd/
H A DPzstd.cpp233 void advance(Buffer& buffer, ZSTD_inBuffer& inBuffer) { in advance()
289 Buffer inBuffer; in compress() local
448 Buffer inBuffer; in decompress() local
/aosp_15_r20/frameworks/av/media/codec2/components/xaac/
H A DC2SoftXaacDec.cpp402 uint8_t* inBuffer = nullptr; in process() local
937 IA_ERRORCODE C2SoftXaacDec::configXAACDecoder(uint8_t* inBuffer, uint32_t inBufferLength) { in configXAACDecoder()
1282 IA_ERRORCODE C2SoftXaacDec::decodeXAACStream(uint8_t* inBuffer, in decodeXAACStream()
/aosp_15_r20/frameworks/av/services/camera/virtualcamera/util/
H A DJpegUtil.cc104 std::optional<size_t> compress(std::shared_ptr<AHardwareBuffer> inBuffer) { in compress()
301 std::shared_ptr<AHardwareBuffer> inBuffer, in compressJpeg()
/aosp_15_r20/packages/apps/Gallery2/jni_jpegstream/src/
Djpegstream.cpp221 jbyteArray inBuffer, jint offset, jint inCount) { in OutputStream_writeInputBytes()
247 jbyteArray inBuffer, jint offset, jint inCount) { in InputStream_readDecodedBytes()
/aosp_15_r20/frameworks/av/media/libeffects/factory/
H A DEffectsFactory.c65 int Effect_Process(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer) in Effect_Process()
131 int Effect_ProcessReverse(effect_handle_t self, audio_buffer_t *inBuffer, audio_buffer_t *outBuffer) in Effect_ProcessReverse()
/aosp_15_r20/external/libxaac/fuzzer/
H A Dxaac_dec_fuzzer.cpp330 IA_ERRORCODE Codec::configXAACDecoder(uint8_t* inBuffer, in configXAACDecoder()
642 IA_ERRORCODE Codec::decodeXAACStream(uint8_t* inBuffer, uint32_t inBufferLength, in decodeXAACStream()
/aosp_15_r20/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DCharsetEncoderTest.java683 CharBuffer inBuffer = getExceptionCharBuffer(); in testEncodeCharBufferException() local
894 CharBuffer inBuffer = getExceptionCharBuffer(); in implTestEncodeCharBufferByteBufferbooleanException() local
/aosp_15_r20/hardware/interfaces/audio/effect/all-versions/default/
H A DEffect.cpp216 std::atomic<audio_buffer_t*>* inBuffer, std::atomic<audio_buffer_t*>* outBuffer, in ProcessThread()
262 audio_buffer_t* inBuffer = in threadLoop() local
590 Return<Result> Effect::setProcessBuffers(const AudioBuffer& inBuffer, in setProcessBuffers()
/aosp_15_r20/frameworks/av/services/audioflinger/
H A DEffects.h205 int16_t *inBuffer() const final { in inBuffer() function
519 float *inBuffer() const final { in inBuffer() function
/aosp_15_r20/frameworks/av/media/libeffects/tests/common/
H A DEffectTestHelper.cpp53 audio_buffer_t inBuffer = {.frameCount = mFrameCount, .f32 = input}; in process() local
/aosp_15_r20/packages/apps/Messaging/src/com/android/messaging/mmslib/util/
DDrmConvertSession.java85 public byte[] convert(byte[] inBuffer, int size) { in convert()
/aosp_15_r20/external/OpenCL-CTS/test_conformance/basic/
H A Dtest_vloadstore.cpp127 clProtectedArray inBuffer( bufferSize ); in test_vload() local
500 std::vector<char> inBuffer(numStores * typeSize * vecSize); in test_vstore() local
/aosp_15_r20/external/sonic/
H A Dmain_lite.c17 short inBuffer[SONIC_INPUT_SAMPLES], outBuffer[SONIC_INPUT_SAMPLES]; in runSonic() local
/aosp_15_r20/frameworks/base/telephony/common/com/google/android/mms/util/
H A DDrmConvertSession.java92 public byte [] convert(byte[] inBuffer, int size) { in convert()
/aosp_15_r20/frameworks/av/media/libeffects/downmix/benchmark/
H A Ddownmix_benchmark.cpp158 audio_buffer_t inBuffer = {.frameCount = kFrameCount, .f32 = input.data()}; in BM_Downmix() local
/aosp_15_r20/external/ms-tpm-20-ref/TPMCmd/tpm/src/subsystem/
H A DNvReserved.c212 void *inBuffer // IN: location containing data to write in NvWrite()
/aosp_15_r20/external/libcups/cups/
H A Dtls-sspi.c1330 SecBufferDesc inBuffer; /* Array of SecBuffer structs */ in http_sspi_client() local
2074 SecBufferDesc inBuffer; /* Array of SecBuffer structs */ in http_sspi_server() local
/aosp_15_r20/frameworks/av/media/libeffects/lvm/benchmarks/
H A Dlvm_benchmark.cpp213 audio_buffer_t inBuffer = {.frameCount = kFrameCount, .f32 = input.data()}; in BM_LVM() local

12345678