Home
last modified time | relevance | path

Searched refs:offsetToData (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/datastore/
H A Drender_data_store_pod.cpp70 const auto offsetToData = iter->second; in DestroyPod() local
71 …PLUGIN_ASSERT(offsetToData.index + offsetToData.byteSize <= static_cast<uint32_t>(dataStore_.size(… in DestroyPod()
72 const auto first = dataStore_.cbegin() + static_cast<int32_t>(offsetToData.index); in DestroyPod()
73 const auto last = first + static_cast<int32_t>(offsetToData.byteSize); in DestroyPod()
78 if (nameToOffset.second.index > offsetToData.index) { in DestroyPod()
79 nameToOffset.second.index -= offsetToData.byteSize; in DestroyPod()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/gltf/
H A Dgltf2_util.cpp960 string_view ParseDataUri(const string_view in, size_t& offsetToData) in ParseDataUri() argument
962 offsetToData = 0u; in ParseDataUri()
973 offsetToData = pos + 1u; in ParseDataUri()
992 size_t offsetToData = 0u; in DecodeDataURI() local
994 if (auto const mimeType = ParseDataUri(in, offsetToData); mimeType.empty()) { in DecodeDataURI()
999 in.remove_prefix(offsetToData); in DecodeDataURI()
1016 size_t offsetToData; in IsDataURI() local
1017 if (auto const mimeType = ParseDataUri(in, offsetToData); !mimeType.empty()) { in IsDataURI()
1095 size_t offsetToData; in LoadUri() local
1096 if (auto const mimeType = ParseDataUri(uri, offsetToData); !mimeType.empty()) { in LoadUri()
H A Dgltf2_util.h74 BASE_NS::string_view ParseDataUri(const BASE_NS::string_view in, size_t& offsetToData); in CORE3D_BEGIN_NAMESPACE()