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

1 2 3 4 5 6 7

  /hardware/qcom/gps/msm8909w_3100/core/data-items/common/
IndexFactory.h 38 template <typename CT, typename DIT>
42 static IClientIndex <CT, DIT> * createClientIndex ();
43 static IDataItemIndex <CT, DIT> * createDataItemIndex ();
IClientIndex.h 38 template <typename CT, typename DIT>
44 virtual bool isSubscribedClient (CT client) = 0;
47 virtual void getSubscribedList (CT client, std :: list <DIT> & out) = 0;
50 virtual int remove (CT client) = 0;
57 std :: list <CT> & out
64 CT client,
72 CT client,
DataItemIndex.h 42 template <typename CT, typename DIT>
44 class DataItemIndex : public IDataItemIndex <CT, DIT> {
52 void getListOfSubscribedClients (DIT id, std :: list <CT> & out);
56 void remove (const std :: list <CT> & r, std :: list <DIT> & out);
58 void remove (DIT id, const std :: list <CT> & r, std :: list <CT> & out);
60 void add (DIT id, const std :: list <CT> & l, std :: list <CT> & out);
62 void add (CT client, const std :: list <DIT> & l, std :: list <DIT> & out);
65 std :: map < DIT, std :: list <CT> > mClientsPerDataItemMap
    [all...]
ClientIndex.h 41 template <typename CT, typename DIT>
43 class ClientIndex : public IClientIndex <CT, DIT> {
51 bool isSubscribedClient (CT client);
53 void getSubscribedList (CT client, std :: list <DIT> & out);
55 int remove (CT client);
57 void remove (const std :: list <DIT> & r, std :: list <CT> & out);
59 void remove (CT client, const std :: list <DIT> & r, std :: list <DIT> & out);
61 void add (CT client, const std :: list <DIT> & l, std :: list <DIT> & out);
65 std :: map < CT , std :: list <DIT> > mDataItemsPerClientMap;
IDataItemIndex.h 38 template <typename CT, typename DIT>
48 std :: list <CT> & out
58 const std :: list <CT> & r,
67 const std :: list <CT> & r,
68 std :: list <CT> & out
75 const std :: list <CT> & l,
76 std :: list <CT> & out
82 CT client,
IndexFactory.cpp 45 template <typename CT, typename DIT>
46 inline IClientIndex <CT, DIT> * IndexFactory <CT, DIT> :: createClientIndex
49 return new (nothrow) ClientIndex <CT, DIT> ();
52 template <typename CT, typename DIT>
53 inline IDataItemIndex <CT, DIT> * IndexFactory <CT, DIT> :: createDataItemIndex
56 return new (nothrow) DataItemIndex <CT, DIT> ();
DataItemIndex.cpp 41 template <typename CT, typename DIT>
42 inline DataItemIndex <CT,DIT> :: DataItemIndex () {}
44 template <typename CT, typename DIT>
45 inline DataItemIndex <CT,DIT> :: ~DataItemIndex () {}
47 template <typename CT, typename DIT>
48 void DataItemIndex <CT,DIT> :: getListOfSubscribedClients
51 list <CT> & out
54 typename map < DIT, list <CT> > :: iterator cdiIter =
62 template <typename CT, typename DIT>
63 int DataItemIndex <CT,DIT> :: remove (DIT id)
    [all...]
ClientIndex.cpp 40 template <typename CT, typename DIT>
41 inline ClientIndex <CT,DIT> :: ClientIndex () {}
43 template <typename CT, typename DIT>
44 inline ClientIndex <CT,DIT> :: ~ClientIndex () {}
46 template <typename CT, typename DIT>
47 bool ClientIndex <CT,DIT> :: isSubscribedClient (CT client) {
50 typename map < CT, list <DIT> > :: iterator it =
59 template <typename CT, typename DIT>
60 void ClientIndex <CT,DIT> :: getSubscribedList (CT client, list <DIT> & out)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
random_poisson_op.cc 52 CT X = uniform_result[uniform_remaining]
103 typedef random::UniformDistribution<random::PhiloxRandom, CT> Uniform;
118 const CT rate = CT(rate_flat[rate_idx]);
122 if (rate < CT(10)) {
131 const CT exp_neg_rate = Eigen::numext::exp(-rate);
141 CT prod = 1;
142 CT x = 0;
150 x <= CT(Eigen::NumTraits<U>::highest())) {
182 const CT log_rate = log(rate)
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
single_source_alloc.rs 37 #define VERIFY_KERNEL(CT) \
38 CT RS_KERNEL verify_##CT(CT in, int x, int y, int z) { \
40 _RS_ASSERT_EQU(in, (CT) val); \
43 CT##2 RS_KERNEL verify_##CT##2(CT##2 in, int x, int y, int z) { \
45 _RS_ASSERT_EQU(in.x, (CT) val); \
46 _RS_ASSERT_EQU(in.y, (CT) (val + 1));
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
single_source_alloc.rs 34 #define VERIFY_KERNEL(CT) \
35 void RS_KERNEL verify_##CT(CT in, int x, int y, int z) { \
37 _RS_ASSERT_EQU(in, (CT) val); \
39 void RS_KERNEL verify_##CT##2(CT##2 in, int x, int y, int z) { \
41 _RS_ASSERT_EQU(in.x, (CT) val); \
42 _RS_ASSERT_EQU(in.y, (CT) (val + 1)); \
44 void RS_KERNEL verify_##CT##3(CT##3 in, int x, int y, int z) {
    [all...]
  /external/llvm/unittests/IR/
DebugTypeODRUniquingTest.cpp 40 auto &CT = *DICompositeType::getODRType(
43 EXPECT_EQ(UUID.getString(), CT.getIdentifier());
46 EXPECT_EQ(&CT, DICompositeType::getODRTypeIfExists(Context, UUID));
48 &CT, DICompositeType::getODRType(Context, UUID, dwarf::DW_TAG_class_type,
51 EXPECT_EQ(&CT, DICompositeType::getODRType(
71 auto &CT = *DICompositeType::buildODRType(
74 EXPECT_EQ(&CT, DICompositeType::getODRTypeIfExists(Context, UUID));
75 EXPECT_EQ(dwarf::DW_TAG_class_type, CT.getTag());
78 EXPECT_EQ(&CT, DICompositeType::buildODRType(
81 EXPECT_EQ(dwarf::DW_TAG_class_type, CT.getTag())
    [all...]
  /tools/test/connectivity/acts/tests/google/bt/car_bt/
BtCarMediaPassthroughTest.py 51 self.CT = self.android_devices[0]
54 self.SNK = self.CT
58 self.btAddrCT = self.CT.droid.bluetoothGetLocalAddress()
82 self.CT, self.TG, attempts=4, auto_confirm=False):
117 self.CT.droid.bluetoothMediaConnectToCarMBS()
150 1. Invoke Play, Pause from CT
162 self.log, self.CT, self.TG, car_media_utils.CMD_MEDIA_PLAY,
166 self.log, self.CT, self.TG, car_media_utils.CMD_MEDIA_PAUSE,
181 1. Invoke other passthrough commands (skip >> & <<) from CT
193 self.log, self.CT, self.TG
    [all...]
  /external/clang/tools/libclang/
CXType.cpp 131 CXType CT = { TK, { TK == CXType_Invalid ? nullptr
133 return CT;
138 static inline QualType GetQualType(CXType CT) {
139 return QualType::getFromOpaquePtr(CT.data[0]);
142 static inline CXTranslationUnit GetTU(CXType CT) {
143 return static_cast<CXTranslationUnit>(CT.data[1]);
223 CXString clang_getTypeSpelling(CXType CT) {
224 QualType T = GetQualType(CT);
228 CXTranslationUnit TU = GetTU(CT);
321 CXType clang_getCanonicalType(CXType CT) {
    [all...]
  /external/libcxx/test/libcxx/debug/containers/
db_sequence_container_iterators.pass.cpp 30 template <class Container, ContainerType CT>
31 struct SequenceContainerChecks : BasicContainerChecks<Container, CT> {
32 using Base = BasicContainerChecks<Container, CT>;
46 if constexpr (CT != CT_ForwardList) {
57 if constexpr (CT == CT_Vector || CT == CT_Deque || CT == CT_List) {
60 if constexpr (CT == CT_List || CT == CT_Deque) {
63 if constexpr (CT == CT_List || CT == CT_ForwardList)
    [all...]
db_associative_container_tests.pass.cpp 31 template <class Container, ContainerType CT>
32 struct AssociativeContainerChecks : BasicContainerChecks<Container, CT> {
33 using Base = BasicContainerChecks<Container, CT>;
db_unord_container_tests.pass.cpp 30 template <class Container, ContainerType CT>
31 struct UnorderedContainerChecks : BasicContainerChecks<Container, CT> {
32 using Base = BasicContainerChecks<Container, CT>;
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
GetElementPtrTypeIterator.h 58 CompositeType *CT = cast<CompositeType>(CurTy);
59 return CT->getTypeAtIndex(getOperand());
69 if (CompositeType *CT = dyn_cast<CompositeType>(CurTy)) {
70 CurTy = CT->getTypeAtIndex(getOperand());
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/metag/
metacore21-invalid.s 10 SWAP CT.0,PCX
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/debug/containers/
db_associative_container_tests.pass.cpp 31 template <class Container, ContainerType CT>
32 struct AssociativeContainerChecks : BasicContainerChecks<Container, CT> {
33 using Base = BasicContainerChecks<Container, CT>;
db_unord_container_tests.pass.cpp 30 template <class Container, ContainerType CT>
31 struct UnorderedContainerChecks : BasicContainerChecks<Container, CT> {
32 using Base = BasicContainerChecks<Container, CT>;
db_sequence_container_iterators.pass.cpp 30 template <class Container, ContainerType CT>
31 struct SequenceContainerChecks : BasicContainerChecks<Container, CT> {
32 using Base = BasicContainerChecks<Container, CT>;
45 if constexpr (CT != CT_ForwardList) {
54 if constexpr (CT == CT_Vector || CT == CT_Deque || CT == CT_List) {
57 if constexpr (CT == CT_List || CT == CT_Deque) {
130 if (CT == CT_Vector)
    [all...]
  /external/clang/test/Layout/
ms-x86-vtordisp.cpp 154 struct CT : virtual AT {
155 virtual ~CT();
157 CT::~CT(){}
161 // CHECK-NEXT: 0 | struct CT
162 // CHECK-NEXT: 0 | (CT vbtable pointer)
169 // CHECK-X64-NEXT: 0 | struct CT
170 // CHECK-X64-NEXT: 0 | (CT vbtable pointer)
448 sizeof(CT)+
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp     [all...]
  /external/llvm/include/llvm/IR/
GetElementPtrTypeIterator.h 67 CompositeType *CT = cast<CompositeType>(CurTy.getPointer());
68 return CT->getTypeAtIndex(getOperand());
80 } else if (CompositeType *CT =
82 CurTy.setPointer(CT->getTypeAtIndex(getOperand()));

Completed in 513 milliseconds

1 2 3 4 5 6 7