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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
attr-noinline.c 4 void t1() __attribute__((noinline));
6 void t1() function
attr-naked.c 3 void t1() __attribute__((naked));
7 // CHECK: define void @t1() nounwind noinline naked {
8 void t1() function
attr-nodebug.c 4 void t1() __attribute__((nodebug));
6 void t1() function
arm-inline-asm.c 3 void t1 (void *f, int g) { function
2006-01-16-BitCountIntrinsicsUnsigned.c 8 int t1(int X) { function
9 // CHECK: t1
arm-asm.c 2 int t1() { function
ms_struct-bitfield-init.c 14 } ATTR t1 = {'a', 'b'}; variable in typeref:struct:__anon5320
46 if (sizeof(t1) != 2)
48 if (t1.foo != 'a')
50 if (t1.bar != 'b')
52 t1.foo = 'c';
53 t1.bar = 'd';
54 if (t1.foo != 'c')
56 if (t1.bar != 'd')
  /external/dropbear/libtommath/
bn_mp_sqrt.c 22 mp_int t1,t2; local
35 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
44 mp_rshd (&t1,t1.used/2);
46 /* t1 > 0 */
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
53 if ((res = mp_div_2(&t1,&t1)) != MP_OKAY)
    [all...]
bn_mp_lcm.c 22 mp_int t1, t2; local
25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) {
29 /* t1 = get the GCD of the two inputs */
30 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) {
37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
53 mp_clear_multi (&t1, &t2, NULL);
bn_mp_n_root.c 30 mp_int t1, t2, t3; local
38 if ((res = mp_init (&t1)) != MP_OKAY) {
58 /* t1 = t2 */
59 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
63 /* t2 = t1 - ((t1**b - a) / (b * t1**(b-1))) */
65 /* t3 = t1**(b-1) */
66 if ((res = mp_expt_d (&t1, b - 1, &t3)) != MP_OKAY) {
71 /* t2 = t1**b *
    [all...]
  /external/clang/test/Sema/
sign-conversion.c 7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}} local
attr-nodebug.c 5 void t1() __attribute__((nodebug));
attr-noinline.c 5 void t1() __attribute__((noinline));
vector-cast.c 3 typedef long long t1 __attribute__ ((vector_size (8))); typedef
9 t1 v1;
14 't2' and 't1' of different size}}
15 v1 = (t1)v2; // -expected-error {{invalid conversion between vector type \
16 't1' and 't2' of different size}}
19 v1 = (t1)(char *)10; // -expected-error {{invalid conversion between vector \
20 type 't1' and scalar type 'char *'}}
21 v1 = (t1)(long long)10;
22 v1 = (t1)(short)10; // -expected-error {{invalid conversion between vector \
23 type 't1' and integer type 'short' of different size}
    [all...]
  /system/extras/tests/bionic/libc/common/
test_pthread_join.c 43 pthread_t t1 = (pthread_t)arg; local
46 pthread_join(t1, &result);
55 pthread_t t1 = (pthread_t)arg; local
58 pthread_join(t1, &result);
65 pthread_t t1, t2, t3; local
67 pthread_create( &t1, NULL, thread1_func, NULL );
68 pthread_create( &t2, NULL, thread2_func, (void*)t1 );
69 pthread_create( &t3, NULL, thread3_func, (void*)t1 );
  /external/clang/test/PCH/
cxx-static_assert.cpp 17 T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}} variable
  /system/extras/tests/bionic/libc/bionic/
test_pthread_create.c 22 pthread_t t1, t2; local
24 pthread_create( &t1, NULL, thread1_func, (void *)1 );
26 pthread_join(t1, NULL);
  /bionic/libm/src/
e_hypotf.c 26 float a=x,b=y,t1,t2,y1,y2,w; local
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
54 b *= t1;
55 a *= t1;
68 SET_FLOAT_WORD(t1,ha&0xfffff000);
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
    [all...]
e_hypot.c 34 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
35 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
56 double a=x,b=y,t1,t2,y1,y2,w; local
88 t1=0;
89 SET_HIGH_WORD(t1,0x7fd00000); /* t1=2^1022 */
90 b *= t1;
91 a *= t1;
    [all...]
  /external/clang/test/SemaTemplate/
fun-template-def.cpp 19 T f1(T t1, U u1, int i1)
27 i1 = t1[u1];
28 i1 *= t1;
30 i1(u1, t1); // error
31 u1(i1, t1);
37 new U(i1, t1);
38 new int(t1, u1);
39 new (t1, u1) int;
40 delete t1;
42 dummy d1 = sizeof(t1); // expected-error {{no viable conversion}
    [all...]
  /external/fdlibm/
e_hypot.c 30 * t1*y1+((x-y)*(x-y)+(t1*y2+t2*y))
31 * where t1 = 2x with lower 32 bits cleared, t2 = 2x-t1,
55 double a=x,b=y,t1,t2,y1,y2,w; local
80 t1=0;
81 __HI(t1) = 0x7fd00000; /* t1=2^1022 */
82 b *= t1;
83 a *= t1;
    [all...]
  /external/aac/libAACenc/src/
bit_cnt.cpp 116 INT t0,t1,t2,t3; local
128 t1= values[i+1];
134 bc1_2+=FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1];
137 bc5_6+=FDKaacEnc_huff_ltab5_6[t0+4][t1+4];
141 t1=fixp_abs(t1);
146 bc3_4+= FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3];
148 bc7_8+=FDKaacEnc_huff_ltab7_8[t0][t1];
151 bc9_10+=FDKaacEnc_huff_ltab9_10[t0][t1];
154 bc11+= (INT) FDKaacEnc_huff_ltab11[t0][t1];
192 INT t0,t1,t2,t3; local
263 INT t0,t1; local
318 INT t0,t1; local
368 INT t0,t1; local
415 INT t0,t1; local
456 INT t0,t1,t00,t01; local
548 INT i,t0,t1,t2,t3,t00,t01; local
782 INT i,t0,t1,t2,t3,t00,t01; local
    [all...]
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_map.c 35 void *t1, *t2; local
42 if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
50 if ((err = mp_invmod(P->z, modulus, t1)) != CRYPT_OK) { goto done; }
53 if ((err = mp_sqr(t1, t2)) != CRYPT_OK) { goto done; }
55 if ((err = mp_mul(t1, t2, t1)) != CRYPT_OK) { goto done; }
56 if ((err = mp_mod(t1, modulus, t1)) != CRYPT_OK) { goto done; }
61 if ((err = mp_mul(P->y, t1, P->y)) != CRYPT_OK) { goto done; }
67 mp_clear_multi(t1, t2, NULL)
    [all...]
  /external/aac/libFDK/src/
fft_rad2.cpp 172 INT t1 = (r+j)<<1; local
173 INT t2 = t1 + (mh<<1);
180 ur = x[t1]>>1;
181 ui = x[t1+1]>>1;
183 x[t1] = ur+vr;
184 x[t1+1] = ui+vi;
189 t1 += mh;
190 t2 = t1+(mh<<1);
196 ur = x[t1]>>1;
197 ui = x[t1+1]>>1
214 INT t1 = (r+j)<<1; local
278 INT t1 = (r+j)<<1; local
374 INT t1 = (r+j)<<1; local
416 INT t1 = (r+j)<<1; local
479 INT t1 = (r+mh\/2-j)<<1; local
    [all...]
  /external/bluetooth/bluez/sbc/
sbc_primitives.c 62 FIXED_A t1[4]; local
67 t1[0] = t1[1] = t1[2] = t1[3] =
72 t1[0] += (FIXED_A) in[hop] * consts[hop];
73 t1[0] += (FIXED_A) in[hop + 1] * consts[hop + 1];
74 t1[1] += (FIXED_A) in[hop + 2] * consts[hop + 2];
75 t1[1] += (FIXED_A) in[hop + 3] * consts[hop + 3];
76 t1[2] += (FIXED_A) in[hop + 4] * consts[hop + 4]
120 FIXED_A t1[8]; local
    [all...]

Completed in 593 milliseconds

1 2 3 4 5 6 7 8 91011>>