Searched defs:s0 (Results 51 - 75 of 221) sorted by relevance

123456789

/external/clang/test/CodeGen/
H A Ddebug-info.c16 struct s0;
17 struct s0 { struct s0 *p; } g0; struct
19 struct s0 *f0(struct s0 *a0) {
H A Dattributes.c7 // CHECK: @t13 = global %struct.s0 zeroinitializer, section "SECT"
8 struct s0 { int x; }; struct
9 struct s0 t13 __attribute__((section("SECT"))) = { 0 };
H A Dbuiltins.c91 char s0[10], s1[] = "Hello"; local
92 V(strcat, (s0, s1));
93 V(strcmp, (s0, s1));
94 V(strncat, (s0, s1, n));
95 V(strchr, (s0, s1[0]));
96 V(strrchr, (s0, s1[0]));
97 V(strcpy, (s0, s1));
98 V(strncpy, (s0, s1, n));
101 V(__memset_chk, (s0, 0, sizeof s0,
[all...]
H A Dpacked-arrays.c4 struct s0 { struct
27 int align0 = __alignof(struct s0);
36 int align0_x = __alignof(((struct s0*) 0)->x);
46 int align0_x0 = __alignof(((struct s0*) 0)->x[0]);
60 int f0_a(struct s0 *a) {
63 int f0_b(struct s0 *a) {
H A Dpacked-structure.c5 struct s0 { struct
15 int s0_align_x = __alignof(((struct s0*)0)->x);
16 int s0_align_y = __alignof(((struct s0*)0)->y);
17 int s0_align = __alignof(struct s0);
22 int s0_load_x(struct s0 *a) { return a->x; }
30 int s0_load_y(struct s0 *a) { return a->y; }
33 void s0_copy(struct s0 *a, struct s0 *b) { *b = *a; }
/external/clang/test/Sema/
H A Dattr-unused.c25 struct Test0_not_unused s0; // expected-warning {{unused variable}} local
H A Dwarn-unused-value.c84 struct s0 { int f0; }; struct
87 void f1(struct s0 *a) {
/external/dng_sdk/source/
H A Ddng_spline.h31 real64 s0,
43 real64 D = ((y0 * (2.0 - C + B) + (s0 * A * B)) * (C * C)) +
28 EvaluateSplineSegment(real64 x, real64 x0, real64 y0, real64 s0, real64 x1, real64 y1, real64 s1) argument
/external/fdlibm/
H A De_sqrt.c101 int ix0,s0,q,m,t,i; local
140 q = q1 = s0 = s1 = 0; /* [q,q1] = ieee_sqrt(x) */
144 t = s0+r;
146 s0 = t+r;
158 t = s0;
161 if(((t1&sign)==sign)&&(s1&sign)==0) s0 += 1;
/external/clang/test/FixIt/
H A Dfixit.c25 // CHECK: struct s s0 = { .y = 5 };
26 struct s s0 = { y: 5 }; // expected-warning {{GNU old-style}} variable in typeref:struct:s
/external/clang/test/SemaTemplate/
H A Ddependent-base-member-init.cpp32 template<typename T> struct s0 {}; struct
34 template<typename T> struct s1 : s0<typename s0_traits<T>::t0> {
/external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
H A Dsize_size_pointer_size.pass.cpp30 S s0 = s; local
51 assert(s == s0);
/external/libvpx/libvpx/vpx_dsp/arm/
H A Dmem_neon.h27 const int16x4_t s0 = vmovn_s32(v0.val[0]); local
32 res.val[0] = vcombine_s16(s0, s2);
44 const int16x4_t s0 = vmovn_s32(v0); local
46 return vcombine_s16(s0, s1);
H A Dvpx_convolve_avg_neon.c27 uint8x8_t s0, s1; local
31 s0 = vld1_u8(src);
35 s01 = vzip_u32(vreinterpret_u32_u8(s0), vreinterpret_u32_u8(s1));
48 uint8x8_t s0, s1, d0, d1; local
51 s0 = vld1_u8(src);
58 s01 = vcombine_u8(s0, s1);
69 uint8x16_t s0, s1, d0, d1; local
71 s0 = vld1q_u8(src);
78 d0 = vrhaddq_u8(s0, d0);
88 uint8x16_t s0, s local
115 uint8x16_t s0, s1, s2, s3, d0, d1, d2, d3; local
[all...]
/external/openssh/
H A Drijndael.c765 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
774 s0 = GETU32(pt ) ^ rk[0];
780 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[ 4];
781 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[ 5];
782 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^ Te3[s1 & 0xff] ^ rk[ 6];
783 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^ Te3[s2 & 0xff] ^ rk[ 7];
785 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^ Te3[t3 & 0xff] ^ rk[ 8];
790 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^ Te3[s3 & 0xff] ^ rk[12];
791 t1 = Te0[s1 >> 24] ^ Te1[(s2 >> 16) & 0xff] ^ Te2[(s3 >> 8) & 0xff] ^ Te3[s0 & 0xff] ^ rk[13];
792 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >>
[all...]
/external/swiftshader/src/Shader/
H A DPixelPipeline.cpp96 Vector4s s0; local
100 if(src0.type != Shader::PARAMETER_VOID) s0 = fetchRegister(src0);
120 case Shader::OPCODE_MOV: MOV(d, s0); break;
121 case Shader::OPCODE_ADD: ADD(d, s0, s1); break;
122 case Shader::OPCODE_SUB: SUB(d, s0, s1); break;
123 case Shader::OPCODE_MAD: MAD(d, s0, s1, s2); break;
124 case Shader::OPCODE_MUL: MUL(d, s0, s1); break;
125 case Shader::OPCODE_DP3: DP3(d, s0, s1); break;
126 case Shader::OPCODE_DP4: DP4(d, s0, s1); break;
127 case Shader::OPCODE_LRP: LRP(d, s0, s
[all...]
/external/v8/src/base/utils/
H A Drandom-number-generator.h105 uint64_t s0 = *state1; local
106 *state0 = s0;
109 s1 ^= s0;
110 s1 ^= s0 >> 26;
/external/valgrind/VEX/test/
H A Dtest-amd64-shift.h30 void exec_opq(int64 s2, int64 s0, int64 s1, int64 iflags) argument
33 res = s0;
40 stringify(OP) "q", s0, s1, res, iflags, flags & CC_MASK);
43 void exec_opl(int64 s2, int64 s0, int64 s1, int64 iflags) argument
46 res = s0;
53 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
56 void exec_opw(int64 s2, int64 s0, int64 s1, int64 iflags) argument
59 res = s0;
66 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
79 void exec_opl(int64 s2, int64 s0, int6 argument
92 exec_opw(int64 s2, int64 s0, int64 s1, int64 iflags) argument
108 exec_opb(int64 s0, int64 s1, int64 iflags) argument
122 exec_op(int64 s2, int64 s0, int64 s1) argument
[all...]
H A Dtest-amd64.h27 inline void exec_opq(int64 s0, int64 s1, int64 iflags) argument
30 res = s0;
34 stringify(OP) "q", s0, res, iflags, flags & CC_MASK);
36 inline void exec_opl(int64 s0, int64 s1, int64 iflags) argument
39 res = s0;
43 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
45 inline void exec_opw(int64 s0, int64 s1, int64 iflags) argument
48 res = s0;
52 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
54 inline void exec_opb(int64 s0, int6 argument
64 exec_opq(int64 s0, int64 s1, int64 iflags) argument
74 exec_opl(int64 s0, int64 s1, int64 iflags) argument
84 exec_opw(int64 s0, int64 s1, int64 iflags) argument
94 exec_opb(int64 s0, int64 s1, int64 iflags) argument
105 exec_op(int64 s0, int64 s1) argument
[all...]
H A Dtest-i386-shift.h29 void exec_opl(int s2, int s0, int s1, int iflags) argument
32 res = s0;
39 stringify(OP) "l", s0, s1, res, iflags, flags & CC_MASK);
42 void exec_opw(int s2, int s0, int s1, int iflags) argument
45 res = s0;
52 stringify(OP) "w", s0, s1, res, iflags, flags & CC_MASK);
65 void exec_opl(int s2, int s0, int s1, int iflags) argument
68 res = s0;
75 stringify(OP) "l", s0, s2, s1, res, iflags, flags & CC_MASK);
78 void exec_opw(int s2, int s0, in argument
94 exec_opb(int s0, int s1, int iflags) argument
108 exec_op(int s2, int s0, int s1) argument
[all...]
H A Dtest-i386.h28 inline void exec_opl(int s0, int s1, int iflags) argument
31 res = s0;
36 stringify(OP) "l", s0, res, iflags, flags & CC_MASK);
42 inline void exec_opw(int s0, int s1, int iflags) argument
45 res = s0;
50 stringify(OP) "w", s0, res, iflags, flags & CC_MASK);
56 inline void exec_opb(int s0, int s1, int iflags) argument
59 res = s0;
64 stringify(OP) "b", s0, res, iflags, flags & CC_MASK);
71 inline void exec_opl(int s0, in argument
85 exec_opw(int s0, int s1, int iflags) argument
99 exec_opb(int s0, int s1, int iflags) argument
114 exec_op(int s0, int s1) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
34 s0 = GETU32(pt ) ^ rk[0];
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
88 PUTU32(ct , s0);
/external/wpa_supplicant_8/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
34 s0 = GETU32(pt ) ^ rk[0];
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
88 PUTU32(ct , s0);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Daes-internal-enc.c25 u32 s0, s1, s2, s3, t0, t1, t2, t3; local
34 s0 = GETU32(pt ) ^ rk[0];
87 s0 = TE41(t0) ^ TE42(t1) ^ TE43(t2) ^ TE44(t3) ^ rk[0];
88 PUTU32(ct , s0);
/external/boringssl/src/crypto/aes/
H A Daes.c682 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
692 s0 = GETU32(in) ^ rk[0];
698 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^
701 Te3[s0 & 0xff] ^ rk[5];
702 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >> 8) & 0xff] ^
704 t3 = Te0[s3 >> 24] ^ Te1[(s0 >> 16) & 0xff] ^ Te2[(s1 >> 8) & 0xff] ^
707 s0 = Te0[t0 >> 24] ^ Te1[(t1 >> 16) & 0xff] ^ Te2[(t2 >> 8) & 0xff] ^
716 t0 = Te0[s0 >> 24] ^ Te1[(s1 >> 16) & 0xff] ^ Te2[(s2 >> 8) & 0xff] ^
719 Te3[s0 & 0xff] ^ rk[13];
720 t2 = Te0[s2 >> 24] ^ Te1[(s3 >> 16) & 0xff] ^ Te2[(s0 >>
870 uint32_t s0, s1, s2, s3, t0, t1, t2, t3; local
[all...]

Completed in 911 milliseconds

123456789