Home
last modified time | relevance | path

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

/ohos5.0/drivers/hdf_core/framework/tools/hc-gen/src/
H A Dbytecode_gen.cpp159 uint32_t subSize = 0; in CalculateSize() local
161 subSize += child->GetSize(); in CalculateSize()
165 object->SetSize(subSize + size); in CalculateSize()
166 object->SetSubSize(subSize); in CalculateSize()
216 auto subSize = current->GetSubSize(); in ByteCodeWriteWalk() local
217 Write(subSize); in ByteCodeWriteWalk()
/ohos5.0/foundation/communication/nfc/frameworks/js/napi/tag/
H A Dnfc_napi_tag.cpp454 static void MergeAllDesc(const napi_property_descriptor* subDesc, size_t subSize, in MergeAllDesc() argument
458 if (i < subSize) { in MergeAllDesc()
461 allFuncDesc[i] = g_baseClassDesc[i - subSize]; in MergeAllDesc()
/ohos5.0/foundation/multimedia/image_framework/frameworks/innerkitsimpl/codec/src/
H A Dimage_source.cpp2741 uint32_t subSize = size - (sub - data1); in DecodeBase64() local
2742 IMAGE_LOGD("[ImageSource]Base64 image input: size %{public}u.", subSize); in DecodeBase64()
2745 SkBase64::Error error = SkBase64::Decode(sub, subSize, nullptr, &outputLen); in DecodeBase64()
2752 error = SkBase64::Decode(sub, subSize, resData->writable_data(), &outputLen); in DecodeBase64()
2762 if (base64Decoder.decode(sub, subSize) != SkBase64::kNoError) { in DecodeBase64()