HomeSort by relevance Sort by last modified time
    Searched defs:element_type (Results 51 - 75 of 115) sorted by null

1 23 4 5

  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h 139 typedef T element_type; typedef in class:llvm::IntrusiveRefCntPtr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
unique_ptr.h 131 typedef _Tp element_type; typedef in class:unique_ptr
218 typename add_lvalue_reference<element_type>::type
325 typedef _Tp element_type; typedef in class:unique_ptr
408 typename std::add_lvalue_reference<element_type>::type
shared_ptr_base.h 731 typedef _Tp element_type; typedef in class:__shared_ptr
1132 typedef typename _Sp::element_type element_type; typedef
1189 typedef _Tp element_type; typedef in class:__weak_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
unique_ptr.h 131 typedef _Tp element_type; typedef in class:unique_ptr
218 typename add_lvalue_reference<element_type>::type
325 typedef _Tp element_type; typedef in class:unique_ptr
408 typename std::add_lvalue_reference<element_type>::type
shared_ptr_base.h 731 typedef _Tp element_type; typedef in class:__shared_ptr
1132 typedef typename _Sp::element_type element_type; typedef
1189 typedef _Tp element_type; typedef in class:__weak_ptr
    [all...]
  /test/vts/compilation_tools/vtsc/
VtsCompilerUtils.cpp 194 string element_type = GetCppVariableType(arg.vector_value(0)); local
195 result = "::android::hardware::hidl_vec<" + element_type + ">";
207 string element_type = GetCppVariableType(cur_val); local
208 result = "::android::hardware::hidl_array<" + element_type + ", ";
296 string element_type = GetCppVariableType(arg.fmq_value(0)); local
297 result = "::android::hardware::MQDescriptorSync<" + element_type + ">";
302 string element_type = GetCppVariableType(arg.fmq_value(0)); local
303 result = "::android::hardware::MQDescriptorUnsync<" + element_type + ">";
315 string element_type = GetCppVariableType(cur_val); local
316 result = element_type;
    [all...]
  /external/clang/test/CodeGenCXX/
2010-07-23-DeclLoc.cpp 17 typedef _Tp element_type; typedef in class:std::auto_ptr
18 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
19 element_type& operator*() const throw() { }
  /external/libbrillo/brillo/glib/
