Searched defs:start (Results 1 - 25 of 102) sorted by relevance

12345

/bionic/libc/arch-mips/bionic/
H A Dcacheflush.cpp42 // int cacheflush (long start, long end, long flags)
48 int cacheflush(long start, long end, long /*flags*/) { argument
49 if (end < start) {
54 "cacheflush called with (start,len) instead of (start,end)");
57 end += start;
61 // or call _flush_cache(start, len, BCACHE) directly.
62 __builtin___clear_cache(reinterpret_cast<char*>(start), reinterpret_cast<char*>(end));
/bionic/libc/malloc_debug/
H A DMapData.h40 MapEntry(uintptr_t start, uintptr_t end, uintptr_t offset, const char* name, size_t name_len) argument
41 : start(start), end(end), offset(offset), name(name, name_len) {}
43 explicit MapEntry(uintptr_t pc) : start(pc), end(pc) {}
45 uintptr_t start; member in struct:MapEntry
55 bool operator()(const MapEntry* a, const MapEntry* b) const { return a->end <= b->start; }
H A DMapData.cpp44 uintptr_t start; local
49 if (sscanf(line, "%" PRIxPTR "-%" PRIxPTR " %4s %" PRIxPTR " %*x:%*x %*d %n", &start, &end,
60 MapEntry* entry = new MapEntry(start, end, offset, name, name_len);
71 if (addr < entry->start || addr + sizeof(T) > entry->end) {
85 uintptr_t addr = entry->start;
165 *rel_pc = pc - entry->start + entry->load_base;
H A DConfig.cpp440 const char* start = cur; local
443 *option = std::string(start, cur - start);
454 start = cur;
457 if (cur != start) {
458 *value = std::string(start, cur - start);
/bionic/libc/upstream-netbsd/lib/libc/inet/
H A Dnsap_addr.c101 char *start; local
106 start = ascii;
109 start = tmpbuf;
127 return (start);
/bionic/tests/
H A Dsys_prctl_test.cpp52 uintptr_t start; local
54 ASSERT_EQ(2, sscanf(lines[i].c_str(), "%" SCNxPTR "-%" SCNxPTR " ", &start, &end))
57 ASSERT_GE(start, last_end)
H A Dtime_test.cpp207 // Netflix on Nexus Player wouldn't start (http://b/25170306).
408 time_t start = time(NULL); local
409 while (current_value == value && (time(NULL) - start) < 5) {
/bionic/libc/kernel/uapi/linux/
H A Dblkpg.h36 long long start; member in struct:blkpg_partition
H A Ddlm_plock.h43 __u64 start; member in struct:dlm_plock_info
H A Dblkzoned.h39 __u64 start; member in struct:blk_zone
H A Dfib_rules.h42 __u32 start; member in struct:fib_rule_uid_range
H A Dptp_clock.h47 struct ptp_clock_time start; member in struct:ptp_perout_request
/bionic/libc/versioner-dependencies/common/kernel_uapi/linux/
H A Dblkpg.h36 long long start; member in struct:blkpg_partition
H A Ddlm_plock.h43 __u64 start; member in struct:dlm_plock_info
H A Dblkzoned.h39 __u64 start; member in struct:blk_zone
H A Dfib_rules.h42 __u32 start; member in struct:fib_rule_uid_range
H A Dptp_clock.h47 struct ptp_clock_time start; member in struct:ptp_perout_request
/bionic/tools/versioner/dependencies/common/kernel_uapi/linux/
H A Dblkpg.h36 long long start; member in struct:blkpg_partition
H A Ddlm_plock.h43 __u64 start; member in struct:dlm_plock_info
H A Dblkzoned.h39 __u64 start; member in struct:blk_zone
/bionic/libc/tzcode/
H A Dbionic.cpp103 int32_t start; member in struct:index_entry_t
173 specific_zone_offset = ntohl(entry->start) + ntohl(header.data_offset);
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dmktemp.c47 char *start, *cp, *ep; local
61 for (start = ep; start > path && start[-1] == 'X'; start--)
63 if (ep - start < MIN_X) {
76 cp = start;
/bionic/tools/versioner/src/
H A DDriver.cpp218 auto start = std::chrono::high_resolution_clock::now(); local
237 auto diff = (end - start) / 1.0ms;
/bionic/benchmarks/
H A Dstdio_benchmark.cpp229 uintptr_t start; local
236 &start, &end, permissions, &offset, &name_pos) != 4) abort();
242 static int ParseMap(const char* line, const char* /*fmt*/, uintptr_t* start, uintptr_t* end, argument
248 *start = strtoul(old_str, &str, 16);
297 uintptr_t start; local
304 &start, &end, permissions, &offset, &name_pos) != 4) abort();
/bionic/libc/bionic/
H A Dgrp_pwd_file.cpp210 bool MmapFile::GetFile(const char** start, const char** end) { argument
213 *start = start_;
227 *start = start_;
263 const char* start; local
265 if (!GetFile(&start, &end)) {
269 const char* line_beginning = start;

Completed in 1863 milliseconds

12345