/external/elfutils/lib/ |
D | fixedsizehash.h | 94 CONCAT(PREFIX,fshash_init) (size_t nelems) in CONCAT() 101 if (nelems >= (max_size_t / 3) * 2) in CONCAT() 108 nelems = next_prime (MAX ((nelems * 3) / 2, 10)); in CONCAT() 113 + (nelems + 1) * sizeof (struct CONCAT(PREFIX,fshashent)), 1); in CONCAT() 117 result->nslots = nelems; in CONCAT()
|
/external/libcxxabi/src/ |
D | fallback_malloc.ipp | 88 const size_t nelems = alloc_size ( len ); 98 if (p->len > nelems) { // chunk is larger, shorten, and return the tail 101 p->len = static_cast<heap_size>(p->len - nelems); 104 q->len = static_cast<heap_size>(nelems); 108 if (p->len == nelems) { // exact size match
|
/external/selinux/libsepol/cil/src/ |
D | cil_symtab.c | 160 symtab->nelems = 0; in cil_complex_symtab_init() 218 symtab->nelems++; in cil_complex_symtab_insert() 283 symtab->nelems = 0; in cil_complex_symtab_destroy()
|
D | cil_symtab.h | 68 uint32_t nelems; member
|
/external/mdnsresponder/mDNSShared/ |
D | dnsextd.h | 142 mDNSs32 nelems; // elements in table member
|
D | dnsextd.c | 845 Log("Dumping Lease Table Contents (table contains %d resource records)", d->nelems); in PrintLeaseTable() 1145 d->nelems = 0; in InitLeaseTable() 1360 d->nelems--; in DeleteRecords() 1424 d->nelems--; in UpdateLeaseTable() 1443 if (d->nelems > d->nbuckets) in UpdateLeaseTable() 1463 d->nelems++; in UpdateLeaseTable()
|
/external/blktrace/ |
D | blktrace.h | 43 unsigned int nelems; member
|
D | blkparse.c | 1787 if (!pci->nelems) in show_device_and_cpu_stats() 2081 pci->nelems++; in show_entries_rb() 2464 pci->nelems++; in handle()
|
/external/opencv3/modules/ts/src/ |
D | ts_func.cpp | 29 string vec2str( const string& sep, const int* v, size_t nelems ) in vec2str() argument 33 for( size_t i = 0; i < nelems; i++ ) in vec2str() 37 if( i < nelems - 1 ) in vec2str() 2840 writeElems(std::ostream& out, const void* data, int nelems, int starpos) in writeElems() argument 2842 for(int i = 0; i < nelems; i++) in writeElems() 2849 out << (i+1 < nelems ? ", " : ""); in writeElems() 2854 static void writeElems(std::ostream& out, const void* data, int nelems, int depth, int starpos) in writeElems() argument 2857 writeElems<uchar, int>(out, data, nelems, starpos); in writeElems() 2859 writeElems<schar, int>(out, data, nelems, starpos); in writeElems() 2861 writeElems<ushort, int>(out, data, nelems, starpos); in writeElems() [all …]
|
/external/opencv3/modules/core/src/ |
D | matrix.cpp | 703 void Mat::pop_back(size_t nelems) in pop_back() argument 705 CV_Assert( nelems <= (size_t)size.p[0] ); in pop_back() 708 *this = rowRange(0, size.p[0] - (int)nelems); in pop_back() 711 size.p[0] -= (int)nelems; in pop_back() 712 dataend -= nelems*step.p[0]; in pop_back() 738 void Mat::reserve(size_t nelems) in reserve() argument 742 CV_Assert( (int)nelems >= 0 ); in reserve() 743 if( !isSubmatrix() && data + step.p[0]*nelems <= datalimit ) in reserve() 748 if( (size_t)r >= nelems ) in reserve() 751 size.p[0] = std::max((int)nelems, 1); in reserve() [all …]
|
D | persistence.cpp | 3563 int nelems = icvFileNodeSeqLen( data ); in icvReadMat() local 3564 if( nelems > 0 && nelems != rows*cols*CV_MAT_CN(elem_type) ) in icvReadMat() 3568 if( nelems > 0 ) in icvReadMat() 3660 int nelems = icvFileNodeSeqLen( data ); in icvReadMatND() local 3662 if( nelems > 0 && nelems != total_size ) in icvReadMatND() 3666 if( nelems > 0 ) in icvReadMatND()
|
/external/opencv3/modules/ts/include/opencv2/ |
D | ts.hpp | 75 CV_EXPORTS string vec2str(const string& sep, const int* v, size_t nelems);
|
/external/opencv3/modules/calib3d/src/ |
D | calibinit.cpp | 1938 int nelems = corners.checkVector(2, CV_32F, true); in drawChessboardCorners() local 1939 CV_Assert(nelems >= 0); in drawChessboardCorners() 1941 nelems, patternWasFound ); in drawChessboardCorners()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | mat.hpp | 1404 void pop_back(size_t nelems=1);
|