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

1 2 3 4 5 6 7 8 91011>>

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
ImplicitTuple.java 20 * if the tag may be omitted when the scalar is emitted in a plain and non-plain
26 private final boolean plain; field in class:ImplicitTuple
29 public ImplicitTuple(boolean plain, boolean nonplain) {
30 this.plain = plain;
36 * plain style.
39 return plain;
44 * non-plain style.
51 return !plain && !nonPlain
    [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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/
cgi0.sh 5 echo Content-type: text/plain
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
ScalarToken.java 22 private final boolean plain; field in class:ScalarToken
25 public ScalarToken(String value, Mark startMark, Mark endMark, boolean plain) {
26 this(value, plain, startMark, endMark, (char) 0);
29 public ScalarToken(String value, boolean plain, Mark startMark, Mark endMark, char style) {
32 this.plain = plain;
37 return this.plain;
50 return "value=" + value + ", plain=" + plain + ", style=" + style;
  /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 23 * @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
aes-wrap.c 22 * @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)
38 os_memcpy(r, plain, 8 * n);
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);
54 const u8 *plain, size_t plain_len,
61 u8 *plain);
66 size_t M, const u8 *plain, size_t plain_len,
71 u8 *plain);
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...]
  /external/webrtc/webrtc/libjingle/xmpp/
saslmechanism.cc 39 SaslMechanism::Base64Encode(const std::string & plain) {
40 return Base64::Encode(plain);
49 SaslMechanism::Base64EncodeFromArray(const char * plain, size_t length) {
51 Base64::EncodeFromArray(plain, length, &result);
saslmechanism.h 31 // Should return the name of the SASL mechanism, e.g., "PLAIN"
50 static std::string Base64Encode(const std::string & plain);
52 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/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
  /external/openssh/
cipher-aes.c 76 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];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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/gdb/darwin-x86/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/gdb/linux-x86/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/go/darwin-x86/src/cmd/compile/internal/ssa/
regalloc_test.go 21 Eq("b", "plain", "exit"),
23 Bloc("plain",
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
regalloc_test.go 21 Eq("b", "plain", "exit"),
23 Bloc("plain",
  /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...]

Completed in 1064 milliseconds

1 2 3 4 5 6 7 8 91011>>