Home
last modified time | relevance | path

Searched refs:pOffset (Results 1 – 25 of 25) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkBuffer.cpp105 void Buffer::copyFrom(const void *srcMemory, VkDeviceSize pSize, VkDeviceSize pOffset) in copyFrom() argument
107 ASSERT((pSize + pOffset) <= size); in copyFrom()
109 memcpy(getOffsetPointer(pOffset), srcMemory, pSize); in copyFrom()
112 void Buffer::copyTo(void *dstMemory, VkDeviceSize pSize, VkDeviceSize pOffset) const in copyTo()
114 ASSERT((pSize + pOffset) <= size); in copyTo()
116 memcpy(dstMemory, getOffsetPointer(pOffset), pSize); in copyTo()
DVkDeviceMemory.cpp279 VkResult DeviceMemory::map(VkDeviceSize pOffset, VkDeviceSize pSize, void **ppData) in map() argument
281 *ppData = getOffsetPointer(pOffset); in map()
291 void *DeviceMemory::getOffsetPointer(VkDeviceSize pOffset) const in getOffsetPointer()
294 return reinterpret_cast<char *>(buffer) + pOffset; in getOffsetPointer()
DVkDeviceMemory.hpp83 void *getOffsetPointer(VkDeviceSize pOffset) const;
/third_party/openh264/codec/decoder/core/src/
Ddecode_mb_aux.cpp170 int32_t* pOffset = pBlockOffset; in GetI4LumaIChromaAddrTable() local
179 pOffset[i] = (kuiX + kiYStride * kuiY) << 2; in GetI4LumaIChromaAddrTable()
185 pOffset[16 + i] = in GetI4LumaIChromaAddrTable()
186 pOffset[20 + i] = ((kuiA & 0x07) + (kiUVStride/*>>1*/) * (kuiA >> 3)) << 2; in GetI4LumaIChromaAddrTable()
Dau_parser.cpp66 uint8_t* DetectStartCodePrefix (const uint8_t* kpBuf, int32_t* pOffset, int32_t iBufSize) { in DetectStartCodePrefix() argument
81 *pOffset = (int32_t) (((uintptr_t)pBits) - ((uintptr_t)kpBuf)); in DetectStartCodePrefix()
/third_party/openh264/codec/encoder/core/src/
Dau_set.cpp470 int32_t iHeight, SCropOffset& pOffset) { in WelsGetPaddingOffset() argument
478 pOffset.iCropLeft = 0; in WelsGetPaddingOffset()
479 pOffset.iCropRight = (iWidth - iActualWidth) / 2; in WelsGetPaddingOffset()
480 pOffset.iCropTop = 0; in WelsGetPaddingOffset()
481 pOffset.iCropBottom = (iHeight - iActualHeight) / 2; in WelsGetPaddingOffset()
/third_party/openh264/codec/decoder/core/inc/
Dau_parser.h65 uint8_t* DetectStartCodePrefix (const uint8_t* kpBuf, int32_t* pOffset, int32_t iBufSize);
/third_party/skia/third_party/externals/d3d12allocator/src/
DD3D12MemAlloc.cpp2213 UINT64* pOffset,
2965 UINT64* pOffset, in CheckAllocation() argument
2972 D3D12MA_ASSERT(pOffset != NULL && pZeroInitialized != NULL); in CheckAllocation()
2990 *pOffset = suballoc.offset; in CheckAllocation()
2995 *pOffset += D3D12MA_DEBUG_MARGIN; in CheckAllocation()
2999 *pOffset = AlignUp(*pOffset, allocAlignment); in CheckAllocation()
3002 const UINT64 paddingBegin = *pOffset - suballoc.offset; in CheckAllocation()
3014 … *pZeroInitialized = m_ZeroInitializedRange.IsRangeZeroInitialized(*pOffset, *pOffset + allocSize); in CheckAllocation()
5646 HRESULT VirtualBlock::Allocate(const VIRTUAL_ALLOCATION_DESC* pDesc, UINT64* pOffset) in Allocate() argument
5648 if(!pDesc || !pOffset || pDesc->Size == 0 || !IsPow2(pDesc->Alignment)) in Allocate()
[all …]
DD3D12MemAlloc.h1444 HRESULT Allocate(const VIRTUAL_ALLOCATION_DESC* pDesc, UINT64* pOffset);
/third_party/flutter/skia/third_party/externals/icu/source/common/
Ducnvscsu.cpp964 getDynamicOffset(uint32_t c, uint32_t *pOffset) { in getDynamicOffset() argument
969 *pOffset=fixedOffsets[i]; in getDynamicOffset()
982 *pOffset=c&0x7fffff80; in getDynamicOffset()
986 *pOffset=c&0x7fffff80; in getDynamicOffset()
/third_party/skia/third_party/externals/icu/source/common/
Ducnvscsu.cpp964 getDynamicOffset(uint32_t c, uint32_t *pOffset) { in getDynamicOffset() argument
969 *pOffset=fixedOffsets[i]; in getDynamicOffset()
982 *pOffset=c&0x7fffff80; in getDynamicOffset()
986 *pOffset=c&0x7fffff80; in getDynamicOffset()
/third_party/node/deps/icu-small/source/common/
Ducnvscsu.cpp964 getDynamicOffset(uint32_t c, uint32_t *pOffset) { in getDynamicOffset() argument
969 *pOffset=fixedOffsets[i]; in getDynamicOffset()
982 *pOffset=c&0x7fffff80; in getDynamicOffset()
986 *pOffset=c&0x7fffff80; in getDynamicOffset()
/third_party/icu/icu4c/source/common/
Ducnvscsu.cpp964 getDynamicOffset(uint32_t c, uint32_t *pOffset) { in getDynamicOffset() argument
969 *pOffset=fixedOffsets[i]; in getDynamicOffset()
982 *pOffset=c&0x7fffff80; in getDynamicOffset()
986 *pOffset=c&0x7fffff80; in getDynamicOffset()
/third_party/skia/third_party/vulkanmemoryallocator/include/
Dvk_mem_alloc.h6363 VkDeviceSize* pOffset,
9376 VkDeviceSize* pOffset, in CheckAllocation() argument
9384 VMA_ASSERT(pOffset != VMA_NULL); in CheckAllocation()
9417 *pOffset = suballocItem->offset; in CheckAllocation()
9422 *pOffset += VMA_DEBUG_MARGIN; in CheckAllocation()
9426 *pOffset = VmaAlignUp(*pOffset, allocAlignment); in CheckAllocation()
9438 … if(VmaBlocksOnSamePage(prevSuballoc.offset, prevSuballoc.size, *pOffset, bufferImageGranularity)) in CheckAllocation()
9452 *pOffset = VmaAlignUp(*pOffset, bufferImageGranularity); in CheckAllocation()
9458 if(*pOffset >= suballocItem->offset + suballocItem->size) in CheckAllocation()
9464 const VkDeviceSize paddingBegin = *pOffset - suballocItem->offset; in CheckAllocation()
[all …]
/third_party/glslang/glslang/MachineIndependent/
Dreflection.cpp1080 TObjectReflection::TObjectReflection(const std::string &pName, const TType &pType, int pOffset, int… in TObjectReflection() argument
1082 …: name(pName), offset(pOffset), glDefineType(pGLDefineType), size(pSize), index(pIndex), counterIn… in TObjectReflection()
/third_party/glslang/glslang/Public/
DShaderLang.h740 …GLSLANG_EXPORT TObjectReflection(const std::string& pName, const TType& pType, int pOffset, int pG…
/third_party/vk-gl-cts/build/external/vulkancts/framework/vulkan/
DvkDeviceDriverImpl.inl2037 …tEXT (VkDevice device, VkDescriptorSetLayout layout, uint32_t binding, VkDeviceSize* pOffset) const
2039 m_vk.getDescriptorSetLayoutBindingOffsetEXT(device, layout, binding, pOffset);
DvkConcreteDeviceInterface.inl412 … (VkDevice device, VkDescriptorSetLayout layout, uint32_t binding, VkDeviceSize* pOffset) const;
DvkVirtualDeviceInterface.inl412 …(VkDevice device, VkDescriptorSetLayout layout, uint32_t binding, VkDeviceSize* pOffset) const = 0;
DvkNullDriverImpl.inl3549 …gOffsetEXT (VkDevice device, VkDescriptorSetLayout layout, uint32_t binding, VkDeviceSize* pOffset) argument
3554 DE_UNREF(pOffset);
DvkFunctionPointerTypes.inl580 …nc) (VkDevice device, VkDescriptorSetLayout layout, uint32_t binding, VkDeviceSize* pOffset);
DvkVulkan_c.inl15245 …OffsetEXT)(VkDevice device, VkDescriptorSetLayout layout, deUint32 binding, VkDeviceSize* pOffset);
15266 VkDeviceSize* pOffset);
/third_party/vk-gl-cts/external/vulkan-docs/src/proposals/
DVK_EXT_descriptor_buffer.adoc163 VkDeviceSize* pOffset);
/third_party/vk-gl-cts/external/vulkan-docs/src/chapters/
Ddescriptorsets.adoc5433 * pname:pOffset is a pointer to basetype:VkDeviceSize where the byte
/third_party/sqlite/src/
Dsqlite3.c57631 i64 *pOffset, /* Offset of record to playback */
57673 rc = read32bits(jfd, *pOffset, &pgno);
57675 rc = sqlite3OsRead(jfd, (u8*)aData, pPager->pageSize, (*pOffset)+4);
57677 *pOffset += pPager->pageSize + 4 + isMainJrnl*4;
57692 rc = read32bits(jfd, (*pOffset)-4, &cksum);
57759 isSynced = pPager->noSync || (*pOffset <= pPager->journalHdr);