Home
last modified time | relevance | path

Searched refs:padLen (Results 1 – 10 of 10) sorted by relevance

/third_party/FreeBSD/sys/crypto/rijndael/
Drijndael-api-fst.c203 int i, numBlocks, padLen; in rijndael_padEncrypt() local
224 padLen = 16 - (inputOctets - 16*numBlocks); in rijndael_padEncrypt()
225 if (padLen <= 0 || padLen > 16) in rijndael_padEncrypt()
227 memcpy(block, input, 16 - padLen); in rijndael_padEncrypt()
228 for (cp = block + 16 - padLen; cp < block + 16; cp++) in rijndael_padEncrypt()
229 *cp = padLen; in rijndael_padEncrypt()
245 padLen = 16 - (inputOctets - 16*numBlocks); in rijndael_padEncrypt()
246 if (padLen <= 0 || padLen > 16) in rijndael_padEncrypt()
248 for (i = 0; i < 16 - padLen; i++) { in rijndael_padEncrypt()
251 for (i = 16 - padLen; i < 16; i++) { in rijndael_padEncrypt()
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/common/
Dlocdispnames.cpp726 int32_t padLen; in uloc_getDisplayName() local
728 padLen=(subi==0 ? sub1Pos : patLen)-patPos; in uloc_getDisplayName()
729 if(length+padLen < destCapacity) { in uloc_getDisplayName()
731 for(int32_t i=0;i<padLen;++i) { in uloc_getDisplayName()
735 patPos+=padLen; in uloc_getDisplayName()
737 length+=padLen; in uloc_getDisplayName()
/third_party/icu/icu4c/source/common/
Dlocdispnames.cpp735 int32_t padLen; in uloc_getDisplayName() local
737 padLen=(subi==0 ? sub1Pos : patLen)-patPos; in uloc_getDisplayName()
738 if(length+padLen <= destCapacity) { in uloc_getDisplayName()
740 for(int32_t i=0;i<padLen;++i) { in uloc_getDisplayName()
744 patPos+=padLen; in uloc_getDisplayName()
746 length+=padLen; in uloc_getDisplayName()
/third_party/skia/third_party/externals/icu/source/common/
Dlocdispnames.cpp735 int32_t padLen; in uloc_getDisplayName() local
737 padLen=(subi==0 ? sub1Pos : patLen)-patPos; in uloc_getDisplayName()
738 if(length+padLen <= destCapacity) { in uloc_getDisplayName()
740 for(int32_t i=0;i<padLen;++i) { in uloc_getDisplayName()
744 patPos+=padLen; in uloc_getDisplayName()
746 length+=padLen; in uloc_getDisplayName()
/third_party/node/deps/icu-small/source/common/
Dlocdispnames.cpp747 int32_t padLen; in uloc_getDisplayName() local
749 padLen=(subi==0 ? sub1Pos : patLen)-patPos; in uloc_getDisplayName()
750 if(length+padLen <= destCapacity) { in uloc_getDisplayName()
752 for(int32_t i=0;i<padLen;++i) { in uloc_getDisplayName()
756 patPos+=padLen; in uloc_getDisplayName()
758 length+=padLen; in uloc_getDisplayName()
/third_party/node/deps/npm/node_modules/cli-table3/src/
Dcell.js113 let padLen = Math.max(this.height - this.lines.length, 0);
117 padTop = Math.ceil(padLen / 2);
120 padTop = padLen;
/third_party/flutter/skia/third_party/externals/sdl/src/test/
DSDL_test_md5.c185 unsigned int padLen; in SDLTest_Md5Final() local
203 padLen = (mdi < 56) ? (56 - mdi) : (120 - mdi); in SDLTest_Md5Final()
204 SDLTest_Md5Update(mdContext, MD5PADDING, padLen); in SDLTest_Md5Final()
/third_party/vk-gl-cts/scripts/android/
Dinstall_apk.py146 padLen = max([len(device.model) for device in devices])+1
148 …evice, adbPath, packageName, apkPath, ("(%s):%s" % (device.model, ' ' * (padLen - len(device.model…
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_fingerprint.cpp337 uint32 padLen = (index < 56) ? (56 - index) : (120 - index); in Result() local
339 Process (PADDING, padLen); in Result()
/third_party/musl/porting/linux/user/src/hilog/
Doutput_p.inl122 #define SECUREC_SAFE_PADDING(padChar, padLen, _stream, outChars) do { \ argument
123 for (ii = 0; ii < padLen; ++ii) { \
127 _stream->count -= padLen * (int)(sizeof(SecChar)); \
128 *(outChars) = *(outChars) + (padLen); \