Searched refs:curr (Results 1 – 5 of 5) sorted by relevance
/system/core/toolbox/upstream-netbsd/bin/cp/ |
D | cp.c | 328 FTSENT *curr; in copy() local 339 for (any_failed = 0; (curr = fts_read(ftsp)) != NULL;) { in copy() 341 switch (curr->fts_info) { in copy() 345 warnx("%s: %s", curr->fts_path, in copy() 346 strerror(curr->fts_errno)); in copy() 350 warnx("%s: directory causes a cycle", curr->fts_path); in copy() 360 if ((curr->fts_namelen + in copy() 363 to.p_path, curr->fts_name); in copy() 387 if (curr->fts_level == FTS_ROOTLEVEL) { in copy() 389 p = strrchr(curr->fts_path, '/'); in copy() [all …]
|
/system/core/libutils/ |
D | VectorImpl.cpp | 183 void* curr = reinterpret_cast<char*>(array) + mItemSize*(i-1); in sort() local 184 if (cmp(curr, item, state) > 0) { in sort() 193 curr = reinterpret_cast<char*>(array) + mItemSize*(i-1); in sort() 204 _do_copy(next, curr, 1); in sort() 205 next = curr; in sort() 207 curr = reinterpret_cast<char*>(array) + mItemSize*(j); in sort() 208 } while (j>=0 && (cmp(curr, temp, state) > 0)); in sort() 599 const void* const curr = reinterpret_cast<const char *>(a) + (mid*s); in _indexOrderOf() local 600 const int c = do_compare(curr, item); in _indexOrderOf()
|
/system/core/libpixelflinger/codeflinger/ |
D | CodeCache.cpp | 205 void* curr = (uint8_t*)base + assembly->size(); in cache() local 206 __builtin___clear_cache(base, curr); in cache()
|
/system/extras/tests/sdcard/ |
D | sdcard_perf_test.cpp | 647 FTSENT *curr; in testTraverse() local 648 while ((curr = fts_read(ftsp)) != NULL) { in testTraverse() 649 switch (curr->fts_info) { in testTraverse()
|
/system/core/libpixelflinger/tests/arch-arm64/assembler/ |
D | arm64_assembler_test.cpp | 411 const long curr = base + long(instrMemSize); in flushcache() local 412 __builtin___clear_cache((void*)base, (void*)curr); in flushcache()
|