HomeSort by relevance Sort by last modified time
    Searched defs:size_type (Results 251 - 275 of 488) sorted by null

<<11121314151617181920

  /external/llvm/include/llvm/ADT/
DenseSet.h 49 typedef unsigned size_type; typedef in class:llvm::DenseSet
54 size_type size() const { return TheMap.size(); }
66 size_type count(const ValueT &V) const {
EquivalenceClasses.h 247 typedef size_t size_type; typedef in class:llvm::EquivalenceClasses::member_iterator
ScopedHashTable.h 150 typedef unsigned size_type; typedef in class:llvm::ScopedHashTable
175 size_type count(const K &Key) const {
SparseMultiSet.h 188 typedef unsigned size_type; typedef in class:llvm::SparseMultiSet
331 size_type size() const {
382 size_type count(const KeyT &Key) const {
  /external/mesa3d/src/gallium/state_trackers/clover/util/
range.hpp 83 typedef std::size_t size_type; typedef in class:clover::detail::basic_range
141 at(size_type i) {
149 at(size_type i) const {
157 operator[](size_type i) {
162 operator[](size_type i) const {
209 typename super::size_type
276 typename super::size_type
303 slice_range(R &&r, typename super::size_type i,
304 typename super::size_type j) :
333 typename super::size_type
    [all...]
  /external/protobuf/src/google/protobuf/stubs/
stringpiece.h 157 // StringPiece::size_type
352 typedef size_t size_type; typedef in class:google::protobuf::StringPiece
354 static const size_type npos;
371 stringpiece_ssize_type copy(char* buf, size_type n, size_type pos = 0) const; // NOLINT
375 stringpiece_ssize_type find(StringPiece s, size_type pos = 0) const;
376 stringpiece_ssize_type find(char c, size_type pos = 0) const;
377 stringpiece_ssize_type rfind(StringPiece s, size_type pos = npos) const;
378 stringpiece_ssize_type rfind(char c, size_type pos = npos) const;
380 stringpiece_ssize_type find_first_of(StringPiece s, size_type pos = 0) const
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
PoolAlloc.h 249 typedef size_t size_type; typedef in class:pool_allocator
281 void* allocate(size_type n) {
284 void* allocate(size_type n, const void*) {
287 void deallocate(void*, size_type) {}
289 pointer allocate(size_type n) {
292 pointer allocate(size_type n, const void*) {
295 void deallocate(pointer, size_type) {}
304 size_type max_size() const { return static_cast<size_type>(-1) / sizeof(T); }
305 size_type max_size(int size) const { return static_cast<size_type>(-1) / size;
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
EquivalenceClasses.h 244 typedef size_t size_type; typedef in class:llvm::EquivalenceClasses::member_iterator
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
ArrayRef.h 37 typedef size_t size_type; typedef in class:llvm::ArrayRef
46 size_type Length;
BitVector.h 41 typedef unsigned size_type; typedef in class:llvm::BitVector
119 size_type size() const { return Size; }
122 size_type count() const {
SmallPtrSet.h 94 typedef unsigned size_type; typedef in class:llvm::SmallPtrSetImplBase
99 size_type size() const { return NumNonEmpty - NumTombstones; }
370 size_type count(PtrType Ptr) const {
simple_ilist.h 95 typedef size_t size_type; typedef in class:llvm::simple_ilist
130 LLVM_NODISCARD size_type size() const {
  /external/tensorflow/tensorflow/core/lib/gtl/
array_slice_internal.h 160 typedef size_t size_type; typedef in class:tensorflow::gtl::array_slice_internal::ArraySliceImplBase
163 static const size_type npos = static_cast<size_type>(-1);
165 ArraySliceImplBase(pointer array, size_type length)
171 ArraySliceImplBase(const ArraySliceImplBase& x, size_type pos, size_type len)
179 size_type size() const { return length_; }
186 reference operator[](size_type i) const { return ptr_[i]; }
187 reference at(size_type i) const {
200 void remove_prefix(size_type n)
    [all...]
  /external/webrtc/webrtc/system_wrappers/include/
scoped_vector.h 30 typedef typename std::vector<T*>::size_type size_type; typedef in class:webrtc::ScopedVector
  /frameworks/compile/mclinker/include/mcld/
InputTree.h 68 typedef size_t size_type; typedef in class:mcld::BinaryTree
  /frameworks/compile/mclinker/include/mcld/Support/
Allocators.h 97 typedef size_t size_type; typedef in class:mcld::LinearAllocatorBase
139 pointer allocate(size_type N) {
146 size_type rest_num_elem = chunk_type::size() - m_pCurrent->bound;
171 void deallocate(pointer& pPtr, size_type N) {
229 size_type max_size() const { return m_AllocatedNum; }
249 size_type m_AllocatedNum;
307 typedef size_t size_type; typedef in class:mcld::MallocAllocator
331 pointer allocate(size_type pNumOfElements, const void* = 0) {
336 void deallocate(pointer pObject, size_type) {
340 size_type max_size() const throw() { return size_t(-1) / sizeof(DataType);
352 typedef size_t size_type; typedef in class:mcld::MallocAllocator
    [all...]
GCFactory.h 71 typedef size_t size_type; typedef in class:mcld::DataIterator
113 typedef typename Alloc::size_type size_type; typedef in class:mcld::GCFactoryBase
136 void deallocate(pointer& pPtr, size_type N) {
  /frameworks/native/services/sensorservice/
vec.h 310 typedef size_t size_type; typedef in class:android::vec
318 size_type size() const { return SIZE; }
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
ASTVector.h 77 typedef size_t size_type; typedef in class:clang::ASTVector
104 size_type size() const { return End-Begin; }
181 size_type NumInputs = std::distance(in_start, in_end);
187 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
199 void append(const ASTContext &C, size_type NumInputs, const T &Elt) {
201 if (NumInputs > size_type(this->capacity_ptr()-this->end()))
237 iterator insert(const ASTContext &C, iterator I, size_type NumToInsert,
353 void grow(const ASTContext &C, size_type MinSize = 1);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/Analysis/Support/
BumpVector.h 74 typedef size_t size_type; typedef in class:clang::BumpVector
101 size_type size() const { return End-Begin; }
195 void grow(BumpVectorContext &C, size_type MinSize = 1);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
AllocatorList.h 73 typedef typename list_type::size_type size_type; typedef in class:llvm::AllocatorList
ArrayRef.h 37 typedef size_t size_type; typedef in class:llvm::ArrayRef
46 size_type Length;
BitVector.h 41 typedef unsigned size_type; typedef in class:llvm::BitVector
119 size_type size() const { return Size; }
122 size_type count() const {
DenseSet.h 57 typedef unsigned size_type; typedef in class:llvm::detail::DenseSetImpl
67 size_type size() const { return TheMap.size(); }
83 size_type count(const_arg_type_t<ValueT> V) const {
EquivalenceClasses.h 250 typedef size_t size_type; typedef in class:llvm::EquivalenceClasses::member_iterator

Completed in 351 milliseconds

<<11121314151617181920