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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
mms-bitfields.c 17 struct s3 { struct
20 } s3; variable in typeref:struct:s3
22 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
ms_struct.c 18 struct s3 { struct
21 } ATTR s3; variable in typeref:struct:s3
23 // CHECK: %struct.s3 = type { i32, [4 x i8], %struct.s1 }
sanitize-init-order.cpp 26 PODWithCtorAndDtor s3; variable
packed-arrays.c 20 struct __attribute__((packed)) s3 { struct
33 int align3 = __alignof(struct s3);
43 int align3_x = __alignof(((struct s3*) 0)->x);
52 int align3_x0 = __alignof(((struct s3*) 0)->x[0]);
134 int f3_a(struct s3 *a) {
137 int f3_b(struct s3 *a) {
140 int f3_c(struct s3 *a) {
143 int f3_d(struct s3 *a) {
x86_32-arguments-win32.c 20 struct s3 { struct
24 struct s3 f3_1(void) { while (1) {} }
  /external/libcxx/test/utilities/utility/exchange/
exchange.pass.cpp 42 std::string s3 = s1; // Mom local
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
46 assert ( s3 == s1 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
50 assert ( s3.size () == 0 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 )
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/exchange/
exchange.pass.cpp 42 std::string s3 = s1; // Mom local
43 assert ( std::exchange ( s3, s2 ) == s1 );
44 assert ( s3 == s2 );
45 assert ( std::exchange ( s3, "Hi Mom!" ) == s2 );
46 assert ( s3 == s1 );
48 s3 = s2; // Dad
49 assert ( std::exchange ( s3, {} ) == s2 );
50 assert ( s3.size () == 0 );
52 s3 = s2; // Dad
53 assert ( std::exchange ( s3, "" ) == s2 )
    [all...]
  /external/libcxx/test/localization/locales/locale/locale.operators/
compare.pass.cpp 25 std::string s3("BaaaaaA");
26 assert(l(s3, s2));
30 std::wstring s3(L"BaaaaaA");
31 assert(l(s3, s2));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.operators/
compare.pass.cpp 25 std::string s3("BaaaaaA");
26 assert(l(s3, s2));
30 std::wstring s3(L"BaaaaaA");
31 assert(l(s3, s2));
  /external/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/
compare.pass.cpp 36 std::string s3("BaaaaaA");
38 s3.data(), s3.data() + s3.size()) == 1);
43 std::wstring s3(L"BaaaaaA");
45 s3.data(), s3.data() + s3.size()) == 1);
53 std::string s3("BaaaaaA");
55 s3.data(), s3.data() + s3.size()) == 1)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.collate/locale.collate.byname/
compare.pass.cpp 36 std::string s3("BaaaaaA");
38 s3.data(), s3.data() + s3.size()) == 1);
43 std::wstring s3(L"BaaaaaA");
45 s3.data(), s3.data() + s3.size()) == 1);
53 std::string s3("BaaaaaA");
55 s3.data(), s3.data() + s3.size()) == 1)
    [all...]
  /external/openssl/ssl/
t1_reneg.c 121 if((s->s3->previous_client_finished_len+1) > maxlen)
128 *p = s->s3->previous_client_finished_len;
131 memcpy(p, s->s3->previous_client_finished,
132 s->s3->previous_client_finished_len);
135 s->s3->previous_client_finished_len ? "Non-empty" : "Empty");
139 *len=s->s3->previous_client_finished_len + 1;
171 if(ilen != s->s3->previous_client_finished_len)
178 if(memcmp(d, s->s3->previous_client_finished,
179 s->s3->previous_client_finished_len))
190 s->s3->send_connection_binding=1
    [all...]
