HomeSort by relevance Sort by last modified time
    Searched refs:plain (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format.csv 36 # - channel encoding (only meaningful for plain layout), containing for each
62 PIPE_FORMAT_NONE , plain, 1, 1, u8 , , , , x001, rgb
65 PIPE_FORMAT_B8G8R8A8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb
66 PIPE_FORMAT_B8G8R8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb
67 PIPE_FORMAT_A8R8G8B8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb
68 PIPE_FORMAT_X8R8G8B8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb
69 PIPE_FORMAT_A8B8G8R8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb
70 PIPE_FORMAT_X8B8G8R8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb
72 PIPE_FORMAT_R8G8B8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb
73 PIPE_FORMAT_B5G5R5X1_UNORM , plain, 1, 1, un5 , un5 , un5 , x1 , zyx1, rg
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format.csv 36 # - channel encoding (only meaningful for plain layout), containing for each
62 PIPE_FORMAT_NONE , plain, 1, 1, u8 , , , , x001, rgb
65 PIPE_FORMAT_B8G8R8A8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb
66 PIPE_FORMAT_B8G8R8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb
67 PIPE_FORMAT_A8R8G8B8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb
68 PIPE_FORMAT_X8R8G8B8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb
69 PIPE_FORMAT_A8B8G8R8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb
70 PIPE_FORMAT_X8B8G8R8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb
72 PIPE_FORMAT_R8G8B8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb
73 PIPE_FORMAT_B5G5R5X1_UNORM , plain, 1, 1, un5 , un5 , un5 , x1 , zyx1, rg
    [all...]
  /external/fonttools/Lib/fontTools/misc/
eexec.py 10 plain = ( (cipher ^ (R>>8)) ) & 0xFF
12 return bytechr(plain), R
14 def _encryptChar(plain, R):
15 plain = byteord(plain)
16 cipher = ( (plain ^ (R>>8)) ) & 0xFF
24 plain, R = _decryptChar(cipher, R)
25 plainList.append(plain)
31 for plain in plainstring:
32 cipher, R = _encryptChar(plain, R
    [all...]
  /external/wpa_supplicant_8/src/crypto/
des_i.h 18 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt);
19 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain);
22 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt);
23 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain);
aes.h 15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
crypto_internal-cipher.c 103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
110 if (plain != crypt)
111 os_memcpy(crypt, plain, len);
122 ctx->u.aes.cbc[j] ^= plain[j];
126 plain += AES_BLOCK_SIZE;
136 ctx->u.des3.cbc[j] ^= plain[j];
140 plain += 8;
150 ctx->u.des3.cbc[j] ^= plain[j];
154 plain += 8;
167 u8 *plain, size_t len
    [all...]
