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

1 2 3 4 5 6 7

  /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 { };
  /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;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/list/aux_/preprocessed/plain/
list10.hpp 15 typename T0
20 , T0
28 typename T0, typename T1
33 , T0
41 typename T0, typename T1, typename T2
46 , T0
54 typename T0, typename T1, typename T2, typename T3
59 , T0
67 typename T0, typename T1, typename T2, typename T3, typename T4
72 , T0
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/vector/aux_/preprocessed/typeof_based/
vector10.hpp 15 typename T0
19 T0
27 typename T0, typename T1
32 , vector1<T0>
39 typename T0, typename T1, typename T2
44 , vector2< T0,T1 >
51 typename T0, typename T1, typename T2, typename T3
56 , vector3< T0,T1,T2 >
63 typename T0, typename T1, typename T2, typename T3, typename T4
68 , vector4< T0,T1,T2,T3
    [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<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...]
convert_move.pass.cpp 43 typedef std::tuple<double> T0;
45 T0 t0(2.5);
47 t1 = std::move(t0);
51 typedef std::tuple<double, char> T0;
53 T0 t0(2.5, 'a');
55 t1 = std::move(t0);
60 typedef std::tuple<double, char, D> T0;
62 T0 t0(2.5, 'a', D(3))
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_copy.pass.cpp 29 typedef std::tuple<double> T0;
31 T0 t0(2.5);
32 T1 t1(std::allocator_arg, A1<int>(), t0);
36 typedef std::tuple<int> T0;
38 T0 t0(2);
40 T1 t1(std::allocator_arg, A1<int>(5), t0);
45 typedef std::tuple<int, int> T0;
47 T0 t0(2, 3)
    [all...]
convert_copy.pass.cpp 59 typedef std::tuple<double> T0;
61 T0 t0(2.5);
62 T1 t1 = t0;
67 typedef std::tuple<double> T0;
69 constexpr T0 t0(2.5);
70 constexpr T1 t1 = t0;
74 typedef std::tuple<int> T0;
76 constexpr T0 t0(2)
    [all...]
convert_move.pass.cpp 41 typedef std::tuple<double> T0;
43 T0 t0(2.5);
44 T1 t1 = std::move(t0);
48 typedef std::tuple<double, char> T0;
50 T0 t0(2.5, 'a');
51 T1 t1 = std::move(t0);
56 typedef std::tuple<double, char, D> T0;
58 T0 t0(2.5, 'a', D(3))
    [all...]
  /ndk/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...]
  /ndk/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...]
  /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...]
cbsearch.cpp 59 T0 -- Word16 -- Pitch lag
188 Word16 T0, /* i : Pitch lag */
217 T0,
232 T0,
247 T0,
262 T0,
285 for (i = T0; i < L_SUBFR; i++)
289 h[i - T0],
317 for (i = T0; i < L_SUBFR; i++)
321 code[i - T0],
    [all...]

Completed in 557 milliseconds

1 2 3 4 5 6 7