Searched defs:pOutput (Results 1 - 16 of 16) sorted by relevance

/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrameHdr.h47 void emitOutput(FileOutputBuffer& pOutput) argument
69 void EhFrameHdr::emitOutput<32>(FileOutputBuffer& pOutput);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dpixelutils.cpp27 uint32* pOutput = static_cast<uint32*>(env->GetDirectBufferAddress(output)); local
28 uint32* pOutRow = pOutput + offset;
H A Dcolorspace.cpp59 Rgba* const pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output)); local
66 Rgba* pOutColor = pOutput;
101 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output)); local
105 Rgba& color_out = *pOutput++;
116 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output)); local
122 Rgba& color_out = *pOutput++;
159 Rgba* pOutput = static_cast<Rgba*>(env->GetDirectBufferAddress(output)); local
164 Rgba& color_out = *pOutput++;
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSInfoWriter.cpp116 inline bool helper_write_list(OutputFile &pOutput, argument
131 if (pOutput.write(&item, sizeof(item)) != sizeof(item)) {
133 rsinfo::GetItemTypeName<ItemType>(), pOutput.getName().c_str(),
134 pOutput.getErrorMessage().c_str());
144 bool RSInfo::write(OutputFile &pOutput) { argument
145 off_t initial_offset = pOutput.tell();
146 const char *output_filename = pOutput.getName().c_str();
148 if (pOutput.hasError()) {
150 output_filename, pOutput.getErrorMessage().c_str());
160 if (pOutput
[all...]
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/
H A DLVREV_Process.c56 LVM_INT32 *pOutput = pOutData; local
103 if(pInput != pOutput)
110 MonoTo2I_32(pInput, pOutput, NumSamples);
113 (LVM_INT16 *)pOutput,
145 ReverbBlock(pInput, pOutput, pLVREV_Private, (LVM_UINT16)SamplesToProcess);
148 pOutput = (LVM_INT32 *)(pOutput+(SamplesToProcess*2)); // Always stereo output
179 void ReverbBlock(LVM_INT32 *pInput, LVM_INT32 *pOutput, LVREV_Instance_st *pPrivate, LVM_UINT16 NumSamples) argument
465 pOutput,
471 pOutput,
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc.c212 VO_U32 VO_API voAACEncGetOutputData(VO_HANDLE hCodec, VO_CODECBUFFER * pOutput, VO_AUDIO_OUTPUTINFO * pOutInfo) argument
240 pOutput->Length = 0;
247 if(NULL == pOutput || NULL == pOutput->Buffer || pOutput->Length < (6144/8)*hAacEnc->config.nChannelsOut/(sizeof(Word32)))
255 pOutput->Buffer,
256 &pOutput->Length);
/frameworks/compile/libbcc/lib/Support/
H A DDisassembler.cpp68 DisassembleResult Disassemble(llvm::raw_ostream &pOutput, const char *pTriple, argument
132 pOutput << "Disassembled code: " << pFuncName << "\n";
157 pOutput.indent(4);
158 pOutput << "0x";
159 pOutput.write_hex(reinterpret_cast<uintptr_t>(inst_addr));
160 pOutput << ": 0x";
161 pOutput.write_hex(*reinterpret_cast<const uint32_t *>(inst_addr));
162 inst_printer->printInst(&inst, pOutput, /* Annot */"");
163 pOutput << "\n";
171 pOutput << "\
186 Disassemble(OutputFile &pOutput, const char *pTriple, const char *pFuncName, const uint8_t *pFunc, size_t FuncSize) argument
[all...]
/frameworks/compile/mclinker/lib/CodeGen/
H A DMCLDTargetMachine.cpp192 mcld::ToolOutputFile& pOutput,
218 pOutput.formatted_os(),
229 pOutput.formatted_os(),
239 pOutput.fd(),
249 pOutput.fd(),
259 pOutput.fd(),
269 pOutput.fd(),
280 llvm::formatted_raw_ostream &pOutput,
303 m_pLLVMTarget->createAsmStreamer(*Context, pOutput,
323 llvm::raw_ostream &pOutput,
191 addPassesToEmitFile(llvm::legacy::PassManagerBase &pPM, mcld::ToolOutputFile& pOutput, mcld::CodeGenFileType pFileType, CodeGenOpt::Level pOptLvl, mcld::Module& pModule, LinkerConfig& pConfig, bool pDisableVerify) argument
279 addCompilerPasses(llvm::legacy::PassManagerBase &pPM, llvm::formatted_raw_ostream &pOutput, llvm::MCContext *&Context) argument
322 addAssemblerPasses(llvm::legacy::PassManagerBase &pPM, llvm::raw_ostream &pOutput, llvm::MCContext *&Context) argument
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp247 bool Linker::emit(FileOutputBuffer& pOutput) argument
250 m_pObjLinker->emitOutput(pOutput);
253 m_pObjLinker->postProcessing(pOutput);
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameHdr.cpp40 void EhFrameHdr::emitOutput<32>(FileOutputBuffer& pOutput) argument
42 MemoryRegion ehframehdr_region = pOutput.request(m_EhFrameHdr.offset(),
45 MemoryRegion ehframe_region = pOutput.request(m_EhFrame.offset(),
H A DELFObjectWriter.cpp55 FileOutputBuffer& pOutput, LDSection *section)
71 region = pOutput.request(section->offset(), section->size());
122 FileOutputBuffer& pOutput)
136 target().emitInterp(pOutput);
139 target().emitDynNamePools(pModule, pOutput);
144 target().emitRegNamePools(pModule, pOutput);
155 writeSection(pModule, pOutput, *sect);
162 writeSection(pModule, pOutput, *sect);
164 emitShStrTab(target().getOutputFormat()->getShStrTab(), pModule, pOutput);
169 writeELFHeader<32>(m_Config, pModule, pOutput);
54 writeSection(Module& pModule, FileOutputBuffer& pOutput, LDSection *section) argument
121 writeObject(Module& pModule, FileOutputBuffer& pOutput) argument
374 emitShStrTab(const LDSection& pShStrTab, const Module& pModule, FileOutputBuffer& pOutput) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c316 pOutput pointer to output struct
338 H264SwDecOutput *pOutput)
351 if (pInput == NULL || pOutput == NULL)
353 DEC_API_TRC("H264SwDecDecode# ERROR: pInput or pOutput is NULL");
378 sprintf(pDecCont->str, "H264SwDecDecode# decInst %p pInput %p pOutput %p",
379 decInst, (void*)pInput, (void*)pOutput);
383 pOutput->pStrmCurrPos = NULL;
410 pOutput->pStrmCurrPos = tmpStream;
514 pOutput pointer to output structure
524 H264SwDecPicture *pOutput, u3
337 H264SwDecDecode(H264SwDecInst decInst, H264SwDecInput *pInput, H264SwDecOutput *pOutput) argument
523 H264SwDecNextPicture(H264SwDecInst decInst, H264SwDecPicture *pOutput, u32 flushBuffer) argument
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp786 bool ObjectLinker::emitOutput(FileOutputBuffer& pOutput) argument
788 return std::error_code() == getWriter()->writeObject(*m_pModule, pOutput);
793 bool ObjectLinker::postProcessing(FileOutputBuffer& pOutput) argument
796 normalSyncRelocationResult(pOutput);
798 partialSyncRelocationResult(pOutput);
803 m_LDBackend.postProcessing(pOutput);
807 void ObjectLinker::normalSyncRelocationResult(FileOutputBuffer& pOutput) argument
809 uint8_t* data = pOutput.getBufferStart();
860 void ObjectLinker::partialSyncRelocationResult(FileOutputBuffer& pOutput) argument
862 uint8_t* data = pOutput
888 writeRelocationResult(Relocation& pReloc, uint8_t* pOutput) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c1730 VO_CODECBUFFER * pOutput, /* o: The output audio data */
1759 gData->outputStream = (unsigned short*)pOutput->Buffer;
1763 pOutput->Length = gData->outputSize; /* get the output buffer length */
1728 voAMRWB_GetOutputData( VO_HANDLE hCodec, VO_CODECBUFFER * pOutput, VO_AUDIO_OUTPUTINFO * pAudioFormat ) argument
/frameworks/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.c544 * @param[out] pOutput The output from the conversion process.
549 FwdLockConv_Output_t *pOutput) {
555 pOutput->fromConvertData.pBuffer = malloc(pSession->outputBufferSize);
556 if (pOutput->fromConvertData.pBuffer == NULL) {
566 memcpy(pOutput->fromConvertData.pBuffer, pSession->topHeader, TOP_HEADER_SIZE);
567 memcpy((char *)pOutput->fromConvertData.pBuffer + TOP_HEADER_SIZE,
569 memcpy((char *)pOutput->fromConvertData.pBuffer + encryptedSessionKeyPos,
573 memset((char *)pOutput->fromConvertData.pBuffer + dataSignaturePos, 0,
575 memset((char *)pOutput->fromConvertData.pBuffer + headerSignaturePos, 0,
578 pOutput
548 FwdLockConv_WriteHeader(FwdLockConv_Session_t *pSession, FwdLockConv_Output_t *pOutput) argument
594 FwdLockConv_MatchMimeHeaders(FwdLockConv_Session_t *pSession, int ch, FwdLockConv_Output_t *pOutput) argument
832 FwdLockConv_WriteEncryptedChar(FwdLockConv_Session_t *pSession, unsigned char ch, FwdLockConv_Output_t *pOutput) argument
866 FwdLockConv_MatchBinaryEncodedData(FwdLockConv_Session_t *pSession, int ch, FwdLockConv_Output_t *pOutput) argument
934 FwdLockConv_MatchBase64EncodedData(FwdLockConv_Session_t *pSession, int ch, FwdLockConv_Output_t *pOutput) argument
1075 FwdLockConv_PushChar(FwdLockConv_Session_t *pSession, int ch, FwdLockConv_Output_t *pOutput) argument
1110 FwdLockConv_OpenSession(int *pSessionId, FwdLockConv_Output_t *pOutput) argument
1167 FwdLockConv_ConvertData(int sessionId, const void *pBuffer, size_t numBytes, FwdLockConv_Output_t *pOutput) argument
1200 FwdLockConv_CloseSession(int sessionId, FwdLockConv_Output_t *pOutput) argument
[all...]
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp968 FileOutputBuffer& pOutput)
977 MemoryRegion symtab_region = pOutput.request(symtab_sect.offset(),
979 MemoryRegion strtab_region = pOutput.request(strtab_sect.offset(),
1036 void GNULDBackend::emitDynNamePools(Module& pModule, FileOutputBuffer& pOutput) argument
1051 MemoryRegion symtab_region = pOutput.request(symtab_sect.offset(),
1053 MemoryRegion strtab_region = pOutput.request(strtab_sect.offset(),
1055 MemoryRegion dyn_region = pOutput.request(dyn_sect.offset(),
1085 emitGNUHashTab(symbols, pOutput);
1090 emitELFHashTab(symbols, pOutput);
1154 FileOutputBuffer& pOutput)
967 emitRegNamePools(const Module& pModule, FileOutputBuffer& pOutput) argument
1153 emitELFHashTab(const Module::SymbolTable& pSymtab, FileOutputBuffer& pOutput) argument
1192 emitGNUHashTab(Module::SymbolTable& pSymtab, FileOutputBuffer& pOutput) argument
1331 emitInterp(FileOutputBuffer& pOutput) argument
2687 postProcessing(FileOutputBuffer& pOutput) argument
[all...]

Completed in 390 milliseconds