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

1 2 3 4 5 6 7 8 9

  /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 }
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/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 128 * The packet will be in the sub-array of s->s3->rbuf.buf specified
140 rb = &(s->s3->rbuf);
231 /* Now we have len+left bytes at the front of s->s3->rbuf.buf
279 * ssl->s3->rrec.type - is the type of record
280 * ssl->s3->rrec.data, - data
281 * ssl->s3->rrec.length, - number of bytes
304 rr= &(s->s3->rrec);
312 extra && !s->s3->init_extra)
325 n=ssl3_read_n(s, SSL3_RT_HEADER_LENGTH, s->s3->rbuf.len, 0);
364 if (rr->length > s->s3->rbuf.len - SSL3_RT_HEADER_LENGTH - align
    [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...]
s3_both.c 163 sender,slen,s->s3->tmp.finish_md);
164 s->s3->tmp.finish_md_len = i;
165 memcpy(p, s->s3->tmp.finish_md, i);
174 memcpy(s->s3->previous_client_finished,
175 s->s3->tmp.finish_md, i);
176 s->s3->previous_client_finished_len=i;
181 memcpy(s->s3->previous_server_finished,
182 s->s3->tmp.finish_md, i);
183 s->s3->previous_server_finished_len=i;
222 s->s3->tmp.peer_finish_md_len = s->method->ssl3_enc->final_finish_mac(s
    [all...]
d1_pkt.c 191 if (s->s3->rbuf.buf != NULL)
192 OPENSSL_free(s->s3->rbuf.buf);
196 memcpy(&(s->s3->rbuf), &(rdata->rbuf), sizeof(SSL3_BUFFER));
197 memcpy(&(s->s3->rrec), &(rdata->rrec), sizeof(SSL3_RECORD));
200 memcpy(&(s->s3->read_sequence[2]), &(rdata->packet[5]), 6);
229 memcpy(&(rdata->rbuf), &(s->s3->rbuf), sizeof(SSL3_BUFFER));
230 memcpy(&(rdata->rrec), &(s->s3->rrec), sizeof(SSL3_RECORD));
252 memset(&(s->s3->rbuf), 0, sizeof(SSL3_BUFFER));
253 memset(&(s->s3->rrec), 0, sizeof(SSL3_RECORD));
317 s->s3->rrec.seq_num)
    [all...]
t1_enc.c 300 s->s3->server_random,SSL3_RANDOM_SIZE,
301 s->s3->client_random,SSL3_RANDOM_SIZE,
343 is_export=SSL_C_IS_EXPORT(s->s3->tmp.new_cipher);
344 c=s->s3->tmp.new_sym_enc;
345 m=s->s3->tmp.new_hash;
346 mac_type = s->s3->tmp.new_mac_pkey_type;
348 comp=s->s3->tmp.new_compression;
354 s->s3->tmp.new_cipher->algorithm_mkey,
355 s->s3->tmp.new_cipher->algorithm_auth,
360 printf("\tkey_block: len= %d, data= ", s->s3->tmp.key_block_length)
    [all...]
  /external/clang/test/Sema/
pragma-pack-5.c 30 struct s3 { struct
36 extern int check[sizeof(struct s3) == 8 ? 1 : -1];
37 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}}
pragma-pack-and-options-align.c 35 struct s3 { struct
39 extern int a[sizeof(struct s3) == 8 ? 1 : -1];
arm-layout.c 35 struct s3 { struct
40 check(s3_size, sizeof(struct s3) == 8);
41 check(s3_offset_0, __builtin_offsetof(struct s3, field0) == 0);
42 check(s3_offset_1, __builtin_offsetof(struct s3, field2) == 7);
pragma-align-mac68k.c 31 struct s3 { struct
35 extern int a3_0[offsetof(struct s3, f0) == 0 ? 1 : -1];
36 extern int a3_1[offsetof(struct s3, f1) == 2 ? 1 : -1];
37 extern int a3_2[sizeof(struct s3) == 18 ? 1 : -1];
38 extern int a3_3[__alignof(struct s3) == 2 ? 1 : -1];
  /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/clang/test/Analysis/
array-struct.c 126 struct s3 { struct
130 static struct s3 opt;
134 struct s3 my_opt = opt;
147 struct s3 p[1];
153 void f16(struct s3 *p) {
154 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.}}
stack-addr-ps.cpp 19 int &s3 = s2; // expected-note {{binding reference variable 's3' here}} local
20 return s3; // expected-warning{{Address of stack memory associated with local variable 's1' returned}} expected-warning {{reference to stack memory associated with local variable 's1' returned}}
  /external/clang/test/SemaCXX/
elaborated-type-specifier.cpp 9 struct S3 *y;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
15 if (s1->y == s3) return true;
type-definition-in-specifier.cpp 6 struct S3;
18 struct S3 { int x; } s3; local
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
calc_en.cpp 279 Word32 s3; /* Intermediate energy accumulator */ local
294 s3 = 0;
311 s3 = amrnb_fxp_mac_16_by_16bb((Word32) tmp2, (Word32) code[i], s3);/* Compute scalar product */
323 s3 = s3 << 1;
354 /* s3 is not always sum of squares */
355 exp = norm_l(s3);
356 frac_en[2] = (Word16)(L_shl(s3, exp, pOverflow) >> 16);
609 Word32 s3; /* Intermediate energy accumulator * local
    [all...]
  /external/chromium/chrome/common/extensions/
extension_error_utils.cc 31 const std::string& s3) {
35 ReplaceFirstSubstringAfterOffset(&ret_val, 0, "*", s3);
  /external/clang/test/PCH/
cxx-templates.cpp 31 S3<int> s3; local
32 s3.m();
  /external/clang/test/SemaTemplate/
self-comparison.cpp 21 struct S3 {
45 S3 s3; s3.foo<1, 1>(); local
  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican.c 57 ulong32 s0, s1, s2, s3, t0, t1, t2, t3; local
63 LOAD32H(s3, pelmac->state + 12);
69 Te3(byte(s3, 0));
73 Te2(byte(s3, 1)) ^
77 Te1(byte(s3, 2)) ^
81 Te0(byte(s3, 3)) ^
85 s0 = t0; s1 = t1; s2 = t2; s3 = t3;
90 STORE32H(s3, pelmac->state + 12);

Completed in 1172 milliseconds

1 2 3 4 5 6 7 8 9