Home
last modified time | relevance | path

Searched refs:out_buf (Results 1 – 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/flac/dec/test/
DFlacDecoderTest.cpp147 void *out_buf = malloc(outSize); in processFlacDecoder() local
148 if (!out_buf) { in processFlacDecoder()
156 status_t decoderErr = mFLACDecoder->decodeOneFrame((uint8_t *)data, size, out_buf, in processFlacDecoder()
164 if (out_buf) { in processFlacDecoder()
165 free(out_buf); in processFlacDecoder()
166 out_buf = nullptr; in processFlacDecoder()
170 ostrm.write(reinterpret_cast<char *>(out_buf), outSize); in processFlacDecoder()
171 free(out_buf); in processFlacDecoder()
172 out_buf = nullptr; in processFlacDecoder()
/frameworks/compile/libbcc/tests/libbcc/
Dgetelementptr.ll32 ; CHECK: %out_buf.gep = getelementptr inbounds %RsExpandKernelDriverInfoPfx, %RsExpandKernelDriverI…
33 ; CHECK: load i8*, i8** %out_buf.gep
46 ; CHECK: %out_buf.gep = getelementptr inbounds %RsExpandKernelDriverInfoPfx, %RsExpandKernelDriverI…
47 ; CHECK: load i8*, i8** %out_buf.gep
Dtbaa.ll21 ; CHECK: NoAlias: %0 = load {{.*}}, i8** %out_buf.gep, !tbaa {{.*}} <-> store i32 %call.resul…
/frameworks/base/core/jni/
Dandroid_hardware_camera2_impl_CameraExtensionJpegProcessor.cpp347 unsigned char* out_buf, size_t out_buf_capacity, std::function<void(size_t)> flush, in compress() argument
404 unsigned char* out_buf; in compress() member
408 } clientData{out_buf, out_buf_capacity, flush, 0}; in compress()
418 cinfo->dest->next_output_byte = cdata.out_buf; in compress()
430 cinfo->dest->next_output_byte = cdata.out_buf; in compress()
493 int numBytesInBuffer = cinfo.dest->next_output_byte - out_buf; in compress()