Home
last modified time | relevance | path

Searched refs:plain (Results 1 – 25 of 1383) sorted by relevance

12345678910>>...56

/external/mesa3d/src/amd/vulkan/
Dvk_format_layout.csv4 VK_FORMAT_UNDEFINED , plain, 1, 1, u8 , , , , x001, rgb
5 VK_FORMAT_R4G4_UNORM_PACK8 , plain, 1, 1, un4 , un4 , , , xy01, rgb
6 VK_FORMAT_R4G4B4A4_UNORM_PACK16 , plain, 1, 1, un4 , un4 , un4 , un4 , wzyx, rgb
7 VK_FORMAT_B4G4R4A4_UNORM_PACK16 , plain, 1, 1, un4 , un4 , un4 , un4 , wxyz, rgb
8 VK_FORMAT_A4R4G4B4_UNORM_PACK16_EXT , plain, 1, 1, un4 , un4 , un4 , un4 , zyxw, rgb
9 VK_FORMAT_A4B4G4R4_UNORM_PACK16_EXT , plain, 1, 1, un4 , un4 , un4 , un4 , xyzw, rgb
10 VK_FORMAT_R5G6B5_UNORM_PACK16 , plain, 1, 1, un5 , un6 , un5 , , zyx1, rgb
11 VK_FORMAT_B5G6R5_UNORM_PACK16 , plain, 1, 1, un5 , un6 , un5 , , xyz1, rgb
12 VK_FORMAT_R5G5B5A1_UNORM_PACK16 , plain, 1, 1, un1 , un5 , un5 , un5 , wzyx, rgb
13 VK_FORMAT_B5G5R5A1_UNORM_PACK16 , plain, 1, 1, un1 , un5 , un5 , un5 , wxyz, rgb
[all …]
/external/mesa3d/src/util/format/
Du_format.csv37 # - channel encoding (only meaningful for plain layout), containing for each
65 PIPE_FORMAT_NONE , plain, 1, 1, 1, u8 , , , , x001, rgb
68 PIPE_FORMAT_B8G8R8A8_UNORM , plain, 1, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb
69 PIPE_FORMAT_B8G8R8X8_UNORM , plain, 1, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb
70 PIPE_FORMAT_A8R8G8B8_UNORM , plain, 1, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb
71 PIPE_FORMAT_X8R8G8B8_UNORM , plain, 1, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb
72 PIPE_FORMAT_A8B8G8R8_UNORM , plain, 1, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb
73 PIPE_FORMAT_X8B8G8R8_UNORM , plain, 1, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb
75 PIPE_FORMAT_R8G8B8X8_UNORM , plain, 1, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb
76 PIPE_FORMAT_R5G5B5A1_UNORM , plain, 1, 1, 1, un5 , un5 , un5 , un1 , xyzw, rgb, un1 , un5 …
[all …]
/external/virglrenderer/src/gallium/auxiliary/util/
Du_format.csv36 # - channel encoding (only meaningful for plain layout), containing for each
64 PIPE_FORMAT_NONE , plain, 1, 1, u8 , , , , x001, rgb
67 PIPE_FORMAT_B8G8R8A8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , zyxw, rgb
68 PIPE_FORMAT_B8G8R8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , zyx1, rgb
69 PIPE_FORMAT_A8R8G8B8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , yzwx, rgb
70 PIPE_FORMAT_X8R8G8B8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , yzw1, rgb
71 PIPE_FORMAT_A8B8G8R8_UNORM , plain, 1, 1, un8 , un8 , un8 , un8 , wzyx, rgb
72 PIPE_FORMAT_X8B8G8R8_UNORM , plain, 1, 1, x8 , un8 , un8 , un8 , wzy1, rgb
74 PIPE_FORMAT_R8G8B8X8_UNORM , plain, 1, 1, un8 , un8 , un8 , x8 , xyz1, rgb
75 PIPE_FORMAT_B5G5R5X1_UNORM , plain, 1, 1, un5 , un5 , un5 , x1 , zyx1, rgb, x1 , un5 , un5…
[all …]
/external/wpa_supplicant_8/src/crypto/
Dcrypto_internal-cipher.c103 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 …]
Dcrypto_libtomcrypt.c100 int aes_encrypt(void *ctx, const u8 *plain, u8 *crypt) in aes_encrypt() argument
103 return aes_ecb_encrypt(plain, crypt, skey) == CRYPT_OK ? 0 : -1; in aes_encrypt()
129 int aes_decrypt(void *ctx, const u8 *crypt, u8 *plain) in aes_decrypt() argument
132 return aes_ecb_encrypt(plain, (u8 *) crypt, skey) == CRYPT_OK ? 0 : -1; in aes_decrypt()
354 int crypto_cipher_encrypt(struct crypto_cipher *ctx, const u8 *plain, in crypto_cipher_encrypt() argument
360 if (plain != crypt) in crypto_cipher_encrypt()
361 os_memcpy(crypt, plain, len); in crypto_cipher_encrypt()
368 res = cbc_encrypt(plain, crypt, len, &ctx->u.cbc); in crypto_cipher_encrypt()
379 u8 *plain, size_t len) in crypto_cipher_decrypt() argument
384 if (plain != crypt) in crypto_cipher_decrypt()
[all …]
Ddes-internal.c435 void des_block_encrypt(const u8 *plain, const u32 *ek, u8 *crypt) in des_block_encrypt() argument
438 work[0] = WPA_GET_BE32(plain); in des_block_encrypt()
439 work[1] = WPA_GET_BE32(plain + 4); in des_block_encrypt()
446 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain) in des_block_decrypt() argument
452 WPA_PUT_BE32(plain, work[0]); in des_block_decrypt()
453 WPA_PUT_BE32(plain + 4, work[1]); in des_block_decrypt()
469 void des3_encrypt(const u8 *plain, const struct des3_key_s *key, u8 *crypt) in des3_encrypt() argument
473 work[0] = WPA_GET_BE32(plain); in des3_encrypt()
474 work[1] = WPA_GET_BE32(plain + 4); in des3_encrypt()
483 void des3_decrypt(const u8 *crypt, const struct des3_key_s *key, u8 *plain) in des3_decrypt() argument
[all …]
/external/grpc-grpc-java/alts/src/test/java/io/grpc/alts/internal/
DChannelCrypterNettyTestBase.java55 List<ByteBuf> plain; field in ChannelCrypterNettyTestBase.FrameEncrypt
68 ByteBuf plain = getDirectBuffer(messageBytes.length, ref); in createFrameEncrypt() local
69 plain.writeBytes(messageBytes); in createFrameEncrypt()
70 frame.plain = Collections.singletonList(plain); in createFrameEncrypt()
90 client.encrypt(frameEncrypt.out, frameEncrypt.plain); in encryptDecrypt()
94 assertThat(frameEncrypt.plain.get(0).slice(0, frameDecrypt.out.readableBytes())) in encryptDecrypt()
101 ByteBuf plain = getRandom(17 * 1024, ref); in encryptDecryptLarge() local
102 frameEncrypt.plain = Collections.singletonList(plain); in encryptDecryptLarge()
103 frameEncrypt.out = getDirectBuffer(plain.readableBytes() + client.getSuffixLength(), ref); in encryptDecryptLarge()
105 client.encrypt(frameEncrypt.out, frameEncrypt.plain); in encryptDecryptLarge()
[all …]
DAltsTsiFrameProtectorTest.java281 ByteBuf plain = getRandom(payloadBytes, ref); in parseFrame_oneFrameNoFragment() local
294 List<ByteBuf> framePlain = Collections.singletonList(plain); in parseFrame_oneFrameNoFragment()
297 plain.readerIndex(0); in parseFrame_oneFrameNoFragment()
303 assertThat(out1).isEqualTo(plain); in parseFrame_oneFrameNoFragment()
319 ByteBuf plain = getRandom(payloadBytes, ref); in parseFrame_twoFramesNoFragment() local
331 List<ByteBuf> framePlain1 = Collections.singletonList(plain.readSlice(payloadBytes1)); in parseFrame_twoFramesNoFragment()
339 List<ByteBuf> framePlain2 = Collections.singletonList(plain); in parseFrame_twoFramesNoFragment()
344 plain.readerIndex(0); in parseFrame_twoFramesNoFragment()
349 assertThat(out1).isEqualTo(plain); in parseFrame_twoFramesNoFragment()
367 ByteBuf plain = getRandom(payloadBytes, ref); in parseFrame_twoFramesNoFragment_Leftover() local
[all …]
/external/fonttools/Lib/fontTools/misc/
Deexec.py20 plain = ( (cipher ^ (R>>8)) ) & 0xFF
22 return bytechr(plain), R
24 def _encryptChar(plain, R): argument
25 plain = byteord(plain)
26 cipher = ( (plain ^ (R>>8)) ) & 0xFF
54 plain, R = _decryptChar(cipher, R)
55 plainList.append(plain)
93 for plain in plainstring:
94 cipher, R = _encryptChar(plain, R)
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/tokens/
DScalarToken.java22 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/
DImplicitTuple.java26 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/
Dpkcs1.c136 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()
160 wpa_hexdump_key(MSG_DEBUG, "Signature EB", plain, len); in pkcs1_decrypt_public_key()
164 pos = plain + 3; in pkcs1_decrypt_public_key()
166 if (plain[2] != 0xff) { in pkcs1_decrypt_public_key()
169 wpa_hexdump_key(MSG_DEBUG, "Signature EB", plain, len); in pkcs1_decrypt_public_key()
172 while (pos < plain + len && *pos == 0xff) in pkcs1_decrypt_public_key()
175 if (pos - plain - 2 < 8) { in pkcs1_decrypt_public_key()
179 wpa_hexdump_key(MSG_DEBUG, "Signature EB", plain, len); in pkcs1_decrypt_public_key()
[all …]
/external/tinyxml2/
Drun-tinyxml2-tests-on-android.sh9 plain="\033[0m"
13 plain=""
20 echo -e "${green}[PASS]${plain}"
23 echo -e "${red}[FAIL]${plain}"
39 echo -e "${red}FAILED${plain}: $failures"
/external/openssh/
Dcipher-aes.c76 u_char *cprev, *cnow, *plain, *ivp; in ssh_rijndael_cbc() local
89 plain = (u_char *)src; in ssh_rijndael_cbc()
91 for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE, in ssh_rijndael_cbc()
94 buf[j] = plain[j] ^ cprev[j]; in ssh_rijndael_cbc()
101 plain = dest+len-RIJNDAEL_BLOCKSIZE; in ssh_rijndael_cbc()
105 plain-=RIJNDAEL_BLOCKSIZE) { in ssh_rijndael_cbc()
106 rijndael_decrypt(&c->r_ctx, cnow, plain); in ssh_rijndael_cbc()
109 plain[j] ^= ivp[j]; in ssh_rijndael_cbc()
/external/arm-optimized-routines/
Drun-arm-optimized-routines-tests-on-android.sh9 plain="\033[0m"
13 plain=""
20 echo -e "${green}[PASS]${plain}"
23 echo -e "${red}[FAIL]${plain}"
51 echo -e "${red}FAILED${plain}: $failures"
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestAlt.java82 String plain = "//ldml/localeDisplayNames/languages/language[@type=\"af\"]"; in testAlt() local
84 String expected = testCldrFile.getStringValue(plain); in testAlt()
87 String actual = testCldrFile.getStringValue(plain+altMedium); in testAlt()
88 assertEquals(plain+altMedium, expected, actual); in testAlt()
90 localeWhereFound.value = testCldrFile.getSourceLocaleID(plain+altMedium, status); in testAlt()
92 assertEquals("Regular, pathWhereFound", plain, pathWhereFound.value); in testAlt()
95 …String actualBailey = testCldrFile.getConstructedBaileyValue(plain+altMedium, pathWhereFound, loca… in testAlt()
96 assertEquals("Bailey, " + plain+altMedium, expected, actualBailey); in testAlt()
98 assertEquals("Bailey, pathWhereFound", plain, pathWhereFound.value); in testAlt()
/external/python/cpython2/Lib/email/test/data/
Dmsg_12.txt9 Content-Type: text/plain; charset="us-ascii"
20 Content-Type: text/plain; charset="iso-8859-2"
24 Content-Type: text/plain; charset="iso-8859-3"
29 Content-Type: text/plain; charset="us-ascii"
33 Content-Type: text/plain; charset="koi8-r"
Dmsg_12a.txt9 Content-Type: text/plain; charset="us-ascii"
20 Content-Type: text/plain; charset="iso-8859-2"
24 Content-Type: text/plain; charset="iso-8859-3"
31 Content-Type: text/plain; charset="us-ascii"
35 Content-Type: text/plain; charset="koi8-r"
Dmsg_02.txt12 Content-type: text/plain; charset=us-ascii
31 Content-type: text/plain; charset=us-ascii
48 Content-Type: text/plain; charset=us-ascii
64 Content-Type: text/plain; charset=us-ascii
78 Content-Type: text/plain; charset=us-ascii
93 Content-Type: text/plain; charset=us-ascii
108 Content-Type: text/plain; charset=us-ascii
124 Content-type: text/plain; charset=us-ascii
/external/python/cpython3/Lib/test/test_email/data/
Dmsg_12.txt9 Content-Type: text/plain; charset="us-ascii"
20 Content-Type: text/plain; charset="iso-8859-2"
24 Content-Type: text/plain; charset="iso-8859-3"
29 Content-Type: text/plain; charset="us-ascii"
33 Content-Type: text/plain; charset="koi8-r"
Dmsg_12a.txt9 Content-Type: text/plain; charset="us-ascii"
20 Content-Type: text/plain; charset="iso-8859-2"
24 Content-Type: text/plain; charset="iso-8859-3"
31 Content-Type: text/plain; charset="us-ascii"
35 Content-Type: text/plain; charset="koi8-r"
Dmsg_02.txt12 Content-type: text/plain; charset=us-ascii
31 Content-type: text/plain; charset=us-ascii
48 Content-Type: text/plain; charset=us-ascii
64 Content-Type: text/plain; charset=us-ascii
78 Content-Type: text/plain; charset=us-ascii
93 Content-Type: text/plain; charset=us-ascii
108 Content-Type: text/plain; charset=us-ascii
124 Content-type: text/plain; charset=us-ascii
/external/curl/tests/data/
Dtest106614 Content-Type: text/plain
22 Content-Type: text/plain
61 Content-Type: text/plain
62 Content-Type: text/plain
72 Content-Type: text/plain
73 Content-Type: text/plain
/external/python/cpython2/Doc/library/
Demail.iterators.rst51 text/plain
52 text/plain
55 text/plain
57 text/plain
59 text/plain
61 text/plain
63 text/plain
64 text/plain
/external/python/cpython3/Doc/library/
Demail.iterators.rst62 text/plain
63 text/plain
66 text/plain
68 text/plain
70 text/plain
72 text/plain
74 text/plain
75 text/plain

12345678910>>...56