Searched refs:plain (Results 1 - 25 of 143) sorted by relevance

123456

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_format.csv36 # - 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,
[all...]
/external/fonttools/Lib/fontTools/misc/
H A Deexec.py10 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,
[all...]
/external/fonttools/Tools/fontTools/misc/
H A Deexec.py10 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,
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Ddes_i.h18 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);
H A Daes.h15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Dcrypto_internal-cipher.c103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, argument
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_
166 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) argument
[all...]
H A Daes-unwrap.c23 * @plain: Plaintext key, n * 64 bits
27 u8 *plain)
36 r = plain;
51 r = plain + (n - 1) * 8;
71 * These are already in @plain due to the location of temporary
26 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) argument
H A Daes-wrap.c22 * @plain: Plaintext key to be wrapped, n * 64 bits
26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) argument
38 os_memcpy(r, plain, 8 * n);
/external/wpa_supplicant_8/src/crypto/
H A Ddes_i.h18 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);
H A Daes.h15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Dcrypto_internal-cipher.c103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, argument
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_
166 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) argument
[all...]
H A Daes-unwrap.c23 * @plain: Plaintext key, n * 64 bits
27 u8 *plain)
36 r = plain;
51 r = plain + (n - 1) * 8;
71 * These are already in @plain due to the location of temporary
26 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) argument
H A Daes-wrap.c22 * @plain: Plaintext key to be wrapped, n * 64 bits
26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) argument
38 os_memcpy(r, plain, 8 * n);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Ddes_i.h18 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);
H A Daes.h15 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt);
18 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain);
H A Dcrypto_internal-cipher.c103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, argument
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_
166 crypto_cipher_decrypt(struct crypto_cipher *ctx, const u8 *crypt, u8 *plain, size_t len) argument
[all...]
H A Daes-unwrap.c23 * @plain: Plaintext key, n * 64 bits
27 u8 *plain)
36 r = plain;
51 r = plain + (n - 1) * 8;
71 * These are already in @plain due to the location of temporary
26 aes_unwrap(const u8 *kek, size_t kek_len, int n, const u8 *cipher, u8 *plain) argument
H A Daes-wrap.c22 * @plain: Plaintext key to be wrapped, n * 64 bits
26 int aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, u8 *cipher) argument
38 os_memcpy(r, plain, 8 * n);
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A Doutput_text.properties26 media-type=text/plain
/external/wpa_supplicant_8/hs20/server/ca/
H A Docsp-responder-ica.sh3 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
/external/openssh/
H A Dcipher-aes.c76 u_char *cprev, *cnow, *plain, *ivp; local
89 plain = (u_char *)src;
91 for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE,
94 buf[j] = plain[j] ^ cprev[j];
101 plain = dest+len-RIJNDAEL_BLOCKSIZE;
105 plain-=RIJNDAEL_BLOCKSIZE) {
106 rijndael_decrypt(&c->r_ctx, cnow, plain);
109 plain[j] ^= ivp[j];
/external/v8/test/mjsunit/
H A Dregexp-not-sticky-yet.js42 var plain = /foobar/; variable
43 assertEquals("/foobar/", "" + plain);
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs1.c136 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;
134 pkcs1_decrypt_public_key(struct crypto_rsa_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dpkcs1.c136 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;
134 pkcs1_decrypt_public_key(struct crypto_rsa_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs1.c136 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;
134 pkcs1_decrypt_public_key(struct crypto_rsa_key *key, const u8 *crypt, size_t crypt_len, u8 *plain, size_t *plain_len) argument
[all...]

Completed in 1193 milliseconds

123456