Home
last modified time | relevance | path

Searched refs:baseChars_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/account/os_account/services/accountmgr/src/osaccount/
H A Dos_account_photo_operator.cpp33 baseChars_ = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" in OsAccountPhotoOperator()
48 strEncode += baseChars_[tmpArray[SIZET_ONE] >> SIZET_TWO]; in EnCode()
49 …strEncode += baseChars_[((tmpArray[SIZET_ONE] << SIZET_FOUR) | (tmpArray[SIZET_TWO] >> SIZET_FOUR)… in EnCode()
51 strEncode += baseChars_[tmpArray[SIZET_THREE] & 0x3F]; in EnCode()
60 strEncode += baseChars_[(tmpArray[SIZET_ONE] & 0xFC) >> SIZET_TWO]; in EnCode()
61 strEncode += baseChars_[((tmpArray[SIZET_ONE] & 0x03) << SIZET_FOUR)]; in EnCode()
66 strEncode += baseChars_[(tmpArray[SIZET_ONE] & 0xFC) >> SIZET_TWO]; in EnCode()
67 strEncode += baseChars_[((tmpArray[SIZET_ONE] & 0x03) << SIZET_FOUR) | in EnCode()
69 strEncode += baseChars_[((tmpArray[SIZET_TWO] & 0x0F) << SIZET_TWO)]; in EnCode()
95 char_array_4[i] = baseChars_.find(char_array_4[i]); in DeCode()
[all …]
/ohos5.0/base/account/os_account/services/accountmgr/include/osaccount/
H A Dos_account_photo_operator.h33 std::string baseChars_; variable