Home
last modified time | relevance | path

Searched refs:first (Results 1 – 18 of 18) sorted by relevance

/bionic/libstdc++/include/
Dstl_pair.h68 _T1 first; member
70 pair() : first(), second() {} in pair()
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {} in pair()
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} in pair()
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __x.first) && __x.second < __y.second);
/bionic/tools/relocation_packer/src/
Delf_file_unittest.cc83 void CheckFileContentsEqual(FILE* first, FILE* second) { in CheckFileContentsEqual() argument
84 ASSERT_EQ(0, fseek(first, 0, SEEK_SET)); in CheckFileContentsEqual()
92 size_t first_read = fread(first_buffer, 1, sizeof(first_buffer), first); in CheckFileContentsEqual()
97 } while (!feof(first) && !feof(second)); in CheckFileContentsEqual()
99 EXPECT_TRUE(feof(first) && feof(second)); in CheckFileContentsEqual()
/bionic/tests/libs/
Dbionic_tests_zipalign.cpp59 [](ZipData a, ZipData b) { return a.first->offset < b.first->offset; }); in GetEntries()
78 ZipEntry* zip_entry = entry.first; in CreateAlignedZip()
/bionic/linker/
DAndroid.mk107 include $(call first-makefiles-under,$(LOCAL_PATH))
Dlinker.cpp520 const std::string& token = subst.first; in set_dt_runpath()
/bionic/tests/
Difaddrs_test.cpp157 for (const auto& it : inet_addrs) CheckAddressIsInSet(it.first, true, it.second); in TEST()
158 for (const auto& it : broad_addrs) CheckAddressIsInSet(it.first, false, it.second); in TEST()
DAndroid.mk531 include $(call first-makefiles-under,$(LOCAL_PATH))
Dgtest_main.cpp422 printf("%s (stopped at %" PRId64 " ms)\n", timeout_pair.first.c_str(), in OnTestIterationEndPrint()
/bionic/libc/kernel/tools/
Dcpp.py1292 first = n
1294 first = 0
1319 first = i + 1
1379 if i > first:
1380 blocks2.append(Block(b.tokens[first:i]))
1382 first = n
1386 if i > first:
1388 blocks2.append(Block(b.tokens[first:i]))
/bionic/libc/upstream-netbsd/lib/libc/regex/
Dregcomp.c349 int first = 1; /* is this the first alternative? */ in p_ere() local
368 if (first) { in p_ere()
372 first = 0; in p_ere()
381 if (!first) { /* tail-end fixups */ in p_ere()
577 int first = 1; /* first subexpression? */ in p_bre() local
595 wasdollar = p_simp_re(p, first, reclimit); in p_bre()
596 first = 0; in p_bre()
Dengine.c1100 int first = 1; in print() local
1115 fprintf(d, "%s%d", (first) ? "\t" : ", ", i); in print()
1116 first = 0; in print()
/bionic/libc/dns/nameser/
Dns_name.c531 int n, l, first = 1; in ns_name_pack() local
587 (dstp - msg) < 0x4000 && first) { in ns_name_pack()
590 first = 0; in ns_name_pack()
/bionic/libc/upstream-netbsd/lib/libc/isc/
Deventlib_p.h162 evWait * first; member
/bionic/libc/dns/resolv/
Dres_cache.c659 int first = 1; in _dnsPacket_bprintQName() local
678 if (first) in _dnsPacket_bprintQName()
679 first = 0; in _dnsPacket_bprintQName()
1123 Entry* first = list->mru_next; in entry_mru_add() local
1125 e->mru_next = first; in entry_mru_add()
1129 first->mru_prev = e; in entry_mru_add()
/bionic/libc/malloc_debug/
DREADME.md41 On first allocation, this front guard is written with a specific pattern (0xaa).
69 On first allocation, this rear guard is written with a specific pattern (0xbb).
/bionic/libc/kernel/uapi/sound/
Dasound.h400 unsigned int first; member
/bionic/
DREADME.md233 For either host or target coverage, you must first:
/bionic/libc/kernel/uapi/linux/
Dkvm.h364 __u32 first, last; member