/external/mesa3d/src/gallium/auxiliary/util/ |
D | 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, rgb [all …]
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_internal-cipher.c | 103 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument 110 if (plain != crypt) in crypto_cipher_encrypt() 111 os_memcpy(crypt, plain, len); in crypto_cipher_encrypt() 122 ctx->u.aes.cbc[j] ^= plain[j]; in crypto_cipher_encrypt() 126 plain += AES_BLOCK_SIZE; in crypto_cipher_encrypt() 136 ctx->u.des3.cbc[j] ^= plain[j]; in crypto_cipher_encrypt() 140 plain += 8; in crypto_cipher_encrypt() 150 ctx->u.des3.cbc[j] ^= plain[j]; in crypto_cipher_encrypt() 154 plain += 8; in crypto_cipher_encrypt() 167 u8 *plain, size_t len) in crypto_cipher_decrypt() argument [all …]
|
D | crypto_libtomcrypt.c | 99 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument 102 aes_ecb_encrypt(plain, crypt, skey); in aes_encrypt() 128 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument 131 aes_ecb_encrypt(plain, (u8 *) crypt, skey); in aes_decrypt() 350 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument 356 if (plain != crypt) in crypto_cipher_encrypt() 357 os_memcpy(crypt, plain, len); in crypto_cipher_encrypt() 364 res = cbc_encrypt(plain, crypt, len, &ctx->u.cbc); in crypto_cipher_encrypt() 375 u8 *plain, size_t len) in crypto_cipher_decrypt() argument 380 if (plain != crypt) in crypto_cipher_decrypt() [all …]
|
D | des-internal.c | 434 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt) in des_block_encrypt() argument 437 work[0] = WPA_GET_BE32(plain); in des_block_encrypt() 438 work[1] = WPA_GET_BE32(plain + 4); in des_block_encrypt() 445 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain) in des_block_decrypt() argument 451 WPA_PUT_BE32(plain, work[0]); in des_block_decrypt() 452 WPA_PUT_BE32(plain + 4, work[1]); in des_block_decrypt() 468 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt) in des3_encrypt() argument 472 work[0] = WPA_GET_BE32(plain); in des3_encrypt() 473 work[1] = WPA_GET_BE32(plain + 4); in des3_encrypt() 482 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain) in des3_decrypt() argument [all …]
|
D | 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);
|
D | aes_wrap.h | 21 int __must_check aes_wrap(const u8 *kek, size_t kek_len, int n, const u8 *plain, 24 const u8 *cipher, u8 *plain); 52 const u8 *plain, size_t plain_len, 59 u8 *plain); 64 size_t M, const u8 *plain, size_t plain_len, 69 u8 *plain);
|
D | crypto_gnutls.c | 110 void aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument 113 gcry_cipher_encrypt(hd, crypt, 16, plain, 16); in aes_encrypt() 140 void aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument 143 gcry_cipher_decrypt(hd, plain, 16, crypt, 16); in aes_decrypt() 274 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument 277 if (gcry_cipher_encrypt(ctx->enc, crypt, len, plain, len) != in crypto_cipher_encrypt() 285 u8 *plain, size_t len) in crypto_cipher_decrypt() argument 287 if (gcry_cipher_decrypt(ctx->dec, plain, len, crypt, len) != in crypto_cipher_decrypt()
|
D | aes-ccm.c | 149 size_t M, const u8 *plain, size_t plain_len, in aes_ccm_ae() argument 164 aes_ccm_auth(aes, plain, plain_len, x); in aes_ccm_ae() 168 aes_ccm_encr(aes, L, plain, plain_len, crypt, a); in aes_ccm_ae() 180 const u8 *aad, size_t aad_len, const u8 *auth, u8 *plain) in aes_ccm_ad() argument 199 aes_ccm_encr(aes, L, crypt, crypt_len, plain, a); in aes_ccm_ad() 202 aes_ccm_auth(aes, plain, crypt_len, x); in aes_ccm_ad()
|
D | aes-unwrap.c | 27 u8 *plain) in aes_unwrap() argument 36 r = plain; in aes_unwrap() 51 r = plain + (n - 1) * 8; in aes_unwrap()
|
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tree_construction/ |
D | scriptdata01.dat | 58 FOO<script type="text/plain"></scriptx>BAR 66 | type="text/plain" 189 FOO<script type="text/plain">'<!-- <sCrIpt>'</script>BAR 197 | type="text/plain" 201 FOO<script type="text/plain">'<!-- <sCrIpt> -'</script>BAR 209 | type="text/plain" 213 FOO<script type="text/plain">'<!-- <sCrIpt> --'</script>BAR 221 | type="text/plain" 237 FOO<script type="text/plain">'<!-- <sCrIpt> --!>'</script>BAR 245 | type="text/plain" [all …]
|
/external/fonttools/Lib/fontTools/misc/ |
D | eexec.py | 10 plain = ( (cipher ^ (R>>8)) ) & 0xFF 12 return bytechr(plain), R 14 def _encryptChar(plain, R): argument 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)
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/ |
D | ScalarToken.java | 22 private final boolean plain; field in ScalarToken 25 public ScalarToken(String value, Mark startMark, Mark endMark, boolean plain) { in ScalarToken() argument 26 this(value, plain, startMark, endMark, (char) 0); in ScalarToken() 29 public ScalarToken(String value, boolean plain, Mark startMark, Mark endMark, char style) { in ScalarToken() argument 32 this.plain = plain; in ScalarToken() 37 return this.plain; in getPlain() 50 return "value=" + value + ", plain=" + plain + ", style=" + style; in getArguments()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/ |
D | ImplicitTuple.java | 26 private final boolean plain; field in ImplicitTuple 29 public ImplicitTuple(boolean plain, boolean nonplain) { in ImplicitTuple() argument 30 this.plain = plain; in ImplicitTuple() 39 return plain; in canOmitTagInPlainScalar() 51 return !plain && !nonPlain; in bothFalse() 56 return "implicit=[" + plain + ", " + nonPlain + "]"; in toString()
|
/external/wpa_supplicant_8/src/tls/ |
D | pkcs1.c | 136 u8 *plain, size_t *plain_len) in pkcs1_decrypt_public_key() argument 142 if (crypto_rsa_exptmod(crypt, crypt_len, plain, &len, key, 0) < 0) in pkcs1_decrypt_public_key() 157 plain[0] != 0x00 || plain[1] != 0x01) { in pkcs1_decrypt_public_key() 163 pos = plain + 3; in pkcs1_decrypt_public_key() 165 if (plain[2] != 0xff) { in pkcs1_decrypt_public_key() 170 while (pos < plain + len && *pos == 0xff) in pkcs1_decrypt_public_key() 173 if (pos - plain - 2 < 8) { in pkcs1_decrypt_public_key() 180 if (pos + 16 /* min hash len */ >= plain + len || *pos != 0x00) { in pkcs1_decrypt_public_key() 186 len -= pos - plain; in pkcs1_decrypt_public_key() 189 os_memmove(plain, pos, len); in pkcs1_decrypt_public_key()
|
/external/curl/tests/data/ |
D | test1066 | 14 Content-Type: text/plain 22 Content-Type: text/plain 62 Content-Type: text/plain 63 Content-Type: text/plain 73 Content-Type: text/plain 74 Content-Type: text/plain
|
D | test1090 | 20 Content-Type: text/plain 30 Content-Type: text/plain; charset=us-ascii 79 Content-Type: text/plain 86 Content-Type: text/plain; charset=us-ascii 93 text/plain; charset=us-ascii
|
D | test1089 | 19 Content-Type: text/plain 29 Content-Type: text/plain; charset=us-ascii 72 Content-Type: text/plain 79 Content-Type: text/plain; charset=us-ascii 86 text/plain; charset=us-ascii
|
D | test1087 | 19 Content-Type: text/plain 27 Content-Type: text/plain 38 Content-Type: text/plain 48 Content-Type: text/plain 54 Content-Type: text/plain 63 Content-Type: text/plain
|
D | test1088 | 20 Content-Type: text/plain 28 Content-Type: text/plain 39 Content-Type: text/plain 49 Content-Type: text/plain 55 Content-Type: text/plain 64 Content-Type: text/plain
|
/external/webrtc/webrtc/libjingle/xmpp/ |
D | saslmechanism.cc | 39 SaslMechanism::Base64Encode(const std::string & plain) { in Base64Encode() argument 40 return Base64::Encode(plain); in Base64Encode() 49 SaslMechanism::Base64EncodeFromArray(const char * plain, size_t length) { in Base64EncodeFromArray() argument 51 Base64::EncodeFromArray(plain, length, &result); in Base64EncodeFromArray()
|
/external/wpa_supplicant_8/src/wps/ |
D | wps_enrollee.c | 205 struct wpabuf *msg, *plain; in wps_build_m5() local 209 plain = wpabuf_alloc(200); in wps_build_m5() 210 if (plain == NULL) in wps_build_m5() 215 wpabuf_free(plain); in wps_build_m5() 222 wps_build_e_snonce1(wps, plain) || in wps_build_m5() 223 wps_build_key_wrap_auth(wps, plain) || in wps_build_m5() 224 wps_build_encr_settings(wps, msg, plain) || in wps_build_m5() 227 wpabuf_free(plain); in wps_build_m5() 231 wpabuf_free(plain); in wps_build_m5() 344 static int wps_build_ap_settings(struct wps_data *wps, struct wpabuf *plain) in wps_build_ap_settings() argument [all …]
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | ikev2.c | 1109 struct wpabuf *plain = wpabuf_alloc(data->IDr_len + 1000); in ikev2_build_sa_init() local 1110 if (plain == NULL) { in ikev2_build_sa_init() 1114 if (ikev2_build_idr(data, plain, in ikev2_build_sa_init() 1118 &data->keys, 0, msg, plain, in ikev2_build_sa_init() 1120 wpabuf_free(plain); in ikev2_build_sa_init() 1124 wpabuf_free(plain); in ikev2_build_sa_init() 1142 struct wpabuf *msg, *plain; in ikev2_build_sa_auth() local 1151 plain = wpabuf_alloc(data->IDr_len + 1000); in ikev2_build_sa_auth() 1152 if (plain == NULL) { in ikev2_build_sa_auth() 1157 if (ikev2_build_idr(data, plain, IKEV2_PAYLOAD_AUTHENTICATION) || in ikev2_build_sa_auth() [all …]
|
/external/wpa_supplicant_8/src/eap_common/ |
D | ikev2_common.c | 176 const u8 *plain, u8 *crypt, size_t len) in ikev2_encr_encrypt() argument 199 if (crypto_cipher_encrypt(cipher, plain, crypt, len) < 0) { in ikev2_encr_encrypt() 211 const u8 *crypt, u8 *plain, size_t len) in ikev2_encr_decrypt() argument 234 if (crypto_cipher_decrypt(cipher, crypt, plain, len) < 0) { in ikev2_encr_decrypt() 532 struct wpabuf *plain, u8 next_payload) in ikev2_build_encrypted() argument 580 pad_len = iv_len - (wpabuf_len(plain) + 1) % iv_len; in ikev2_build_encrypted() 583 wpabuf_put(plain, pad_len); in ikev2_build_encrypted() 584 wpabuf_put_u8(plain, pad_len); in ikev2_build_encrypted() 587 wpabuf_head(plain), wpabuf_mhead(plain), in ikev2_build_encrypted() 588 wpabuf_len(plain)) < 0) in ikev2_build_encrypted() [all …]
|
/external/llvm/test/Bitcode/ |
D | fcmp-fast.ll | 9 ; CHECK: %plain = fcmp ueq float %a, %b 10 %plain = fcmp ueq float %a, %b 18 %dce1 = or i1 %plain, %fast
|
/external/nanohttpd/core/src/main/resources/META-INF/nanohttpd/ |
D | default-mimetypes.properties | 7 md=text/plain 8 txt=text/plain 9 asc=text/plain
|