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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
PR2919-builtin-types-compat-strips-crv.c 3 typedef struct foo T0;
6 int a0[__builtin_types_compatible_p(T0,
  /external/clang/test/CodeGen/
bitfield-init.c 13 typedef union T0 { char field0 : 2; } T0;
14 T0 T0_values = { 0 };
struct-passing.c 7 typedef int T0;
10 T0 __attribute__((const)) f0(void);
11 T0 __attribute__((pure)) f1(void);
  /external/clang/test/Layout/
ms-x86-misalignedarray.cpp 6 struct T0 { char c; };
7 struct T2 : virtual T0 { };
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/metag/
metadsp21ext.s 2 D T0 D0.0,D0.11,D0.7,D0.14
3 D T0 AC0.0,D0.11,D0.7,D0.14
metadsp21ext.d 10 .*: 9002cee0 D T0 #0x0,#0xb,#0x7,#0xe
11 .*: 9082cee0 D T0 #0x10,#0xb,#0x7,#0xe
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
lagconceal.cpp 49 int16 * T0, (i/o): current lag
141 int16 * T0,
196 *T0 = *old_T0;
200 *T0 = lag_hist[0];
227 *T0 = add_int16(mult_int16(tmp, ONE_PER_3), D2);
231 if (*T0 > maxLag)
233 *T0 = maxLag;
236 if (*T0 < minLag)
238 *T0 = minLag;
253 tmp = *T0 - maxLag
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p10.cpp 3 typedef const int T0;
8 mutable T0 f1; // expected-error{{'mutable' and 'const' cannot be mixed}}
  /external/clang/test/SemaCXX/
PR10243.cpp 5 struct T0 {
7 T0() = default;
  /external/clang/test/Modules/Inputs/
linkage-merge-sub.h 11 typedef int T0;
  /prebuilts/go/darwin-x86/src/crypto/aes/
gcm_amd64.s 27 #define T0 X11
172 PSHUFD $78, B0, T0
173 PXOR B0, T0
174 PCLMULQDQ $0x00, T0, ACCM
178 MOVOU ACCM, T0
180 PSLLDQ $8, T0
182 PXOR T0, ACC0
184 MOVOU POLY, T0
185 PCLMULQDQ $0x01, ACC0, T0
187 PXOR T0, ACC
    [all...]
  /prebuilts/go/linux-x86/src/crypto/aes/
gcm_amd64.s 27 #define T0 X11
172 PSHUFD $78, B0, T0
173 PXOR B0, T0
174 PCLMULQDQ $0x00, T0, ACCM
178 MOVOU ACCM, T0
180 PSLLDQ $8, T0
182 PXOR T0, ACC0
184 MOVOU POLY, T0
185 PCLMULQDQ $0x01, ACC0, T0
187 PXOR T0, ACC
    [all...]
  /external/clang/test/SemaTemplate/
anonymous-union.cpp 4 struct T0 {
11 struct T1 : public T0, public T { //expected-warning{{direct base 'T0' is inaccessible due to ambiguity:\n struct T1<struct A> -> struct T0\n struct T1<struct A> -> struct A -> struct T0}}
17 struct A : public T0 { };
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 26 typedef std::pair<long, char> T0;
28 T0 t0(2, 'a');
30 t1 = t0;
  /prebuilts/go/darwin-x86/test/fixedbugs/issue6295.dir/
p2.go 13 _ p0.T0 = p0.S0{}
14 _ p0.T0 = p1.S1{}
15 _ p0.T0 = p1.NewT0()
16 _ p0.T0 = p1.NewT1() // same as p1.S1{}
  /prebuilts/go/linux-x86/test/fixedbugs/issue6295.dir/
p2.go 13 _ p0.T0 = p0.S0{}
14 _ p0.T0 = p1.S1{}
15 _ p0.T0 = p1.NewT0()
16 _ p0.T0 = p1.NewT1() // same as p1.S1{}
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 24 typedef std::pair<double, char> T0;
26 T0 t0(2.5, 'a');
28 t1 = t0;
convert_copy.pass.cpp 37 typedef std::tuple<double> T0;
39 T0 t0(2.5);
41 t1 = t0;
45 typedef std::tuple<double, char> T0;
47 T0 t0(2.5, 'a');
49 t1 = t0;
54 typedef std::tuple<double, char, D> T0;
56 T0 t0(2.5, 'a', D(3))
    [all...]
convert_move.pass.cpp 40 typedef std::tuple<double> T0;
42 T0 t0(2.5);
44 t1 = std::move(t0);
48 typedef std::tuple<double, char> T0;
50 T0 t0(2.5, 'a');
52 t1 = std::move(t0);
57 typedef std::tuple<double, char, D> T0;
59 T0 t0(2.5, 'a', D(3))
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_copy.pass.cpp 27 typedef std::tuple<double> T0;
29 T0 t0(2.5);
30 T1 t1(std::allocator_arg, A1<int>(), t0);
34 typedef std::tuple<int> T0;
36 T0 t0(2);
38 T1 t1(std::allocator_arg, A1<int>(5), t0);
43 typedef std::tuple<int, int> T0;
45 T0 t0(2, 3)
    [all...]
convert_copy.pass.cpp 56 typedef std::tuple<double> T0;
58 T0 t0(2.5);
59 T1 t1 = t0;
64 typedef std::tuple<double> T0;
66 constexpr T0 t0(2.5);
67 constexpr T1 t1 = t0;
71 typedef std::tuple<int> T0;
73 constexpr T0 t0(2)
    [all...]
convert_move.pass.cpp 39 typedef std::tuple<double> T0;
41 T0 t0(2.5);
42 T1 t1 = std::move(t0);
46 typedef std::tuple<double, char> T0;
48 T0 t0(2.5, 'a');
49 T1 t1 = std::move(t0);
54 typedef std::tuple<double, char, D> T0;
56 T0 t0(2.5, 'a', D(3))
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.assign/
const_pair.pass.cpp 26 typedef std::pair<double, char> T0;
28 T0 t0(2.5, 'a');
30 t1 = t0;
convert_copy.pass.cpp 39 typedef std::tuple<double> T0;
41 T0 t0(2.5);
43 t1 = t0;
47 typedef std::tuple<double, char> T0;
49 T0 t0(2.5, 'a');
51 t1 = t0;
56 typedef std::tuple<double, char, D> T0;
58 T0 t0(2.5, 'a', D(3))
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
enc_lag6.cpp 97 T0 -- Word16 -- Pitch delay
137 If t0 is the lag in the previous subframe then
138 t_min=t0-5 and t_max=t0+4 and the range is given by
187 Word16 T0, /* i : Pitch delay */
201 if (T0 <= 94)
203 /* index = T0*6 - 105 + T0_frac */
204 i = 6 * T0 - 105;
210 index = add(T0, 368, pOverflow);
217 /* index = 6*(T0-T0_min) + 3 + T0_frac *
    [all...]

Completed in 1210 milliseconds

1 2 3 4 5 6 7 8 91011>>