Home
last modified time | relevance | path

Searched full:plain (Results 1 – 25 of 1851) sorted by relevance

12345678910>>...75

/external/mesa3d/src/gallium/auxiliary/util/
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, 1, 1, un5 , un5 , un5 , x1 , zyx1, rgb
[all …]
/external/llvm/test/Other/
Dconstant-fold-gep-address-spaces.ll1 ; "PLAIN" - No optimizations. This tests the target-independent
3 ; RUN: opt -S -o - %s | FileCheck --check-prefix=PLAIN %s
10 ; PLAIN: @G8 = global i8 addrspace(1)* getelementptr (i8, i8 addrspace(1)* inttoptr (i32 1 to i8 ad…
12 ; PLAIN: @G1 = global i1 addrspace(2)* getelementptr (i1, i1 addrspace(2)* inttoptr (i8 1 to i1 add…
14 ; PLAIN: @F8 = global i8 addrspace(1)* getelementptr (i8, i8 addrspace(1)* inttoptr (i32 1 to i8 ad…
16 ; PLAIN: @F1 = global i1 addrspace(2)* getelementptr (i1, i1 addrspace(2)* inttoptr (i8 1 to i1 add…
18 ; PLAIN: @H8 = global i8 addrspace(1)* getelementptr (i8, i8 addrspace(1)* null, i32 -1)
20 ; PLAIN: @H1 = global i1 addrspace(2)* getelementptr (i1, i1 addrspace(2)* null, i8 -1)
27 ; PLAIN-X: @a = constant i64 mul (i64 ptrtoint (double addrspace(4)* getelementptr (double, double …
30 ; PLAIN-X: @b = constant i64 ptrtoint (double addrspace(4)* getelementptr ({ i1, double }, { i1, do…
[all …]
Dconstant-fold-gep.ll1 ; "PLAIN" - No optimizations. This tests the default target layout
3 ; RUN: opt -S -o - < %s | FileCheck --check-prefix=PLAIN %s
21 ; PLAIN: @G8 = global i8* getelementptr (i8, i8* inttoptr (i32 1 to i8*), i32 -1)
22 ; PLAIN: @G1 = global i1* getelementptr (i1, i1* inttoptr (i32 1 to i1*), i32 -1)
23 ; PLAIN: @F8 = global i8* getelementptr (i8, i8* inttoptr (i32 1 to i8*), i32 -2)
24 ; PLAIN: @F1 = global i1* getelementptr (i1, i1* inttoptr (i32 1 to i1*), i32 -2)
25 ; PLAIN: @H8 = global i8* getelementptr (i8, i8* null, i32 -1)
26 ; PLAIN: @H1 = global i1* getelementptr (i1, i1* null, i32 -1)
51 ; PLAIN: @a = constant i64 mul (i64 ptrtoint (double* getelementptr (double, double* null, i32 1) t…
52 ; PLAIN: @b = constant i64 ptrtoint (double* getelementptr ({ i1, double }, { i1, double }* null, i…
[all …]
/external/guava/guava-gwt/test-super/com/google/common/net/super/com/google/common/net/
DMediaTypeTest.java103 assertEquals("text", MediaType.parse("text/plain").type()); in testGetType()
109 assertEquals("plain", MediaType.parse("text/plain").subtype()); in testGetSubtype()
118 assertEquals(ImmutableListMultimap.of(), MediaType.parse("text/plain").parameters()); in testGetParameters()
133 assertEquals(MediaType.parse("text/plain; a=1; a=2; b=3"), in testWithParameters()
134 MediaType.parse("text/plain").withParameters(PARAMETERS)); in testWithParameters()
135 assertEquals(MediaType.parse("text/plain; a=1; a=2; b=3"), in testWithParameters()
136 MediaType.parse("text/plain; a=1; a=2; b=3").withParameters(PARAMETERS)); in testWithParameters()
140 MediaType mediaType = MediaType.parse("text/plain"); in testWithParameters_invalidAttribute()
150 assertEquals(MediaType.parse("text/plain; a=1"), in testWithParameter()
151 MediaType.parse("text/plain").withParameter("a", "1")); in testWithParameter()
[all …]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DMediaTypeTest.java38 MediaType mediaType = MediaType.parse("text/plain;boundary=foo;charset=utf-8"); in testParse()
40 assertEquals("plain", mediaType.subtype()); in testParse()
42 assertEquals("text/plain;boundary=foo;charset=utf-8", mediaType.toString()); in testParse()
43 assertTrue(mediaType.equals(MediaType.parse("text/plain;boundary=foo;charset=utf-8"))); in testParse()
45 MediaType.parse("text/plain;boundary=foo;charset=utf-8").hashCode()); in testParse()
49 assertMediaType("text/plain"); in testValidParse()
53 assertMediaType("text/plain; a=1"); in testValidParse()
54 assertMediaType("text/plain; a=1; a=2; b=3"); in testValidParse()
55 assertMediaType("text/plain; charset=utf-16"); in testValidParse()
56 assertMediaType("text/plain; \t \n \r a=b"); in testValidParse()
[all …]
/external/guava/guava-tests/test/com/google/common/net/
DMediaTypeTest.java163 assertEquals("text", MediaType.parse("text/plain").type());
169 assertEquals("plain", MediaType.parse("text/plain").subtype());
178 assertEquals(ImmutableListMultimap.of(), MediaType.parse("text/plain").parameters());
193 assertEquals(MediaType.parse("text/plain; a=1; a=2; b=3"),
194 MediaType.parse("text/plain").withParameters(PARAMETERS));
195 assertEquals(MediaType.parse("text/plain; a=1; a=2; b=3"),
196 MediaType.parse("text/plain; a=1; a=2; b=3").withParameters(PARAMETERS));
200 MediaType mediaType = MediaType.parse("text/plain");
210 assertEquals(MediaType.parse("text/plain; a=1"),
211 MediaType.parse("text/plain").withParameter("a", "1"));
[all …]
/external/swiftshader/third_party/LLVM/test/Other/
Dconstant-fold-gep.ll1 ; "PLAIN" - No optimizations. This tests the target-independent
3 ; RUN: opt -S -o - < %s | FileCheck --check-prefix=PLAIN %s
21 ; PLAIN: @G8 = global i8* getelementptr (i8* inttoptr (i32 1 to i8*), i32 -1)
22 ; PLAIN: @G1 = global i1* getelementptr (i1* inttoptr (i32 1 to i1*), i32 -1)
23 ; PLAIN: @F8 = global i8* getelementptr (i8* inttoptr (i32 1 to i8*), i32 -2)
24 ; PLAIN: @F1 = global i1* getelementptr (i1* inttoptr (i32 1 to i1*), i32 -2)
25 ; PLAIN: @H8 = global i8* getelementptr (i8* null, i32 -1)
26 ; PLAIN: @H1 = global i1* getelementptr (i1* null, i32 -1)
51 ; PLAIN: @a = constant i64 mul (i64 ptrtoint (double* getelementptr (double* null, i32 1) to i64), …
52 ; PLAIN: @b = constant i64 ptrtoint (double* getelementptr ({ i1, double }* null, i64 0, i32 1) to …
[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.c99 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 …]
/external/libbrillo/brillo/
Dmime_utils.h46 BRILLO_EXPORT extern const char kPlain[]; // text/plain
74 // e.g. Combine("text", "plain", {{"charset", "utf-8"}}) will give:
75 // "text/plain; charset=utf-8"
82 // "text/plain;charset=utf-8" => ("text", "plain")
88 // "text/plain;charset=utf-8" => ("text", "plain", {{"charset","utf-8"}})
95 // "text/plain;charset=utf-8" => "text"
99 // "text/plain;charset=utf-8" => "plain"
103 // "text/plain;charset=utf-8" => {{"charset","utf-8"}}
107 // "text/plain;charset=utf-8" => "text/plain"
112 // "text/plain" => "text/plain; charset=utf-8"
[all …]
/external/libxml2/doc/
Dxmllint.xml69 <arg choice="plain"><option>--version</option></arg>
70 <arg choice="plain"><option>--debug</option></arg>
71 <arg choice="plain"><option>--shell</option></arg>
72 …<arg choice="plain"><option>--xpath "<replaceable class="option">XPath_expression</replaceable>"</…
73 <arg choice="plain"><option>--debugent</option></arg>
74 <arg choice="plain"><option>--copy</option></arg>
75 <arg choice="plain"><option>--recover</option></arg>
76 <arg choice="plain"><option>--noent</option></arg>
77 <arg choice="plain"><option>--noout</option></arg>
78 <arg choice="plain"><option>--nonet</option></arg>
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
DImplicitTuple.java20 * if the tag may be omitted when the scalar is emitted in a plain and non-plain
26 private final boolean plain; field in ImplicitTuple
29 public ImplicitTuple(boolean plain, boolean nonplain) { in ImplicitTuple() argument
30 this.plain = plain; in ImplicitTuple()
36 * plain style.
39 return plain; in canOmitTagInPlainScalar()
44 * non-plain style.
51 return !plain && !nonPlain; in bothFalse()
56 return "implicit=[" + plain + ", " + nonPlain + "]"; in toString()
/external/fonttools/Lib/fontTools/misc/
Deexec.py10 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/
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/clang/test/CodeGen/
Daddress-sanitizer-and-array-cookie.cpp1 // RUN: %clang_cc1 -triple x86_64-gnu-linux -emit-llvm -o - %s | FileCheck %s -check-prefix=PLAIN
20 // PLAIN-LABEL: CallNew
21 // PLAIN-NOT: nosanitize
22 // PLAIN-NOT: __asan_poison_cxx_array_cookie
31 // PLAIN-LABEL: CallNewNoThrow
32 // PLAIN-NOT: nosanitize
33 // PLAIN-NOT: __asan_poison_cxx_array_cookie
43 // PLAIN-LABEL: CallDelete
44 // PLAIN-NOT: nosanitize
Dfunction-sections.c3 // RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -S -o - < %s | FileCheck %s --check-prefix=PLAIN
4 …nux-gnu -S -ffunction-sections -fno-function-sections -o - < %s | FileCheck %s --check-prefix=PLAIN
15 // PLAIN-NOT: section
16 // PLAIN: world:
17 // PLAIN: section .rodata,
18 // PLAIN: hello:
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRelativeDateTimeFormatterTest.java402 {Direction.PLAIN, AbsoluteUnit.DAY, "day"}, in TestRelativeDateWithoutQuantity()
403 {Direction.PLAIN, AbsoluteUnit.WEEK, "week"}, in TestRelativeDateWithoutQuantity()
404 {Direction.PLAIN, AbsoluteUnit.MONTH, "month"}, in TestRelativeDateWithoutQuantity()
405 {Direction.PLAIN, AbsoluteUnit.YEAR, "year"}, in TestRelativeDateWithoutQuantity()
406 {Direction.PLAIN, AbsoluteUnit.MONDAY, "Monday"}, in TestRelativeDateWithoutQuantity()
407 {Direction.PLAIN, AbsoluteUnit.TUESDAY, "Tuesday"}, in TestRelativeDateWithoutQuantity()
408 {Direction.PLAIN, AbsoluteUnit.WEDNESDAY, "Wednesday"}, in TestRelativeDateWithoutQuantity()
409 {Direction.PLAIN, AbsoluteUnit.THURSDAY, "Thursday"}, in TestRelativeDateWithoutQuantity()
410 {Direction.PLAIN, AbsoluteUnit.FRIDAY, "Friday"}, in TestRelativeDateWithoutQuantity()
411 {Direction.PLAIN, AbsoluteUnit.SATURDAY, "Saturday"}, in TestRelativeDateWithoutQuantity()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRelativeDateTimeFormatterTest.java401 {Direction.PLAIN, AbsoluteUnit.DAY, "day"}, in TestRelativeDateWithoutQuantity()
402 {Direction.PLAIN, AbsoluteUnit.WEEK, "week"}, in TestRelativeDateWithoutQuantity()
403 {Direction.PLAIN, AbsoluteUnit.MONTH, "month"}, in TestRelativeDateWithoutQuantity()
404 {Direction.PLAIN, AbsoluteUnit.YEAR, "year"}, in TestRelativeDateWithoutQuantity()
405 {Direction.PLAIN, AbsoluteUnit.MONDAY, "Monday"}, in TestRelativeDateWithoutQuantity()
406 {Direction.PLAIN, AbsoluteUnit.TUESDAY, "Tuesday"}, in TestRelativeDateWithoutQuantity()
407 {Direction.PLAIN, AbsoluteUnit.WEDNESDAY, "Wednesday"}, in TestRelativeDateWithoutQuantity()
408 {Direction.PLAIN, AbsoluteUnit.THURSDAY, "Thursday"}, in TestRelativeDateWithoutQuantity()
409 {Direction.PLAIN, AbsoluteUnit.FRIDAY, "Friday"}, in TestRelativeDateWithoutQuantity()
410 {Direction.PLAIN, AbsoluteUnit.SATURDAY, "Saturday"}, in TestRelativeDateWithoutQuantity()
[all …]
/external/okhttp/okhttp-logging-interceptor/src/test/java/com/squareup/okhttp/logging/
DHttpLoggingInterceptorTest.java44 private static final MediaType PLAIN = MediaType.parse("text/plain; charset=utf-8"); field in HttpLoggingInterceptorTest
128 client.newCall(request().post(RequestBody.create(PLAIN, "Hi?")).build()).execute(); in basicPost()
146 .setHeader("Content-Type", PLAIN)); in basicResponseBody()
197 Request request = request().post(RequestBody.create(PLAIN, "Hi?")).build(); in headersPost()
203 .assertLogEqual("Content-Type: text/plain; charset=utf-8") in headersPost()
215 .assertLogEqual("Content-Type: text/plain; charset=utf-8") in headersPost()
271 return PLAIN; in headersPostNoLength()
283 .assertLogEqual("Content-Type: text/plain; charset=utf-8") in headersPostNoLength()
294 .assertLogEqual("Content-Type: text/plain; charset=utf-8") in headersPostNoLength()
314 .setHeader("Content-Type", PLAIN)); in headersResponseBody()
[all …]
/external/curl/tests/data/
Dtest106614 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
Dtest9036 SASL AUTH PLAIN
16 AUTH PLAIN
17 REPLY AUTH 334 PLAIN supported
29 SMTP plain authentication
44 AUTH PLAIN
Dtest108719 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
/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()
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/zlib/src/doc/
Dtxtvsbin.txt1 A Fast Method for Identifying Plain Text Files
9 to find out whether the format of that file is plain text. Although
18 labeled as plain text, otherwise it is labeled as binary. A prominent
26 amounts of textual characters are misidentified as plain text.
50 plain text; otherwise, it is categorized as binary. (The boundary case,
86 There is an extra category of plain text files that are "polluted" with
92 large chunks of textual data. Furthermore, "polluted" plain text should
99 and applications. We tried plain text files, system logs, source code,
/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()

12345678910>>...75