object.h 31 typedef typename T::element_type element_type; typedef in class:brillo::details::ResetHelper
40 element_type*& lvalue() {
45 element_type* ptr_;
55 // \code T::element_type which can be assigned to. When the temporary object
343 typedef ::GPtrArray element_type; typedef in class:brillo::glib::ScopedPtrArray
457 typedef ::GHashTable element_type; typedef in class:brillo::glib::ScopedHashTable
  /external/libchrome/base/memory/
ref_counted.h 435 typedef T element_type; typedef in class:scoped_refptr
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
pooling_ops.cc 341 xla::PrimitiveType element_type; variable
342 OP_REQUIRES_OK(ctx, DataTypeToPrimitiveType(input_type(2), &element_type));
345 auto select = CreateScalarGeComputation(element_type, ctx->builder());
346 auto scatter = CreateScalarAddComputation(element_type, ctx->builder());
  /external/tensorflow/tensorflow/compiler/xla/python/
numpy_bridge.cc 114 int np_typenum = PrimitiveTypeToNumpyType(shape.element_type());
213 const PrimitiveType element_type = local
217 if (element_type == TUPLE) {
275 return ShapeUtil::MakeShapeWithLayout(element_type, dimensions,
278 return ShapeUtil::MakeShape(element_type, dimensions);
365 int np_type = PrimitiveTypeToNumpyType(literal.shape().element_type());
xla_client.py 209 def element_type(self): member in class:Shape
213 return self.element_type() == xla_data_pb2.TUPLE
277 element_type = DTYPE_TO_XLA_ELEMENT_TYPE[str(dtype)]
278 if element_type == xla_data_pb2.TUPLE:
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
pad_insertion.cc 67 PrimitiveType element_type = input->shape().element_type(); local
70 MakeUnique<Literal>(Literal::Zero(element_type))));
74 /*padding_value_shape=*/ShapeUtil::MakeShape(element_type, {}),
133 PrimitiveType element_type = kernel->shape().element_type(); local
136 MakeUnique<Literal>(Literal::Zero(element_type))));
140 /*padding_value_shape=*/ShapeUtil::MakeShape(element_type, {}),
253 MakeUnique<Literal>(Literal::Zero(input->shape().element_type()))));
while_transformer.cc 190 PrimitiveType element_type = instruction->shape().element_type(); local
191 if (element_type != S32 && element_type != S64) {
195 PrimitiveType type = literal.shape().element_type();
  /external/webrtc/webrtc/base/
scoped_ptr.h 318 typedef T element_type; typedef in class:rtc::scoped_ptr
325 explicit scoped_ptr(element_type* p) : impl_(p) {}
328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {}
385 void reset(element_type* p = nullptr) { impl_.reset(p); }
389 element_type& operator*() const {
393 element_type* operator->() const {
397 element_type* get() const { return impl_.get(); }
403 // Allow scoped_ptr<element_type> to be used in boolean expressions, but not
411 typedef rtc::internal::scoped_ptr_impl<element_type, deleter_type>
422 bool operator==(const element_type* p) const { return impl_.get() == p;
469 typedef T element_type; typedef in class:rtc::scoped_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pointer.h 61 * 3) An element_type typedef to define the type this points to.
70 typedef _Tp element_type; typedef in class:_Std_pointer_impl
79 set(element_type* __arg)
92 element_type* _M_value;
112 typedef _Tp element_type; typedef in class:_Relative_pointer_impl
164 typedef const _Tp element_type; typedef in class:_Relative_pointer_impl
284 typedef typename _Storage_policy::element_type element_type; typedef in class:_Pointer_adapter
288 typedef typename _Unqualified_type<element_type>::type value_type;
291 typedef typename _Reference_type<element_type>::reference reference
577 typedef typename pointer::element_type element_type; typedef in struct:pointer_traits
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
pointer.h 61 * 3) An element_type typedef to define the type this points to.
70 typedef _Tp element_type; typedef in class:_Std_pointer_impl
79 set(element_type* __arg)
92 element_type* _M_value;
112 typedef _Tp element_type; typedef in class:_Relative_pointer_impl
164 typedef const _Tp element_type; typedef in class:_Relative_pointer_impl
284 typedef typename _Storage_policy::element_type element_type; typedef in class:_Pointer_adapter
288 typedef typename _Unqualified_type<element_type>::type value_type;
291 typedef typename _Reference_type<element_type>::reference reference
577 typedef typename pointer::element_type element_type; typedef in struct:pointer_traits
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc/include/shaderc/
shaderc.hpp 40 typedef OutputElementType element_type; typedef in class:shaderc::CompilationResult
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
types.h 153 Vector(Type* element_type, uint32_t count);
158 const Type* element_type() const { return element_type_; } function in class:spvtools::opt::analysis::Vector
171 Matrix(Type* element_type, uint32_t count);
176 const Type* element_type() const { return element_type_; } function in class:spvtools::opt::analysis::Matrix
228 Array(Type* element_type, uint32_t length_id);
233 const Type* element_type() const { return element_type_; } function in class:spvtools::opt::analysis::Array
246 RuntimeArray(Type* element_type);
251 const Type* element_type() const { return element_type_; } function in class:spvtools::opt::analysis::RuntimeArray
fold_spec_constant_op_and_composite_pass.cpp 465 operand_type->AsVector()->element_type();
513 if (vt->element_type()->AsBool())
515 else if (auto* vit = vt->element_type()->AsInteger()) {
554 const analysis::Type* element_type = local
555 result_type->AsVector()->element_type();
561 if (auto rc = CreateConst(element_type, {r})) {
  /test/vts/compilation_tools/vtsc/code_gen/profiler/
HalHidlProfilerCodeGen.cpp 277 string element_type = GetCppVariableType(val.fmq_value(0)); local
280 out << "MessageQueue<" << element_type << ", kSynchronizedReadWrite> "
290 out << element_type << " " << temp_result_name << ";\n";
305 string element_type = GetCppVariableType(val.fmq_value(0)); local
308 out << "MessageQueue<" << element_type << ", kUnsynchronizedWrite> "
318 out << element_type << " " << temp_result_name << ";\n";
  /external/adhd/cras/src/tests/
dbus_test.cc 250 const char *array_type, *element_type; local
254 element_type = DBUS_TYPE_STRING_AS_STRING;
258 element_type = DBUS_TYPE_OBJECT_PATH_AS_STRING;
262 element_type = DBUS_TYPE_UNIX_FD_AS_STRING;
272 arg.array ? array_type : element_type,
279 DBUS_TYPE_ARRAY, element_type,
  /external/protobuf/ruby/ext/google/protobuf_c/
repeated_field.c 311 VALUE element_type = fieldtype_to_ruby(self->field_type); local
314 element_type, self->field_type_class);
317 element_type);
  /art/compiler/debug/
elf_debug_info_writer.h 325 mirror::Class* element_type = type->GetComponentType(); local
333 WriteLazyType(element_type->GetDescriptor(&descriptor_string));
557 size_t element_type = WriteTypeDeclaration(desc.substr(1)); local
561 info_.WriteRef(DW_AT_type, element_type);
  /external/mesa3d/src/compiler/
glsl_types.cpp 1582 const struct glsl_type *element_type; local
1825 const struct glsl_type *element_type; local
    [all...]

Completed in 2694 milliseconds

1 23 4 5