Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/animation/
H A Dtransition_impl.cpp355 size_t endLen = strlen(end); in IsEndWith() local
356 if ((strLen < endLen) || (strLen == 0) || (endLen == 0)) { in IsEndWith()
360 while (endLen > 0) { in IsEndWith()
361 if (src[strLen - 1] != end[endLen - 1]) { in IsEndWith()
364 endLen--; in IsEndWith()
/ohos5.0/base/security/huks/frameworks/crypto_lite/cipher/src/
H A Dcipher_rsa.c44 size_t endLen = strlen(end); in RsaMallocPrivateKey() local
45 size_t keyFinalLen = *keyLen + startLen + endLen + 1; in RsaMallocPrivateKey()
67 ret = memcpy_s(privateKey + startLen + *keyLen, keyFinalLen - startLen - *keyLen, end, endLen); in RsaMallocPrivateKey()
85 size_t endLen = strlen(end); in RsaMallocPublicKey() local
86 size_t keyFinalLen = *keyLen + startLen + endLen + 1; in RsaMallocPublicKey()
108 ret = memcpy_s(pubKey + startLen + *keyLen, keyFinalLen - startLen - *keyLen, end, endLen); in RsaMallocPublicKey()
/ohos5.0/base/security/huks/frameworks/huks_standard/main/os_dependency/ipc/src/
H A Dhks_client_ipc_serialization.c412 const uint32_t endLen = strlen(end); in EncodeCertChain() local
415 int32_t ret = CheckAndCalculateSize(inBlob->size, beginLen + endLen, &tmpSize); in EncodeCertChain()
429 if (memcpy_s(tmpBlob.data + tmpSize - endLen, endLen, end, endLen) != EOK) { in EncodeCertChain()
435 …t = Base64Encode(inBlob->data, inBlob->size, tmpBlob.data + beginLen, tmpSize - beginLen - endLen); in EncodeCertChain()