Searched refs:padded (Results 1 - 17 of 17) sorted by relevance

/external/opencv3/samples/cpp/
H A Ddft.cpp40 Mat padded; local
41 copyMakeBorder(img, padded, 0, M - img.rows, 0, N - img.cols, BORDER_CONSTANT, Scalar::all(0));
43 Mat planes[] = {Mat_<float>(padded), Mat::zeros(padded.size(), CV_32F)};
/external/opencv3/samples/cpp/tutorial_code/core/discrete_fourier_transform/
H A Ddiscrete_fourier_transform.cpp30 Mat padded; //expand input image to optimal size
33 copyMakeBorder(I, padded, 0, m - I.rows, 0, n - I.cols, BORDER_CONSTANT, Scalar::all(0));
35 Mat planes[] = {Mat_<float>(padded), Mat::zeros(padded.size(), CV_32F)};
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
H A Dpkcs1.py64 r'''Pads the message for encryption, returning the padded message.
110 r'''Pads the message for signing, returning the padded message.
150 :raise OverflowError: when the message is too large to fit in the padded
166 padded = _pad_for_encryption(message, keylength)
168 payload = transform.bytes2int(padded)
271 padded = _pad_for_signing(cleartext, keylength)
273 payload = transform.bytes2int(padded)
/external/llvm/test/MC/X86/AlignedBundling/
H A Drelax-at-bundle-end.s6 # Test that an instruction near a bundle end gets properly padded
/external/tpm2/
H A DCpriRSA.c322 // This function performs OAEP padding. The size of the buffer to receive the OAEP padded data must
334 BYTE *padded, // OUT: the pad data
338 BYTE *message // IN: the message being padded
355 pAssert(padded != NULL && message != NULL);
369 // Offset into padded leaving room for masked seed and byte of zero
370 pp = &padded[hLen + 1];
396 pp = &padded[hLen + 1];
398 if((retVal = _cpri__MGF1(hLen, &padded[1], hashAlg, dbSize, pp)) < 0)
402 pp = &padded[1];
407 *padded
332 OaepEncode( UINT32 paddedSize, BYTE *padded, TPM_ALG_ID hashAlg, const char *label, UINT32 messageSize, BYTE *message , BYTE *testSeed ) argument
522 RSAES_PKSC1v1_5Encode( UINT32 paddedSize, BYTE *padded, UINT32 messageSize, BYTE *message ) argument
[all...]
/external/webrtc/webrtc/base/
H A Dbase64.cc140 unsigned char qbuf[4], bool* padded)
181 *padded = true;
183 *padded = false;
223 bool success = true, padded; local
227 data, len, &dpos, qbuf, &padded);
245 if ((DO_PAD_YES == pad_flags) && !padded) {
138 GetNextQuantum(DecodeFlags parse_flags, bool illegal_pads, const char* data, size_t len, size_t* dpos, unsigned char qbuf[4], bool* padded) argument
H A Dbase64.h95 unsigned char qbuf[4], bool* padded);
/external/objenesis/tck/src/org/objenesis/tck/
H A DTextReporter.java224 StringBuffer padded = new StringBuffer(text);
225 while(padded.length() < width) {
226 padded.append(' ');
228 return padded.toString();
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
H A Dcrypt.py352 padded = b64string + b'=' * (4 - len(b64string) % 4)
353 return base64.urlsafe_b64decode(padded)
H A Dclient.py1600 padded = b64string + b'=' * (4 - len(b64string) % 4)
1601 return base64.urlsafe_b64decode(padded)
/external/kernel-headers/original/uapi/linux/
H A Djffs2.h201 jint32_t padded; /* sum of the size of padding nodes */ member in struct:jffs2_raw_summary
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseBlockCipher.java119 private boolean padded; field in class:BaseBlockCipher
451 padded = true;
868 if (random != null && padded)
/external/ImageMagick/MagickCore/
H A Dopencl.c426 padded[4];
432 padded[i]=p.s[j];
434 padded[i]=0;
436 p.s=padded;
425 padded[4]; local
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp3908 reduced image when without filter bytes but with padded scanlines
3913 "padded" is only relevant if bpp is less than 8 and a scanline or image does not
3937 /*bits padded if needed to fill full byte at end of each scanline*/
3939 /*only padded at end of reduced image*/
4208 This function converts the filtered-padded-interlaced data into pure 2D image buffer with the PNG's colortype.
5540 This function converts the pure 2D image with the PNG's colortype, into filtered-padded-interlaced data. Steps:
5558 unsigned char* padded = (unsigned char*)lodepng_malloc(h * ((w * bpp + 7) / 8));
5559 if(!padded) error = 83; /*alloc fail*/
5562 addPaddingBits(padded, in, ((w * bpp + 7) / 8) * 8, w * bpp, h);
5563 error = filter(*out, padded,
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex58 are designed that they may be truncated (or padded) and remain
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-core.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ...

Completed in 864 milliseconds