Home
last modified time | relevance | path

Searched refs:pRegion (Results 1 – 9 of 9) sorted by relevance

/external/sonivox/arm-wt-22k/lib_src/
Deas_wtsynth.c314 const S_WT_REGION *pRegion; in WT_StartVoice() local
343 pRegion = &(pSynth->pEAS->pWTRegions[regionIndex]); in WT_StartVoice()
344 pWTVoice->artIndex = pRegion->artIndex; in WT_StartVoice()
386 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_USE_WAVE_GENERATOR) in WT_StartVoice()
399 …->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex]; in WT_StartVoice()
401 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex]; in WT_StartVoice()
403 …->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex]; in WT_StartVoice()
406 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_IS_LOOPED) in WT_StartVoice()
409 pWTVoice->loopStart = pWTVoice->phaseAccum + pRegion->loopStart; in WT_StartVoice()
410 pWTVoice->loopEnd = pWTVoice->phaseAccum + pRegion->loopEnd - 1; in WT_StartVoice()
[all …]
Deas_voicemgt.c1438 const S_REGION *pRegion; in VMCheckKeyGroup() local
1454 pRegion = GetRegionPtr(pSynth, pVoiceMgr->voices[voiceNum].regionIndex); in VMCheckKeyGroup()
1455 if (keyGroup == (pRegion->keyGroupAndFlags & 0x0f00)) in VMCheckKeyGroup()
1479 pRegion = GetRegionPtr(pSynth, pVoiceMgr->voices[voiceNum].nextRegionIndex); in VMCheckKeyGroup()
1480 if (keyGroup == (pRegion->keyGroupAndFlags & 0x0f00)) in VMCheckKeyGroup()
1601 const S_REGION *pRegion; in VMStartVoice() local
1609 pRegion = GetRegionPtr(pSynth, regionIndex); in VMStartVoice()
1615 if ((pRegion->keyGroupAndFlags & REGION_FLAG_OFF_CHIP) == 0) in VMStartVoice()
1642 keyGroup = pRegion->keyGroupAndFlags & 0x0f00; in VMStartVoice()
1647 if ((pRegion->keyGroupAndFlags & REGION_FLAG_NON_SELF_EXCLUSIVE) == 0) in VMStartVoice()
[all …]
Deas_mdls.c2737 S_DLS_REGION *pRegion; in DumpDLS() local
2757 pRegion = &pEAS->pWTRegions[j]; in DumpDLS()
2758 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000028 , pRegion->gain); in DumpDLS()
2759 …S_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000029 , pRegion->region.rangeLow, pRegion->reg… in DumpDLS()
2760 … EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002a , pRegion->region.keyGroupAndFlags); in DumpDLS()
2761 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002b , pRegion->loopStart); in DumpDLS()
2762 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002c , pRegion->loopEnd); in DumpDLS()
2763 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002d , pRegion->tuning); in DumpDLS()
2764 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002e , pRegion->artIndex); in DumpDLS()
2765 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002f , pRegion->waveIndex); in DumpDLS()
[all …]
/external/swiftshader/src/Vulkan/
DVkBuffer.cpp106 void Buffer::copyTo(Buffer *dstBuffer, const VkBufferCopy &pRegion) const in copyTo()
108 copyTo(dstBuffer->getOffsetPointer(pRegion.dstOffset), pRegion.size, pRegion.srcOffset); in copyTo()
DVkBuffer.hpp36 void copyTo(Buffer *dstBuffer, const VkBufferCopy &pRegion) const;
DVkImage.hpp62 void copyTo(Image *dstImage, const VkImageCopy &pRegion) const;
/external/OpenCSD/decoder/source/mem_acc/
Dtrc_mem_acc_file.cpp302 FileRegionMemAccessor *pRegion = getRegionForAddress(s_address); in addrStartOfRange() local
303 if(pRegion) in addrStartOfRange()
304 bInRange = (pRegion->regionStartAddress() == s_address); in addrStartOfRange()
/external/icu/icu4c/source/i18n/
Dtznames_impl.cpp1801 char **pRegion = regions; in createInstance() local
1802 for (int32_t i = 0; i < numRegions; i++, pRegion++) { in createInstance()
1803 *pRegion = NULL; in createInstance()
1806 pRegion = regions; in createInstance()
1807 for (int32_t i = 0; i < numRegions; i++, pRegion++) { in createInstance()
1814 *pRegion = (char*)uprv_malloc(sizeof(char) * (len + 1)); in createInstance()
1815 if (*pRegion == NULL) { in createInstance()
1819 u_UCharsToChars(uregion, *pRegion, len); in createInstance()
1820 (*pRegion)[len] = 0; in createInstance()
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
DSubsamplingScaleImageView.java212 private Rect pRegion; field in SubsamplingScaleImageView
438 this.pRegion = previewSource.getSRegion(); in setImage()
524 pRegion = null; in reset()
1780 if (pRegion != null) { in onPreviewLoaded()
1781 …bitmap = Bitmap.createBitmap(previewBitmap, pRegion.left, pRegion.top, pRegion.width(), pRegion.he… in onPreviewLoaded()