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

  /external/swiftshader/src/Vulkan/
VkImage.cpp 73 void Image::copyTo(VkImage dstImage, const VkImageCopy& pRegion)
78 int srcBytesPerTexel = bytesPerTexel(pRegion.srcSubresource.aspectMask);
79 ASSERT(srcBytesPerTexel == dst->bytesPerTexel(pRegion.dstSubresource.aspectMask));
81 if(!((pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) ||
82 (pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) ||
83 (pRegion.srcSubresource.aspectMask == VK_IMAGE_ASPECT_STENCIL_BIT)) ||
84 (pRegion.srcSubresource.baseArrayLayer != 0) ||
85 (pRegion.srcSubresource.layerCount != 1))
90 if(!((pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_COLOR_BIT) ||
91 (pRegion.dstSubresource.aspectMask == VK_IMAGE_ASPECT_DEPTH_BIT) |
    [all...]
VkBuffer.cpp 87 void Buffer::copyTo(Buffer* dstBuffer, const VkBufferCopy& pRegion) const
89 copyTo(dstBuffer->getOffsetPointer(pRegion.dstOffset), pRegion.size, pRegion.srcOffset);
VkBuffer.hpp 36 void copyTo(Buffer* dstBuffer, const VkBufferCopy& pRegion) const;
VkImage.hpp 43 void copyTo(VkImage dstImage, const VkImageCopy& pRegion);
VkCommandBuffer.cpp 184 ImageToImageCopy(VkImage pSrcImage, VkImage pDstImage, const VkImageCopy& pRegion) :
185 srcImage(pSrcImage), dstImage(pDstImage), region(pRegion)
202 BufferToBufferCopy(VkBuffer pSrcBuffer, VkBuffer pDstBuffer, const VkBufferCopy& pRegion) :
203 srcBuffer(pSrcBuffer), dstBuffer(pDstBuffer), region(pRegion)
220 ImageToBufferCopy(VkImage pSrcImage, VkBuffer pDstBuffer, const VkBufferImageCopy& pRegion) :
221 srcImage(pSrcImage), dstBuffer(pDstBuffer), region(pRegion)
238 BufferToImageCopy(VkBuffer pSrcBuffer, VkImage pDstImage, const VkBufferImageCopy& pRegion) :
239 srcBuffer(pSrcBuffer), dstImage(pDstImage), region(pRegion)
  /external/sonivox/arm-wt-22k/lib_src/
eas_wtsynth.c 314 const S_WT_REGION *pRegion;
343 pRegion = &(pSynth->pEAS->pWTRegions[regionIndex]);
344 pWTVoice->artIndex = pRegion->artIndex;
386 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_USE_WAVE_GENERATOR)
399 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
401 pWTVoice->phaseAccum = pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
403 pWTVoice->phaseAccum = (EAS_U32) pSynth->pEAS->pSamples + pSynth->pEAS->pSampleOffsets[pRegion->waveIndex];
406 if (pRegion->region.keyGroupAndFlags & REGION_FLAG_IS_LOOPED)
409 pWTVoice->loopStart = pWTVoice->phaseAccum + pRegion->loopStart;
410 pWTVoice->loopEnd = pWTVoice->phaseAccum + pRegion->loopEnd - 1
    [all...]
eas_voicemgt.c     [all...]
eas_mdls.c     [all...]
  /external/icu/icu4c/source/i18n/
tznames_impl.cpp     [all...]
  /external/subsampling-scale-image-view/library/src/main/java/com/davemorrissey/labs/subscaleview/
SubsamplingScaleImageView.java 212 private Rect pRegion;
438 this.pRegion = previewSource.getSRegion();
524 pRegion = null;
    [all...]

Completed in 1684 milliseconds