| /third_party/ntfs-3g/include/fuse-lite/ |
| H A D | fuse_kernel.h | 105 __u32 padding; member 229 __u32 padding; member 247 __u32 padding; member 273 __u32 padding; member 279 __u32 padding; member 292 __u32 padding; member 300 __u32 padding; member 312 __u32 padding; /* JPA */ member 317 __u32 padding; member 329 __u32 padding; member 339 __u32 padding; global() member 344 __u32 padding; global() member 359 __u32 padding; global() member 385 __u32 padding; global() member 421 __u32 padding; global() member [all...] |
| /third_party/libfuse/include/ |
| H A D | fuse_kernel.h | 48 * - add padding to messages to accommodate 32-bit servers on 64-bit kernels 280 uint32_t padding; member 645 uint32_t padding; member 660 uint32_t padding; member 669 uint32_t padding; member 701 uint32_t padding; member 714 uint32_t padding; member 725 uint32_t padding; member 737 uint32_t padding; member 742 uint32_t padding; member 754 uint32_t padding; global() member 763 uint32_t padding; global() member 768 uint32_t padding; global() member 773 uint32_t padding; global() member 781 uint32_t padding; global() member 790 uint32_t padding; global() member 848 uint32_t padding; global() member 885 uint32_t padding; global() member 897 uint32_t padding; global() member 909 uint16_t padding; global() member 961 uint32_t padding; global() member 968 uint32_t padding; global() member 976 uint32_t padding; global() member 997 uint32_t padding; global() member 1045 uint64_t padding; global() member 1056 uint32_t padding; global() member [all...] |
| /third_party/node/deps/npm/node_modules/@isaacs/cliui/build/lib/ |
| H A D | index.js | 59 // replacing ' ' with padding calculations. 65 padding: this.measurePadding(r), 75 padding: this.measurePadding(text) 79 // measure padding without ansi escape codes 99 const { width } = row[c]; // the width with padding. 100 const wrapWidth = this.negatePadding(row[c]); // the width without padding. 101 let ts = col; // temporary string used during alignment/padding. 116 // apply border and padding to string. 117 const padding = row[c].padding || [ [all...] |
| /third_party/curl/lib/ |
| H A D | base64.c | 80 size_t padding = 0; in Curl_base64_decode() local 98 while(src[srclen - 1 - padding] == '=') { in Curl_base64_decode() 99 /* count padding characters */ in Curl_base64_decode() 100 padding++; in Curl_base64_decode() 101 /* A maximum of two = padding characters is allowed */ in Curl_base64_decode() 102 if(padding > 2) in Curl_base64_decode() 108 fullQuantums = numQuantums - (padding ? 1 : 0); in Curl_base64_decode() 111 rawlen = (numQuantums * 3) - padding; in Curl_base64_decode() 148 if(padding) { in Curl_base64_decode() 158 if(++padc > padding) in Curl_base64_decode() [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-crypto-rsa-dsa.js | 127 padding: crypto.constants.RSA_PKCS1_PADDING, 133 padding: crypto.constants.RSA_PKCS1_PADDING, 139 // Omitting padding should be okay because RSA_PKCS1_PADDING is the default. 153 padding: crypto.constants.RSA_NO_PADDING, 159 padding: crypto.constants.RSA_NO_PADDING, 209 function test_rsa(padding, encryptOaepHash, decryptOaepHash) { 210 const size = (padding === 'RSA_NO_PADDING') ? rsaKeySize / 8 : 32; 216 padding = constants[padding]; 220 padding [all...] |
| H A D | test-crypto-rsa-dsa-revert.js | 128 padding: crypto.constants.RSA_PKCS1_PADDING, 134 padding: crypto.constants.RSA_PKCS1_PADDING, 140 // Omitting padding should be okay because RSA_PKCS1_PADDING is the default. 154 padding: crypto.constants.RSA_NO_PADDING, 160 padding: crypto.constants.RSA_NO_PADDING, 210 function test_rsa(padding, encryptOaepHash, decryptOaepHash) { 211 const size = (padding === 'RSA_NO_PADDING') ? rsaKeySize / 8 : 32; 217 padding = constants[padding]; 221 padding [all...] |
| H A D | test-crypto-sign-verify.js | 64 padding: crypto.constants.RSA_PKCS1_OAEP_PADDING 67 'error:1C8000A5:Provider routines::illegal or unsupported padding mode' : 76 padding: null, 81 message: "The property 'options.padding' is invalid. Received null", 196 padding: crypto.constants.RSA_PKCS1_PSS_PADDING, 203 padding: crypto.constants.RSA_PKCS1_PSS_PADDING, 213 padding: crypto.constants.RSA_PKCS1_PSS_PADDING, 218 padding: crypto.constants.RSA_PKCS1_PSS_PADDING, 231 padding: crypto.constants.RSA_PKCS1_PSS_PADDING, 236 padding [all...] |
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/ |
| H A D | SubTable.java | 37 private int padding = 0; field in SubTable 141 * Get the number of bytes of padding used in the table. The padding bytes are 144 * @return the number of padding bytes 146 public int padding() { in padding() method in SubTable 147 return this.padding; in padding() 151 * Sets the amount of padding that is part of the data being used by this 154 * @param padding 157 protected void setPadding(int padding) { in setPadding() argument 158 this.padding in setPadding() [all...] |
| /third_party/skia/tests/ |
| H A D | Writer32Test.cpp | 124 const size_t padding = 64; in testOverwriteT() local 133 for (size_t i = 0; i < (padding / 4); ++i) { in testOverwriteT() 141 for (size_t i = 0; i < (padding / 4); ++i) { in testOverwriteT() 145 REPORTER_ASSERT(reporter, writer->readTAt<uint32_t>(padding) == uint1); in testOverwriteT() 146 REPORTER_ASSERT(reporter, writer->readTAt<SkRect>(padding + sizeof(uint32_t)) == rect1); in testOverwriteT() 148 padding + sizeof(uint32_t) + sizeof(SkRect)) == scalar1); in testOverwriteT() 150 writer->overwriteTAt(padding, uint2); in testOverwriteT() 151 writer->overwriteTAt(padding + sizeof(uint32_t), rect2); in testOverwriteT() 152 writer->overwriteTAt(padding + sizeof(uint32_t) + sizeof(SkRect), scalar2); in testOverwriteT() 154 REPORTER_ASSERT(reporter, writer->readTAt<uint32_t>(padding) in testOverwriteT() [all...] |
| /third_party/node/deps/openssl/openssl/crypto/rsa/ |
| H A D | rsa_crpt.c | 34 RSA *rsa, int padding) in RSA_public_encrypt() 36 return rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding); in RSA_public_encrypt() 40 unsigned char *to, RSA *rsa, int padding) in RSA_private_encrypt() 42 return rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding); in RSA_private_encrypt() 46 unsigned char *to, RSA *rsa, int padding) in RSA_private_decrypt() 48 return rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding); in RSA_private_decrypt() 52 RSA *rsa, int padding) in RSA_public_decrypt() 54 return rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding); in RSA_public_decrypt() 33 RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_public_encrypt() argument 39 RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_private_encrypt() argument 45 RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_private_decrypt() argument 51 RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_public_decrypt() argument
|
| H A D | rsa_meth.c | 108 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_pub_enc() 116 int padding)) in RSA_meth_set_pub_enc() 124 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_pub_dec() 132 int padding)) in RSA_meth_set_pub_dec() 140 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_priv_enc() 148 int padding)) in RSA_meth_set_priv_enc() 156 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_priv_dec() 164 int padding)) in RSA_meth_set_priv_dec() 113 RSA_meth_set_pub_enc(RSA_METHOD *meth, int (*pub_enc) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_pub_enc() argument 129 RSA_meth_set_pub_dec(RSA_METHOD *meth, int (*pub_dec) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_pub_dec() argument 145 RSA_meth_set_priv_enc(RSA_METHOD *meth, int (*priv_enc) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_priv_enc() argument 161 RSA_meth_set_priv_dec(RSA_METHOD *meth, int (*priv_dec) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_priv_dec() argument
|
| /third_party/skia/src/core/ |
| H A D | SkArenaAlloc.cpp | 33 void SkArenaAlloc::installFooter(FooterAction* action, uint32_t padding) { in installFooter() argument 34 assert(SkTFitsIn<uint8_t>(padding)); in installFooter() 36 this->installRaw((uint8_t)padding); in installFooter() 50 uint8_t padding; in RunDtorsOnBlock() local 53 memcpy(&padding, footerEnd - sizeof(padding), sizeof(padding)); in RunDtorsOnBlock() 55 footerEnd = action(footerEnd) - (ptrdiff_t)padding; in RunDtorsOnBlock()
|
| /third_party/openssl/crypto/rsa/ |
| H A D | rsa_crpt.c | 34 RSA *rsa, int padding) in RSA_public_encrypt() 36 return rsa->meth->rsa_pub_enc(flen, from, to, rsa, padding); in RSA_public_encrypt() 40 unsigned char *to, RSA *rsa, int padding) in RSA_private_encrypt() 42 return rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding); in RSA_private_encrypt() 46 unsigned char *to, RSA *rsa, int padding) in RSA_private_decrypt() 48 return rsa->meth->rsa_priv_dec(flen, from, to, rsa, padding); in RSA_private_decrypt() 52 RSA *rsa, int padding) in RSA_public_decrypt() 54 return rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding); in RSA_public_decrypt() 33 RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_public_encrypt() argument 39 RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_private_encrypt() argument 45 RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_private_decrypt() argument 51 RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding) RSA_public_decrypt() argument
|
| H A D | rsa_meth.c | 108 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_pub_enc() 116 int padding)) in RSA_meth_set_pub_enc() 124 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_pub_dec() 132 int padding)) in RSA_meth_set_pub_dec() 140 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_priv_enc() 148 int padding)) in RSA_meth_set_priv_enc() 156 unsigned char *to, RSA *rsa, int padding) in RSA_meth_get_priv_dec() 164 int padding)) in RSA_meth_set_priv_dec() 113 RSA_meth_set_pub_enc(RSA_METHOD *meth, int (*pub_enc) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_pub_enc() argument 129 RSA_meth_set_pub_dec(RSA_METHOD *meth, int (*pub_dec) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_pub_dec() argument 145 RSA_meth_set_priv_enc(RSA_METHOD *meth, int (*priv_enc) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_priv_enc() argument 161 RSA_meth_set_priv_dec(RSA_METHOD *meth, int (*priv_dec) (int flen, const unsigned char *from, unsigned char *to, RSA *rsa, int padding)) RSA_meth_set_priv_dec() argument
|
| /third_party/mesa3d/src/glx/ |
| H A D | pixel.c | 94 GLint components, groupsPerRow, rowSize, padding, elementsPerRow; in FillBitmap() local 105 padding = (rowSize % alignment); in FillBitmap() 106 if (padding) { in FillBitmap() 107 rowSize += alignment - padding; in FillBitmap() 176 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; in __glFillImage() local 205 padding = (rowSize % alignment); in __glFillImage() 206 if (padding) { in __glFillImage() 207 rowSize += alignment - padding; in __glFillImage() 280 GLint components, groupsPerRow, rowSize, padding, elementsPerRow; in EmptyBitmap() local 296 padding in EmptyBitmap() 402 GLint components, elementSize, rowSize, padding, groupsPerRow, groupSize; __glEmptyImage() local [all...] |
| /third_party/ffmpeg/libavfilter/ |
| H A D | vf_tile.c | 39 unsigned padding; member 61 { "padding", "set inner border thickness in pixels", OFFSET(padding), 83 if (tile->padding) { in init() 84 if ((tile->w - 1 > (UINT32_MAX - 2 * tile->margin) / tile->padding) || in init() 85 (tile->h - 1 > (UINT32_MAX - 2 * tile->margin) / tile->padding)) { in init() 86 av_log(ctx, AV_LOG_ERROR, "Combination of Tile size %ux%u, padding %d and margin %d overflows.\n", in init() 87 tile->w, tile->h, tile->padding, tile->margin); in init() 124 const unsigned total_margin_w = (tile->w - 1) * tile->padding + 2*tile->margin; in config_props() 125 const unsigned total_margin_h = (tile->h - 1) * tile->padding in config_props() [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules/vulkan/memory_model/ |
| H A D | vktMemoryModelPadding.cpp | 22 * \brief Vulkan Memory Model padding access tests 44 // The structures below match the shader declarations but have explicit padding members at the end so we can check their contents 47 // Structure with a 12-byte padding at the end. 51 deUint8 padding[12]; member 54 // Structure with an 8-byte padding at the end. 58 deUint8 padding[8]; member 61 // Structure with a 4-byte padding at the end. 65 deUint8 padding[4]; member 88 deMemset(subA[i].padding, static_cast<int>(paddingByte), sizeof(subA[i].padding)); in BufferStructure() [all...] |
| /third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/memory_model/ |
| H A D | vktMemoryModelPadding.cpp | 22 * \brief Vulkan Memory Model padding access tests 44 // The structures below match the shader declarations but have explicit padding members at the end so we can check their contents 47 // Structure with a 12-byte padding at the end. 51 deUint8 padding[12]; member 54 // Structure with an 8-byte padding at the end. 58 deUint8 padding[8]; member 61 // Structure with a 4-byte padding at the end. 65 deUint8 padding[4]; member 88 deMemset(subA[i].padding, static_cast<int>(paddingByte), sizeof(subA[i].padding)); in BufferStructure() [all...] |
| /third_party/node/src/crypto/ |
| H A D | crypto_sig.cc | 59 int padding, in ValidateDSAParameters() 64 if (EVP_PKEY_CTX_set_rsa_padding(pkctx, padding) <= 0) in ValidateDSAParameters() 66 if (padding == RSA_PKCS1_PSS_PADDING && salt_len.IsJust()) { in ValidateDSAParameters() 78 int padding, in ValidateDSAParameters() 97 ApplyRSAOptions(pkey, pkctx.get(), padding, pss_salt_len) && in ValidateDSAParameters() 390 int padding, in SignFinal() 402 Node_SignFinal(env(), std::move(mdctx), pkey, padding, salt_len); in SignFinal() 423 int padding = GetDefaultSignPadding(key); in SignFinal() local 426 padding = args[offset].As<Int32>()->Value(); in SignFinal() 441 padding, in SignFinal() 57 ApplyRSAOptions(const ManagedEVPPKey& pkey, EVP_PKEY_CTX* pkctx, int padding, const Maybe<int>& salt_len) ValidateDSAParameters() argument 75 Node_SignFinal(Environment* env, EVPMDPointer&& mdctx, const ManagedEVPPKey& pkey, int padding, Maybe<int> pss_salt_len) ValidateDSAParameters() argument 388 SignFinal( const ManagedEVPPKey& pkey, int padding, const Maybe<int>& salt_len, DSASigEnc dsa_sig_enc) SignFinal() argument 507 VerifyFinal(const ManagedEVPPKey& pkey, const ByteSource& sig, int padding, const Maybe<int>& saltlen, bool* verify_result) VerifyFinal() argument 554 int padding = GetDefaultSignPadding(pkey); VerifyFinal() local 731 int padding = params.flags & SignConfiguration::kHasPadding DeriveBits() local [all...] |
| /third_party/python/Lib/ |
| H A D | base64.py | 77 to the padding check. If validate is True, these non-alphabet characters 104 are discarded prior to the padding check. 128 padding check. 210 raise binascii.Error('Incorrect padding') 240 raise binascii.Error('Incorrect padding') 309 padding = (-len(b)) % 4 310 if padding: 311 b = b + b'\0' * padding 321 if padding and not pad: 324 chunks[-1] = chunks[-1][:-padding] [all...] |
| /third_party/ffmpeg/libavcodec/ |
| H A D | mpegaudiodecheader.c | 36 int sample_rate, frame_size, mpeg25, padding; in avpriv_mpegaudio_decode_header() local 64 padding = (header >> 9) & 1; in avpriv_mpegaudio_decode_header() 83 frame_size = (frame_size + padding) * 4; in avpriv_mpegaudio_decode_header() 87 frame_size += padding; in avpriv_mpegaudio_decode_header() 92 frame_size += padding; in avpriv_mpegaudio_decode_header()
|
| /third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/math/ |
| H A D | FontMath.java | 34 * Calculates the amount of padding needed. The values provided need to be in 38 * @param size the size of the data that may need padding 43 int padding = alignmentSize - (size % alignmentSize); in paddingRequired() 44 return padding == alignmentSize ? 0 : padding; in paddingRequired()
|
| /third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/math/ |
| H A D | font_math.h | 35 // Calculates the amount of padding needed. The values provided need to be in 38 // @param size the size of the data that may need padding 42 int32_t padding = alignment_size - (size % alignment_size); in PaddingRequired() local 43 return padding == alignment_size ? 0 : padding; in PaddingRequired()
|
| /third_party/protobuf/java/core/src/test/java/com/google/protobuf/ |
| H A D | ParserLiteTest.java | 47 final int padding = 30; in assertRoundTripEquals() 52 parser.parseFrom(generatePaddingArray(data, offset, padding), offset, length, registry)); in assertRoundTripEquals() 65 final int padding = 30; in assertRoundTripEquals() 70 message, parser.parseFrom(generatePaddingArray(data, offset, padding), offset, length)); in assertRoundTripEquals() 77 private byte[] generatePaddingArray(byte[] data, int offset, int padding) { in generatePaddingArray() argument 78 byte[] result = new byte[offset + data.length + padding]; in generatePaddingArray()
|
| /third_party/ffmpeg/libavformat/ |
| H A D | tmv.c | 44 unsigned padding; member 138 tmv->padding = in tmv_read_header() 142 vst->codecpar->bit_rate = ((tmv->video_chunk_size + tmv->padding) * in tmv_read_header() 161 avio_skip(pb, tmv->padding); in tmv_read_packet() 180 (tmv->audio_chunk_size + tmv->video_chunk_size + tmv->padding); in tmv_read_seek()
|