Home
last modified time | relevance | path

Searched refs:curr (Results 1 – 5 of 5) sorted by relevance

/system/core/toolbox/upstream-netbsd/bin/cp/
Dcp.c328 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/
DVectorImpl.cpp183 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/
DCodeCache.cpp205 void* curr = (uint8_t*)base + assembly->size(); in cache() local
206 __builtin___clear_cache(base, curr); in cache()
/system/extras/tests/sdcard/
Dsdcard_perf_test.cpp647 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/
Darm64_assembler_test.cpp411 const long curr = base + long(instrMemSize); in flushcache() local
412 __builtin___clear_cache((void*)base, (void*)curr); in flushcache()