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

12

/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrameHdr.h50 void emitOutput(MemoryArea& pOutput) argument
71 void EhFrameHdr::emitOutput<32>(MemoryArea& pOutput);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFMCLinker.cpp18 MemoryArea& pOutput)
19 : ELFMCLinker(pConfig, pModule, pOutput) {
16 ARMELFMCLinker(LinkerConfig& pConfig, mcld::Module &pModule, MemoryArea& pOutput) argument
H A DARMMCLinker.cpp25 MemoryArea& pOutput)
37 return new ARMELFMCLinker(pConfig, pModule, pOutput);
22 createARMMCLinker(const std::string& pTriple, LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
/frameworks/compile/mclinker/lib/Target/
H A DELFMCLinker.cpp21 MemoryArea& pOutput)
22 : MCLinker(pConfig, pModule, pOutput) {
19 ELFMCLinker(LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonELFMCLinker.cpp16 MemoryArea& pOutput)
17 : ELFMCLinker(pConfig, pModule, pOutput) {
14 HexagonELFMCLinker(LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
H A DHexagonMCLinker.cpp24 MemoryArea& pOutput)
37 return new HexagonELFMCLinker(pConfig, pModule, pOutput);
21 createHexagonMCLinker(const std::string &pTriple, LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsELFMCLinker.cpp16 MemoryArea& pOutput)
17 : ELFMCLinker(pConfig, pModule, pOutput) {
14 MipsELFMCLinker(LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
H A DMipsMCLinker.cpp27 MemoryArea& pOutput)
39 return new MipsELFMCLinker(pConfig, pModule, pOutput);
24 createMipsMCLinker(const std::string &pTriple, LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
/frameworks/compile/mclinker/lib/Target/X86/
H A DX86ELFMCLinker.cpp16 MemoryArea& pOutput)
17 : ELFMCLinker(pConfig, pModule, pOutput) {
14 X86ELFMCLinker(LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
H A DX86MCLinker.cpp25 MemoryArea& pOutput)
37 return new X86ELFMCLinker(pConfig, pModule, pOutput);
22 createX86MCLinker(const std::string &pTriple, LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
/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.cpp139 inline bool helper_write_list(OutputFile &pOutput, argument
154 if (pOutput.write(&item, sizeof(item)) != sizeof(item)) {
156 rsinfo::GetItemTypeName<ItemType>(), pOutput.getName().c_str(),
157 pOutput.getErrorMessage().c_str());
167 bool RSInfo::write(OutputFile &pOutput) { argument
168 off_t initial_offset = pOutput.tell();
169 const char *output_filename = pOutput.getName().c_str();
171 if (pOutput.hasError()) {
173 output_filename, pOutput.getErrorMessage().c_str());
183 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.c208 VO_U32 VO_API voAACEncGetOutputData(VO_HANDLE hCodec, VO_CODECBUFFER * pOutput, VO_AUDIO_OUTPUTINFO * pOutInfo) argument
236 pOutput->Length = 0;
243 if(NULL == pOutput || NULL == pOutput->Buffer || pOutput->Length < (6144/8)*hAacEnc->config.nChannelsOut/(sizeof(Word32)))
251 pOutput->Buffer,
252 &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.cpp188 mcld::ToolOutputFile& pOutput,
214 pOutput.formatted_os(),
225 pOutput.mem_os(),
235 pOutput.memory(),
245 pOutput.memory(),
255 pOutput.memory(),
265 pOutput.memory(),
275 llvm::formatted_raw_ostream &pOutput,
299 getTarget().get()->createAsmStreamer(*Context, pOutput,
320 llvm::raw_ostream &pOutput,
187 addPassesToEmitFile(PassManagerBase &pPM, mcld::ToolOutputFile& pOutput, mcld::CodeGenFileType pFileType, CodeGenOpt::Level pOptLvl, mcld::Module& pModule, LinkerConfig& pConfig, bool pDisableVerify) argument
274 addCompilerPasses(PassManagerBase &pPM, llvm::formatted_raw_ostream &pOutput, llvm::MCContext *&Context) argument
319 addAssemblerPasses(PassManagerBase &pPM, llvm::raw_ostream &pOutput, llvm::MCContext *&Context) argument
356 addLinkerPasses(PassManagerBase &pPM, LinkerConfig& pConfig, mcld::Module& pModule, mcld::MemoryArea& pOutput, llvm::MCContext *&Context) argument
[all...]
H A DMCLinker.cpp193 MemoryArea& pOutput)
197 m_Output(pOutput),
191 MCLinker(LinkerConfig& pConfig, mcld::Module& pModule, MemoryArea& pOutput) argument
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp234 bool Linker::emit(MemoryArea& pOutput) argument
237 m_pObjLinker->emitOutput(pOutput);
240 m_pObjLinker->postProcessing(pOutput);
/frameworks/compile/mclinker/lib/LD/
H A DEhFrameHdr.cpp42 void EhFrameHdr::emitOutput<32>(MemoryArea& pOutput) argument
45 pOutput.request(m_EhFrameHdr.offset(), m_EhFrameHdr.size());
48 pOutput.request(m_EhFrame.offset(),
106 pOutput.release(ehframehdr_region);
107 pOutput.release(ehframe_region);
H A DELFObjectWriter.cpp53 void ELFObjectWriter::writeSection(MemoryArea& pOutput, LDSection *section) argument
68 region = pOutput.request(section->offset(), section->size());
117 MemoryArea& pOutput)
131 target().emitInterp(pOutput);
134 target().emitDynNamePools(pModule, pOutput);
139 target().emitRegNamePools(pModule, pOutput);
150 writeSection(pOutput, *sect);
157 writeSection(pOutput, *sect);
159 emitShStrTab(target().getOutputFormat()->getShStrTab(), pModule, pOutput);
164 writeELFHeader<32>(m_Config, pModule, pOutput);
116 writeObject(Module& pModule, MemoryArea& pOutput) argument
360 emitShStrTab(const LDSection& pShStrTab, const Module& pModule, MemoryArea& pOutput) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A DH264SwDecApi.c313 pOutput pointer to output struct
335 H264SwDecOutput *pOutput)
348 if (pInput == NULL || pOutput == NULL)
350 DEC_API_TRC("H264SwDecDecode# ERROR: pInput or pOutput is NULL");
375 sprintf(pDecCont->str, "H264SwDecDecode# decInst %p pInput %p pOutput %p",
376 decInst, (void*)pInput, (void*)pOutput);
380 pOutput->pStrmCurrPos = NULL;
407 pOutput->pStrmCurrPos = tmpStream;
511 pOutput pointer to output structure
521 H264SwDecPicture *pOutput, u3
334 H264SwDecDecode(H264SwDecInst decInst, H264SwDecInput *pInput, H264SwDecOutput *pOutput) argument
520 H264SwDecNextPicture(H264SwDecInst decInst, H264SwDecPicture *pOutput, u32 flushBuffer) argument
[all...]
/frameworks/compile/mclinker/lib/Fragment/
H A DFragmentLinker.cpp134 void FragmentLinker::syncRelocationResult(MemoryArea& pOutput) argument
137 normalSyncRelocationResult(pOutput);
139 partialSyncRelocationResult(pOutput);
143 void FragmentLinker::normalSyncRelocationResult(MemoryArea& pOutput) argument
145 MemoryRegion* region = pOutput.request(0, pOutput.handler()->size());
190 pOutput.clear();
193 void FragmentLinker::partialSyncRelocationResult(MemoryArea& pOutput) argument
195 MemoryRegion* region = pOutput.request(0, pOutput
225 writeRelocationResult(Relocation& pReloc, uint8_t* pOutput) argument
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp518 bool ObjectLinker::emitOutput(MemoryArea& pOutput) argument
520 return llvm::errc::success == getWriter()->writeObject(*m_pModule, pOutput);
525 bool ObjectLinker::postProcessing(MemoryArea& pOutput) argument
527 m_pLinker->syncRelocationResult(pOutput);
532 m_LDBackend.postProcessing(pOutput);
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c1726 VO_CODECBUFFER * pOutput, /* o: The output audio data */
1755 gData->outputStream = (unsigned short*)pOutput->Buffer;
1759 pOutput->Length = gData->outputSize; /* get the output buffer length */
1724 voAMRWB_GetOutputData( VO_HANDLE hCodec, VO_CODECBUFFER * pOutput, VO_AUDIO_OUTPUTINFO * pAudioFormat ) argument

Completed in 1476 milliseconds

12