Searched refs:pOutput (Results 1 - 25 of 31) sorted by relevance

12

/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...]
H A DRSExecutable.cpp162 void RSExecutable::dumpDisassembly(OutputFile &pOutput) const {
164 if (pOutput.hasError()) {
185 Disassemble(pOutput, DEFAULT_TARGET_TRIPLE_STRING, func_name,
/frameworks/compile/libbcc/include/bcc/Support/
H A DDisassembler.h42 DisassembleResult Disassemble(llvm::raw_ostream &pOutput, const char *pTriple,
46 DisassembleResult Disassemble(OutputFile &pOutput, const char *pTriple,
/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrameHdr.h47 void emitOutput(FileOutputBuffer& pOutput) argument
69 void EhFrameHdr::emitOutput<32>(FileOutputBuffer& pOutput);
H A DObjectWriter.h30 FileOutputBuffer& pOutput) = 0;
H A DELFObjectWriter.h41 std::error_code writeObject(Module& pModule, FileOutputBuffer& pOutput);
47 FileOutputBuffer& pOutput, LDSection *section);
57 FileOutputBuffer& pOutput) const;
66 FileOutputBuffer& pOutput) const;
70 void emitProgramHeader(FileOutputBuffer& pOutput) const;
75 FileOutputBuffer& pOutput);
/frameworks/compile/mclinker/include/mcld/Object/
H A DObjectLinker.h123 bool emitOutput(FileOutputBuffer& pOutput);
126 bool postProcessing(FileOutputBuffer& pOutput);
153 void normalSyncRelocationResult(FileOutputBuffer& pOutput);
157 void partialSyncRelocationResult(FileOutputBuffer& pOutput);
161 void writeRelocationResult(Relocation& pReloc, uint8_t* pOutput);
/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/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...]
H A DLVREV_Private.h174 LVM_INT32 *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/av/drm/libdrmframework/plugins/forward-lock/internal-format/converter/
H A DFwdLockConv.h163 * @param[out] pOutput The output from the conversion process (initialized).
170 FwdLockConv_Status_t FwdLockConv_OpenSession(int *pSessionId, FwdLockConv_Output_t *pOutput);
179 * @param[in,out] pOutput The output from the conversion process (allocated/reallocated).
195 FwdLockConv_Output_t *pOutput);
203 * @param[in,out] pOutput The output from the conversion process (deallocated and overwritten).
211 FwdLockConv_Status_t FwdLockConv_CloseSession(int sessionId, FwdLockConv_Output_t *pOutput);
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/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/include/mcld/CodeGen/
H A DTargetMachine.h71 mcld::ToolOutputFile& pOutput,
88 llvm::formatted_raw_ostream &pOutput,
92 llvm::raw_ostream &pOutput,
/frameworks/av/media/libeffects/lvm/lib/StereoWidening/src/
H A DLVCS_ReverbGenerator.h83 LVM_INT16 *pOutput,
/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/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h144 H264SwDecOutput *pOutput);
150 H264SwDecPicture *pOutput,
/frameworks/compile/mclinker/include/mcld/
H A DLinker.h55 bool emit(FileOutputBuffer& pOutput);
/frameworks/compile/mclinker/lib/LD/
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...]
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(),
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSExecutable.h94 // Disassemble and dump the relocated functions to the pOutput.
95 void dumpDisassembly(OutputFile &pOutput) const;
/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/mclinker/include/mcld/Target/
H A DGNULDBackend.h124 virtual void emitRegNamePools(const Module& pModule, FileOutputBuffer& pOutput);
127 virtual void emitDynNamePools(Module& pModule, FileOutputBuffer& pOutput);
131 FileOutputBuffer& pOutput);
135 FileOutputBuffer& pOutput);
142 virtual void emitInterp(FileOutputBuffer& pOutput);
427 void postProcessing(FileOutputBuffer& pOutput);

Completed in 2304 milliseconds

12