HomeSort by relevance Sort by last modified time
    Searched refs:pRegion (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/compile/mclinker/lib/Support/
RegionFactory.cpp 27 void RegionFactory::destruct(MemoryRegion* pRegion)
29 destroy(pRegion);
30 deallocate(pRegion);
MemoryRegion.cpp 47 void MemoryRegion::Destroy(MemoryRegion*& pRegion)
49 if (NULL == pRegion)
52 if (pRegion->hasParent())
53 pRegion->parent()->removeRegion(*pRegion);
54 g_RegionFactory->destruct(pRegion);
55 pRegion = NULL;
MemoryArea.cpp 78 void MemoryArea::release(MemoryRegion* pRegion)
80 if (NULL == pRegion)
83 Space *space = pRegion->parent();
84 MemoryRegion::Destroy(pRegion);
  /frameworks/compile/mclinker/lib/Fragment/
RegionFragment.cpp 17 RegionFragment::RegionFragment(MemoryRegion& pRegion, SectionData* pSD)
18 : Fragment(Fragment::Region, pSD), m_Region(pRegion) {
  /frameworks/compile/mclinker/include/mcld/LD/
EhFrameReader.h 71 /// @param pRegion - the memory region that needs to handle with.
73 MemoryRegion& pRegion,
81 MemoryRegion& pRegion,
85 MemoryRegion& pRegion,
89 MemoryRegion& pRegion,
93 MemoryRegion& pRegion,
ELFObjectWriter.h 79 MemoryRegion& pRegion) const;
83 MemoryRegion& pRegion) const;
89 MemoryRegion& pRegion) const;
95 MemoryRegion& pRegion) const;
115 void emitSectionData(const SectionData& pSD, MemoryRegion& pRegion) const;
ELFReader.h 83 const MemoryRegion& pRegion,
95 const MemoryRegion& pRegion) const;
100 const MemoryRegion& pRegion) const;
173 const MemoryRegion& pRegion,
185 const MemoryRegion& pRegion) const;
190 const MemoryRegion& pRegion) const;
ELFReaderIf.h 74 const MemoryRegion& pRegion,
86 const MemoryRegion& pRegion) const = 0;
91 const MemoryRegion& pRegion) const = 0;
EhFrame.h 51 CIE(MemoryRegion& pRegion);
67 FDE(MemoryRegion& pRegion,
  /external/sonivox/arm-fm-22k/lib_src/
eas_fmsynth.c 160 static EAS_BOOL FM_SynthIsOutputOperator (const S_FM_REGION *pRegion, EAS_INT operIndex)
164 if ((pRegion->oper[operIndex].gain & 0xfc) == 0)
168 switch (pRegion->region.keyGroupAndFlags & 7)
202 pRegion->region.keyGroupAndFlags & 7); */ }
257 const S_FM_REGION *pRegion;
261 pRegion = GetFMRegionPtr(pSynth, pVoice);
262 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_ONE_SHOT)
274 fmReleaseTable[pRegion->oper[operIndex].velocityRelease & 0x0f],
275 fmScaleTable[pRegion->oper[operIndex].egKeyScale >> 4]);
327 const S_FM_REGION *pRegion;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_fmsynth.c 160 static EAS_BOOL FM_SynthIsOutputOperator (const S_FM_REGION *pRegion, EAS_INT operIndex)
164 if ((pRegion->oper[operIndex].gain & 0xfc) == 0)
168 switch (pRegion->region.keyGroupAndFlags & 7)
202 pRegion->region.keyGroupAndFlags & 7); */ }
257 const S_FM_REGION *pRegion;
261 pRegion = GetFMRegionPtr(pSynth, pVoice);
262 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_ONE_SHOT)
274 fmReleaseTable[pRegion->oper[operIndex].velocityRelease & 0x0f],
275 fmScaleTable[pRegion->oper[operIndex].egKeyScale >> 4]);
327 const S_FM_REGION *pRegion;
    [all...]
