Searched defs:nc (Results 1 - 3 of 3) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/
H A Dmake_shared.pass.cpp55 int nc = new_count; local
60 assert(new_count == nc+1);
66 nc = new_count;
70 assert(new_count == nc+1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
H A Ddebug.cpp152 size_t nc = __next_prime(2*static_cast<size_t>(__cend_ - __cbeg_) + 1); local
153 __c_node** cbeg = static_cast<__c_node**>(calloc(nc, sizeof(void*)));
165 size_t h = hash<void*>()(q->__c_) % nc;
174 __cend_ = __cbeg_ + nc;
472 size_t nc = 2*static_cast<size_t>(cap_ - beg_); local
473 if (nc == 0)
474 nc = 1;
476 static_cast<__i_node**>(malloc(nc * sizeof(__i_node*)));
483 if (nc > 1)
484 memcpy(beg, beg_, nc/
501 size_t nc = __next_prime(2*static_cast<size_t>(__iend_ - __ibeg_) + 1); local
[all...]
/ndk/sources/host-tools/ndk-stack/regex/
H A Dregcomp.c1025 size_t nc; local
1035 nc = p->ncsalloc;
1036 assert(nc % CHAR_BIT == 0);
1037 nbytes = nc / CHAR_BIT * css;
1039 ptr = (cset *)realloc((char *)p->g->sets, nc * sizeof(cset));

Completed in 861 milliseconds