aes-unwrap.c 22 * @plain: Plaintext key, n * 64 bits
25 int aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain)
33 r = plain;
48 r = plain + (n - 1) * 8;
64 * These are already in @plain due to the location of temporary
aes_wrap.h 21 int __must_check aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher);
22 int __must_check aes_unwrap(const u8 *kek, int n, const u8 *cipher, u8 *plain);
45 const u8 *plain, size_t plain_len,
52 u8 *plain);
57 size_t M, const u8 *plain, size_t plain_len,
62 u8 *plain);
aes-wrap.c 21 * @plain: Plaintext key to be wrapped, n * 64 bits
25 int aes_wrap(const u8 *kek, int n, const u8 *plain, u8 *cipher)
36 os_memcpy(r, plain, 8 * n);
crypto_libtomcrypt.c 99 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
102 aes_ecb_encrypt(plain, crypt, skey);
128 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
131 aes_ecb_encrypt(plain, (u8 *) crypt, skey);
350 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
356 if (plain != crypt)
357 os_memcpy(crypt, plain, len);
364 res = cbc_encrypt(plain, crypt, len, &ctx->u.cbc);
375 u8 *plain, size_t len)
380 if (plain != crypt
    [all...]
crypto_nss.c 144 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt)
160 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain)
191 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain,
199 u8 *plain, size_t len)
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
saslmechanism.cc 56 SaslMechanism::Base64Encode(const std::string & plain) {
57 return Base64::Encode(plain);
66 SaslMechanism::Base64EncodeFromArray(const char * plain, size_t length) {
68 Base64::EncodeFromArray(plain, length, &result);
saslmechanism.h 48 // Should return the name of the SASL mechanism, e.g., "PLAIN"
67 static std::string Base64Encode(const std::string & plain);
69 static std::string Base64EncodeFromArray(const char * plain, size_t length);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
output_text.properties 26 media-type=text/plain
  /external/chromium_org/chrome/common/extensions/api/networking_private/
networking_private_crypto_unittest.cc 15 // |plain| data.
17 const std::string& plain,
22 return decrypted == plain;
149 std::string plain; local
153 plain = kTestData;
154 EXPECT_TRUE(crypto.EncryptByteString(public_key, plain, &encrypted_output));
155 EXPECT_TRUE(VerifyByteString(kPrivateKey, plain, encrypted_output));
158 plain = kEmptyData;
159 EXPECT_TRUE(crypto.EncryptByteString(public_key, plain, &encrypted_output));
  /external/wpa_supplicant_8/hs20/server/ca/
ocsp-responder-ica.sh 3 openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner demoCA/cacert.pem -rkey demoCA/private/cakey-plain.pem -CA demoCA/cacert.pem -resp_no_certs -text
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/
include_preprocessed.hpp 22 aux_/preprocessed/plain/BOOST_MPL_PREPROCESSED_HEADER \
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
23 _subtype is the MIME sub content type, defaulting to "plain".
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/mime/
text.py 18 def __init__(self, _text, _subtype='plain', _charset='us-ascii'):
23 _subtype is the MIME sub content type, defaulting to "plain".
  /external/wpa_supplicant_8/src/tls/
pkcs1.c 136 u8 *plain, size_t *plain_len)
142 if (crypto_rsa_exptmod(crypt, crypt_len, plain, &len, key, 0) < 0)
157 plain[0] != 0x00 || plain[1] != 0x01) {
163 pos = plain + 3;
165 if (plain[2] != 0xff) {
170 while (pos < plain + len && *pos == 0xff)
173 if (pos - plain - 2 < 8) {
180 if (pos + 16 /* min hash len */ >= plain + len || *pos != 0x00) {
186 len -= pos - plain;
    [all...]
pkcs1.h 23 u8 *plain, size_t *plain_len);
  /frameworks/base/core/tests/coretests/src/android/util/
Base64Test.java 319 byte[] plain = (lipsum + lipsum + lipsum + lipsum + lipsum).getBytes();
322 byte[] encoded = Base64.encode(plain, flags);
326 byte[] actual = new byte[plain.length * 2];
330 // ----- test decoding ("encoded" -> "plain") -----
339 assertEquals(actual, ap, plain);
348 assertEquals(actual, ap, plain);
367 assertEquals(actual, ap, plain);
369 // ----- test encoding ("plain" -> "encoded") -----
372 bais = new ByteArrayInputStream(plain);
381 bais = new ByteArrayInputStream(plain);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/config/
compiler.hpp 51 # define BOOST_MPL_CFG_COMPILER_DIR plain
61 # define BOOST_MPL_CFG_COMPILER_DIR plain
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/
include_preprocessed.hpp 30 # define AUX778076_INCLUDE_DIR plain
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
destest.c 290 static unsigned char plain[24]= variable
612 for (i=0; i<sizeof(plain); i++)
613 des_cfb_encrypt(&(plain[i]),&(cfb_buf1[i]),
615 if (memcmp(cfb_cipher8,cfb_buf1,sizeof(plain)) != 0)
622 for (i=0; i<sizeof(plain); i++)
625 if (memcmp(plain,cfb_buf2,sizeof(plain)) != 0)
639 des_ofb_encrypt(plain,ofb_buf1,64,sizeof(plain)/8,ks,&ofb_tmp);
653 if (memcmp(plain,ofb_buf2,sizeof(ofb_buf2)) != 0
    [all...]

Completed in 450 milliseconds

1 2 3 4 5 6 7