/external/clang/include/clang/AST/ |
UnresolvedSet.h | 113 unsigned size() const { return decls().size(); } function in class:clang::UnresolvedSetImpl
|
/external/clang/include/clang/Analysis/Analyses/ |
ThreadSafetyUtil.h | 84 // A simple fixed size array class that does not manage its own memory, 88 SimpleArray() : Data(nullptr), Size(0), Capacity(0) {} 90 : Data(Dat), Size(Sz), Capacity(Cp) {} 92 : Data(Cp == 0 ? nullptr : A.allocateT<T>(Cp)), Size(0), Capacity(Cp) {} 94 : Data(A.Data), Size(A.Size), Capacity(A.Capacity) { 96 A.Size = 0; 103 Size = RHS.Size; 107 RHS.Size = RHS.Capacity = 0 136 size_t size() const { return Size; } function in class:clang::threadSafety::til::SimpleArray [all...] |
/external/clang/lib/StaticAnalyzer/Core/ |
CheckerRegistry.cpp | 37 if (checker.FullName.size() == packageName.size()) 41 if (checker.FullName[packageName.size()] == PackageSeparator) 69 size_t size = 1; local 73 size = packageSize->getValue(); 76 for (e = i+size; i != e; ++i) { 128 (checker.FullName.size() == pos || checker.FullName[pos] == '.')) { 156 size_t nameLength = i->FullName.size(); 166 int pad = optionFieldWidth - i->FullName.size();
|
/external/clang/test/CodeGen/ |
blockstret.c | 19 void *malloc(__SIZE_TYPE__ size); 51 unsigned long int size; member in struct:block_descriptor_big 59 unsigned long int size; member in struct:block_descriptor_small
|
/external/clang/test/CodeGenCXX/ |
cxx0x-initializer-stdinitializerlist-startend.cpp | 29 size_t size() const {return __end_ - __begin_;} function in class:std::initializer_list
|
sanitize-dtor-nontrivial-virtual-base.cpp | 7 int size; member in class:Vector 9 size += 1;
|
/external/clang/test/CodeGenObjC/Inputs/ |
nsvalue-boxed-expressions-support.h | 26 NSSize size; member in struct:_NSRect 43 CGSize size; member in struct:CGRect
|
/external/clang/test/Index/ |
annotate-tokens-cxx0x.cpp | 53 size_t size() const {return __size_;} function in class:std::initializer_list
|
/external/clang/test/Modules/Inputs/ |
templates-top.h | 9 unsigned size; member in class:List
|
/external/compiler-rt/lib/asan/ |
asan_malloc_win.cc | 57 void *malloc(size_t size) { 59 return asan_malloc(size, &stack); 63 void *_malloc_dbg(size_t size, int, const char *, int) { 64 return malloc(size); 68 void *calloc(size_t nmemb, size_t size) { 70 return asan_calloc(nmemb, size, &stack); 74 void *_calloc_dbg(size_t nmemb, size_t size, int, const char *, int) { 75 return calloc(nmemb, size); 79 void *_calloc_impl(size_t nmemb, size_t size, int *errno_tmp) { 80 return calloc(nmemb, size); 99 const size_t size = n * elem_size; local [all...] |
/external/compiler-rt/lib/asan/tests/ |
asan_mem_test.cc | 18 size_t size = Ident(sizeof(T) * length); 19 T *array = Ident((T*)malloc(size)); 24 MEMSET(array, element, size); 25 MEMSET(array, element, size - 1); 37 EXPECT_DEATH(MEMSET(array, 0, size + 1), 41 EXPECT_DEATH(MEMSET(array + 1, element, size + sizeof(T)), 48 EXPECT_DEATH(MEMSET((char*)array - 1, element, size), 54 EXPECT_DEATH(memset(array - 5, element, size + 5 * sizeof(T)), 62 EXPECT_DEATH(MEMSET((char*)array - 2, element, size + 4), 75 // Try to allocate two arrays of 'size' bytes that are near each other 210 size_t size = Ident(100); local [all...] |
/external/compiler-rt/lib/msan/ |
msan_linux.cc | 38 void ReportMapRange(const char *descr, uptr beg, uptr size) { 39 if (size > 0) { 40 uptr end = beg + size - 1; 45 static bool CheckMemoryRangeAvailability(uptr beg, uptr size) { 46 if (size > 0) { 47 uptr end = beg + size - 1; 56 static bool ProtectMemoryRange(uptr beg, uptr size, const char *name) { 57 if (size > 0) { 58 void *addr = MmapNoAccess(beg, size, name); 64 size -= gap 127 uptr size= end - start; local [all...] |
/external/compiler-rt/lib/safestack/ |
safestack.cc | 68 /// Default size of the unsafe stack. This value is only used if the stack 69 /// size rlimit is set to infinity. 72 /// Runtime page size obtained through sysconf 95 static inline void *unsafe_stack_alloc(size_t size, size_t guard) { 96 CHECK_GE(size + guard, size); 97 void *addr = MmapOrDie(size + guard, "unsafe_stack_alloc"); 102 static inline void unsafe_stack_setup(void *start, size_t size, size_t guard) { 103 CHECK_GE((char *)start + size, (char *)start); 105 void *stack_ptr = (char *)start + size; 175 size_t size = 0; local 213 size_t size = kDefaultUnsafeStackSize; local [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_bvgraph.h | 23 // Directed graph of fixed size implemented as an array of bit vectors. 29 uptr size() const { return kSize; } function in class:__sanitizer::BVGraph 32 for (uptr i = 0; i < size(); i++) 37 for (uptr i = 0; i < size(); i++) 79 for (uptr from = 0; from < size(); from++) { 127 // returns the path length, or 0 if there is no path of size 'path_size'. 155 CHECK_LT(idx1, size()); 156 CHECK_LT(idx2, size());
|
sanitizer_list.h | 22 // Intrusive singly-linked list with size(), push_back(), push_front() 38 uptr size() const { return size_; } function in struct:__sanitizer::IntrusiveList 85 size_ += l->size(); 99 size_ += l->size(); 114 CHECK_EQ(size(), count);
|
sanitizer_stacktrace.h | 41 u32 size; member in struct:__sanitizer::StackTrace 49 StackTrace() : trace(nullptr), size(0), tag(0) {} 50 StackTrace(const uptr *trace, u32 size) : trace(trace), size(size), tag(0) {} 51 StackTrace(const uptr *trace, u32 size, u32 tag) 52 : trace(trace), size(size), tag(tag) {}
|
sanitizer_tls_get_addr.cc | 32 uptr size; member in struct:__sanitizer::Glibc_2_19_tls_header 46 static inline void DTLS_Deallocate(DTLS::DTV *dtv, uptr size) { 47 if (!size) return; 48 VPrintf(2, "__tls_get_addr: DTLS_Deallocate %p %zd\n", dtv, size); 49 UnmapOrDie(dtv, size * sizeof(DTLS::DTV)); 116 tls_size = header->size; 126 dtls.dtv[dso_id].size = tls_size; 130 void DTLS_on_libc_memalign(void *ptr, uptr size) { 132 VPrintf(2, "DTLS_on_libc_memalign: %p %p\n", ptr, size); 134 dtls.last_memalign_size = size; [all...] |
/external/compiler-rt/test/BlocksRuntime/ |
byrefsanity.c | 43 int size; member in struct:byref_id
|
/external/conscrypt/src/main/java/org/conscrypt/ |
ClientSessionContext.java | 41 public int size() { method in class:ClientSessionContext 42 return sessionsByHostAndPort.size();
|
/external/deqp/framework/opengl/ |
gluVarType.cpp | 53 m_data.array.size = arraySize; 83 m_data.array.size = other.m_data.array.size; 96 case TYPE_ARRAY: return m_data.array.elementType->getScalarSize()*m_data.array.size; 100 int size = 0; local 102 size += iter->getType().getScalarSize(); 103 return size; 125 m_data.array.size == other.m_data.array.size; 318 for (int layoutNdx = 1; layoutNdx < (int)layoutDeclarationList.size(); ++layoutNdx [all...] |
/external/deqp/framework/platform/win32/ |
tcuWGLContextFactory.cpp | 117 const IVec2 size = m_window.getSize(); local 119 m_renderTarget = tcu::RenderTarget(size.x(), size.y(),
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
AnnotationSetItem.java | 31 /** the size of an entry int the set: one {@code uint} */ 53 this.items = new AnnotationItem[annotations.size()]; 63 * Gets the write size for the given set. 66 * @return {@code > 0;} the write size 69 // This includes an int size at the start of the list. 72 return (annotations.size() * ENTRY_WRITE_SIZE) + 4; 117 int size = items.length; local 119 for (int i = 0; i < size; i++) { 135 int size = items.length; local 139 out.annotate(4, " size: " + Hex.u4(size)) [all...] |
ProtoIdItem.java | 57 this.parameterTypes = (parameters.size() == 0) ? null 69 int size = parameters.size(); local 70 StringBuilder sb = new StringBuilder(size + 1); 74 for (int i = 0; i < size; i++) { 137 int size = params.size(); local 139 for (int i = 0; i < size; i++) {
|
StringDataItem.java | 44 * Gets the write size for a given value. 47 * @return {@code >= 2}; the write size, in bytes 78 out.annotate(bytes.size() + 1, value.toQuoted());
|
UniformListItem.java | 27 * item in the list, in particular, must have the same write size and 33 * output list size (which is four bytes) and before the first item.</p> 39 /** the size of the list header */ 80 throw new IllegalArgumentException("items.size() == 0"); 88 * Calculates the write size for the given list. 91 * @return {@code >= 0;} the write size 95 * This class assumes all included items are the same size, 99 return (items.size() * first.writeSize()) + getAlignment(items); 167 int size = i.writeSize(); local 169 theSize = size; 190 int size = items.size(); local [all...] |