s3_pkt.c 129 * The packet will be in the sub-array of s->s3->rbuf.buf specified
141 rb = &(s->s3->rbuf);
232 /* Now we have len+left bytes at the front of s->s3->rbuf.buf
286 * ssl->s3->rrec.type - is the type of record
287 * ssl->s3->rrec.data, - data
288 * ssl->s3->rrec.length, - number of bytes
304 rr= &(s->s3->rrec);
311 if (extra && !s->s3->init_extra)
324 n=ssl3_read_n(s, SSL3_RT_HEADER_LENGTH, s->s3->rbuf.len, 0);
360 if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH
    [all...]
s3_enc.c 192 EVP_DigestUpdate(&s1,s->s3->server_random,SSL3_RANDOM_SIZE);
193 EVP_DigestUpdate(&s1,s->s3->client_random,SSL3_RANDOM_SIZE);
232 is_exp=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
233 c=s->s3->tmp.new_sym_enc;
234 m=s->s3->tmp.new_hash;
238 if (s->s3->tmp.new_compression == NULL)
241 comp=s->s3->tmp.new_compression->method;
271 if (s->s3->rrec.comp == NULL)
272 s->s3->rrec.comp=(unsigned char *)
274 if (s->s3->rrec.comp == NULL
    [all...]
  /external/chromium_org/third_party/boringssl/src/ssl/
t1_reneg.c 124 if((s->s3->previous_client_finished_len+1) > maxlen)
131 *p = s->s3->previous_client_finished_len;
134 memcpy(p, s->s3->previous_client_finished,
135 s->s3->previous_client_finished_len);
138 s->s3->previous_client_finished_len ? "Non-empty" : "Empty");
142 *len=s->s3->previous_client_finished_len + 1;
164 s->s3->previous_client_finished,
165 s->s3->previous_client_finished_len))
172 s->s3->send_connection_binding = 1;
183 if((s->s3->previous_client_finished_len
    [all...]
s3_pkt.c 130 * The packet will be in the sub-array of s->s3->rbuf.buf specified
142 rb = &(s->s3->rbuf);
233 /* Now we have len+left bytes at the front of s->s3->rbuf.buf
287 * ssl->s3->rrec.type - is the type of record
288 * ssl->s3->rrec.data, - data
289 * ssl->s3->rrec.length, - number of bytes
305 rr= &(s->s3->rrec);
312 if (extra && !s->s3->init_extra)
325 n=ssl3_read_n(s, SSL3_RT_HEADER_LENGTH, s->s3->rbuf.len, 0);
363 if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH
    [all...]
  /external/clang/test/Sema/
pragma-pack-5.c 31 struct s3 { struct
37 extern int check[sizeof(struct s3) == 8 ? 1 : -1];
38 extern int check[offsetof(struct s3, f4) == 6 ? 1 : -1];
warn-strlcpycat-size.c 10 char * s3; variable
23 strlcpy(s1, s3, strlen(s3)+1); // expected-warning {{size argument in 'strlcpy' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
24 strlcat(s2, s3, sizeof(s3)); // expected-warning {{size argument in 'strlcat' call appears to be size of the source; expected the size of the destination}} expected-note {{change size argument to be the size of the destination}}
  /art/test/Statics/
Statics.java 21 static final short s3 = (short) 65000; field in class:Statics
38 return s3;
  /external/fio/lib/
rand.h 7 unsigned int s1, s2, s3; member in struct:frand_state
16 state->s3 = TAUSWORTHE(state->s3, 3, 11, 4294967280UL, 17);
18 return (state->s1 ^ state->s2 ^ state->s3);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
residu.cpp 208 Word32 s3; local
222 s3 = 0x0000800L;
234 s3 += ((Word32) * (p_coef) * *(p_input3++));
238 s3 += ((Word32) * (p_coef) * *(p_input3++));
244 s3 += (((Word32) * (p_coef)) * *(p_input3));
249 *(p_residual_ptr--) = (Word16)(s3 >> 12);
  /external/llvm/test/MC/ARM/
invalid-fp-armv8.s 10 vsel.f32 s3, s4, s6
12 vselne.f32 s3, s4, s6
14 vselmi.f32 s3, s4, s6
16 vselpl.f32 s3, s4, s6
18 vselvc.f32 s3, s4, s6
20 vselcs.f32 s3, s4, s6
22 vselcc.f32 s3, s4, s6
24 vselhs.f32 s3, s4, s6
26 vsello.f32 s3, s4, s6
28 vselhi.f32 s3, s4, s
    [all...]
  /external/clang/test/Analysis/
array-struct.c 125 struct s3 { struct
129 static struct s3 opt;
133 struct s3 my_opt = opt;
146 struct s3 p[1];
152 void f16(struct s3 *p) {
153 struct s3 a = *((struct s3*) ((char*) &p[0])); // expected-warning{{Casting a non-structure type to a structure type and accessing a field can lead to memory access errors or data corruption}}
  /external/libcxx/test/re/re.regex/re.regex.construct/
iter_iter_flg.pass.cpp 37 std::string s3("\\(a\\([bc]\\)\\)");
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
52 test(F(s3.begin()), F(s3.end()), std::regex_constants::ECMAScript, 0);
57 test(F(s3.begin()), F(s3.end()), std::regex_constants::awk, 0);
62 test(F(s3.begin()), F(s3.end()), std::regex_constants::grep, 2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.regex/re.regex.construct/
iter_iter_flg.pass.cpp 37 std::string s3("\\(a\\([bc]\\)\\)");
42 test(F(s3.begin()), F(s3.end()), std::regex_constants::basic, 2);
47 test(F(s3.begin()), F(s3.end()), std::regex_constants::extended, 0);
52 test(F(s3.begin()), F(s3.end()), std::regex_constants::ECMAScript, 0);
57 test(F(s3.begin()), F(s3.end()), std::regex_constants::awk, 0);
62 test(F(s3.begin()), F(s3.end()), std::regex_constants::grep, 2)
    [all...]

Completed in 894 milliseconds

1 2 3 4 5 6 7 8 91011>>