eas_wtsynth.c 310 const S_WT_REGION *pRegion;
339 pRegion = &(pSynth->pEAS->pWTRegions[regionIndex]);
340 pWTVoice->artIndex = pRegion->artIndex;
382 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_USE_WAVE_GENERATOR)
395 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
397 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
399 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
402 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_IS_LOOPED)
404 pWTVoice->loopStart = pWTVoice->phaseAccum + pRegion->loopStart;
405 pWTVoice->loopEnd = pWTVoice->phaseAccum + pRegion->loopEnd - 1
    [all...]
  /frameworks/compile/mclinker/lib/Target/X86/
X86LDBackend.h 70 /// @param pRegion - the region to write out data
73 MemoryRegion& pRegion) const;
125 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const = 0;
127 virtual uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
178 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
180 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
218 uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
220 uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
X86LDBackend.cpp 160 MemoryRegion& pRegion) const
162 assert(pRegion.size() && "Size of MemoryRegion is zero!");
174 unsigned char* buffer = pRegion.getBuffer();
197 RegionSize += emitGOTSectionData(pRegion);
201 RegionSize += emitGOTPLTSectionData(pRegion, FileFormat);
407 uint64_t X86_32GNULDBackend::emitGOTSectionData(MemoryRegion& pRegion) const
411 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.getBuffer());
427 uint64_t X86_32GNULDBackend::emitGOTPLTSectionData(MemoryRegion& pRegion,
434 uint32_t* buffer = reinterpret_cast<uint32_t*>(pRegion.getBuffer());
555 uint64_t X86_64GNULDBackend::emitGOTSectionData(MemoryRegion& pRegion) cons
    [all...]
  /frameworks/compile/mclinker/include/mcld/Fragment/
RegionFragment.h 27 RegionFragment(MemoryRegion& pRegion, SectionData* pSD = NULL);
  /frameworks/compile/mclinker/lib/LD/
EhFrameReader.cpp 169 MemoryRegion& pRegion,
173 ConstAddress handler = pRegion.start() + pToken.data_off;
174 ConstAddress cie_end = pRegion.end();
211 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
317 EhFrame::CIE* cie = new EhFrame::CIE(pRegion);
324 MemoryRegion& pRegion,
327 if (pToken.data_off == pRegion.size())
331 EhFrame::FDE* fde = new EhFrame::FDE(pRegion,
339 MemoryRegion& pRegion,
342 RegionFragment* frag = new RegionFragment(pRegion);
    [all...]
EhFrame.cpp 27 EhFrame::CIE::CIE(MemoryRegion& pRegion)
28 : RegionFragment(pRegion) {
34 EhFrame::FDE::FDE(MemoryRegion& pRegion,
37 : RegionFragment(pRegion),
  /frameworks/compile/mclinker/include/mcld/Support/
RegionFactory.h 36 void destruct(MemoryRegion* pRegion);
Space.h 67 void addRegion(MemoryRegion& pRegion)
70 void removeRegion(MemoryRegion& pRegion)
MemoryArea.h 73 void release(MemoryRegion* pRegion);
MemoryRegion.h 85 /// @param pRegion [in, out] pRegion is set to NULL if the destruction is
87 static void Destroy(MemoryRegion*& pRegion);
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.h 77 /// @param pRegion - the region to write out data
80 MemoryRegion& pRegion) const;
169 virtual uint64_t emitGOTSectionData(MemoryRegion& pRegion) const;
171 virtual uint64_t emitGOTPLTSectionData(MemoryRegion& pRegion,
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMGOT.h 71 uint64_t emit(MemoryRegion& pRegion);
ARMPLT.h 75 uint64_t emit(MemoryRegion& pRegion);
  /external/sonivox/arm-wt-22k/lib_src/
eas_wtsynth.c 310 const S_WT_REGION *pRegion;
339 pRegion = &(pSynth->pEAS->pWTRegions[regionIndex]);
340 pWTVoice->artIndex = pRegion->artIndex;
382 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_USE_WAVE_GENERATOR)
395 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
397 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
399 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
402 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_IS_LOOPED)
404 pWTVoice->loopStart = pWTVoice->phaseAccum + pRegion->loopStart;
405 pWTVoice->loopEnd = pWTVoice->phaseAccum + pRegion->loopEnd - 1
    [all...]

Completed in 3258 milliseconds

1 2