/external/swiftshader/src/Vulkan/ |
D | VkImage.cpp | 73 void Image::copyTo(VkImage dstImage, const VkImageCopy& pRegion) in copyTo() argument 78 int srcBytesPerTexel = bytesPerTexel(pRegion.srcSubresource.aspectMask); in copyTo() 79 ASSERT(srcBytesPerTexel == dst->bytesPerTexel(pRegion.dstSubresource.aspectMask)); in copyTo() 81 if(!((pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in copyTo() 82 (pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) || in copyTo() 83 (pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT)) || in copyTo() 84 (pRegion.srcSubresource.baseArrayLayer != 0) || in copyTo() 85 (pRegion.srcSubresource.layerCount != 1)) in copyTo() 90 if(!((pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) || in copyTo() 91 (pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) || in copyTo() [all …]
|
D | VkBuffer.cpp | 87 void Buffer::copyTo(Buffer* dstBuffer, const VkBufferCopy& pRegion) const in copyTo() 89 copyTo(dstBuffer->getOffsetPointer(pRegion.dstOffset), pRegion.size, pRegion.srcOffset); in copyTo()
|
D | VkCommandBuffer.cpp | 184 ImageToImageCopy(VkImage pSrcImage, VkImage pDstImage, const VkImageCopy& pRegion) : in ImageToImageCopy() 185 srcImage(pSrcImage), dstImage(pDstImage), region(pRegion) in ImageToImageCopy() 202 BufferToBufferCopy(VkBuffer pSrcBuffer, VkBuffer pDstBuffer, const VkBufferCopy& pRegion) : in BufferToBufferCopy() 203 srcBuffer(pSrcBuffer), dstBuffer(pDstBuffer), region(pRegion) in BufferToBufferCopy() 220 ImageToBufferCopy(VkImage pSrcImage, VkBuffer pDstBuffer, const VkBufferImageCopy& pRegion) : in ImageToBufferCopy() 221 srcImage(pSrcImage), dstBuffer(pDstBuffer), region(pRegion) in ImageToBufferCopy() 238 BufferToImageCopy(VkBuffer pSrcBuffer, VkImage pDstImage, const VkBufferImageCopy& pRegion) : in BufferToImageCopy() 239 srcBuffer(pSrcBuffer), dstImage(pDstImage), region(pRegion) in BufferToImageCopy()
|
D | VkBuffer.hpp | 36 void copyTo(Buffer* dstBuffer, const VkBufferCopy& pRegion) const;
|
D | VkImage.hpp | 43 void copyTo(VkImage dstImage, const VkImageCopy& pRegion);
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_wtsynth.c | 314 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 …]
|
D | eas_voicemgt.c | 1449 const S_REGION *pRegion; in VMCheckKeyGroup() local 1465 pRegion = GetRegionPtr(pSynth, pVoiceMgr->voices[voiceNum].regionIndex); in VMCheckKeyGroup() 1466 if (keyGroup == (pRegion->keyGroupAndFlags & 0x0f00)) in VMCheckKeyGroup() 1490 pRegion = GetRegionPtr(pSynth, pVoiceMgr->voices[voiceNum].nextRegionIndex); in VMCheckKeyGroup() 1491 if (keyGroup == (pRegion->keyGroupAndFlags & 0x0f00)) in VMCheckKeyGroup() 1612 const S_REGION *pRegion; in VMStartVoice() local 1620 pRegion = GetRegionPtr(pSynth, regionIndex); in VMStartVoice() 1626 if ((pRegion->keyGroupAndFlags & REGION_FLAG_OFF_CHIP) == 0) in VMStartVoice() 1653 keyGroup = pRegion->keyGroupAndFlags & 0x0f00; in VMStartVoice() 1658 if ((pRegion->keyGroupAndFlags & REGION_FLAG_NON_SELF_EXCLUSIVE) == 0) in VMStartVoice() [all …]
|
D | eas_mdls.c | 2732 S_DLS_REGION *pRegion; in DumpDLS() local 2752 pRegion = &pEAS->pWTRegions[j]; in DumpDLS() 2753 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000028 , pRegion->gain); in DumpDLS() 2754 …S_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x00000029 , pRegion->region.rangeLow, pRegion->reg… in DumpDLS() 2755 … EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002a , pRegion->region.keyGroupAndFlags); in DumpDLS() 2756 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002b , pRegion->loopStart); in DumpDLS() 2757 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002c , pRegion->loopEnd); in DumpDLS() 2758 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002d , pRegion->tuning); in DumpDLS() 2759 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002e , pRegion->artIndex); in DumpDLS() 2760 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x19299ed4, 0x0000002f , pRegion->waveIndex); in DumpDLS() [all …]
|
/external/icu/icu4c/source/i18n/ |
D | tznames_impl.cpp | 1797 char **pRegion = regions; in createInstance() local 1798 for (int32_t i = 0; i < numRegions; i++, pRegion++) { in createInstance() 1799 *pRegion = NULL; in createInstance() 1802 pRegion = regions; in createInstance() 1803 for (int32_t i = 0; i < numRegions; i++, pRegion++) { in createInstance() 1810 *pRegion = (char*)uprv_malloc(sizeof(char) * (len + 1)); in createInstance() 1811 if (*pRegion == NULL) { in createInstance() 1815 u_UCharsToChars(uregion, *pRegion, len); in createInstance() 1816 (*pRegion)[len] = 0; in createInstance()
|
/external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/ |
D | SubsamplingScaleImageView.java | 212 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()
|