Searched defs:first (Results 1 - 9 of 9) sorted by relevance

/bionic/libstdc++/include/
H A Dstl_pair.h68 _T1 first; member in struct:pair
70 pair() : first(), second() {}
71 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
74 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
80 return __x.first == __y.first && __x.second == __y.second;
86 return __x.first < __y.first ||
87 (!(__y.first < __
[all...]
/bionic/tools/relocation_packer/src/
H A Delf_file_unittest.cc83 void CheckFileContentsEqual(FILE* first, FILE* second) { argument
84 ASSERT_EQ(0, fseek(first, 0, SEEK_SET));
92 size_t first_read = fread(first_buffer, 1, sizeof(first_buffer), first);
97 } while (!feof(first) && !feof(second));
99 EXPECT_TRUE(feof(first) && feof(second));
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dengine.c506 for (;;) { /* find first matching branch */
716 for (;;) { /* find first matching branch */
1049 case OCH_: /* mark the first two branches */
1100 int first = 1; local
1115 fprintf(d, "%s%d", (first) ? "\t" : ", ", i);
1116 first = 0;
H A Dregcomp.c349 int first = 1; /* is this the first alternative? */ local
368 if (first) {
372 first = 0;
381 if (!first) { /* tail-end fixups */
563 * This implementation is a bit of a kludge, in that a trailing $ is first
572 int end1, /* first terminating character */
577 int first = 1; /* first subexpression? */ local
595 wasdollar = p_simp_re(p, first, reclimi
[all...]
/bionic/libc/dns/nameser/
H A Dns_name.c531 int n, l, first = 1; local
587 (dstp - msg) < 0x4000 && first) {
590 first = 0;
832 /* Recurse to get rest of name done first. */
929 * dnptrs is the pointer to the first name on the list,
/bionic/libc/upstream-netbsd/lib/libc/isc/
H A Deventlib_p.h162 evWait * first; member in struct:evWaitList
/bionic/libc/dns/resolv/
H A Dres_cache.c83 * this will initialize the cache on first usage. the result can be NULL
102 /* the name of an environment variable that will be checked the first time
183 * - end : the address of the buffer's limit, i.e. of the first byte
659 int first = 1; local
678 if (first)
679 first = 0;
1123 Entry* first = list->mru_next; local
1125 e->mru_next = first;
1129 first->mru_prev = e;
/bionic/libc/kernel/uapi/sound/
H A Dasound.h400 unsigned int first; member in struct:snd_pcm_channel_info
/bionic/libc/kernel/uapi/linux/
H A Dkvm.h364 __u32 first, last; member in struct:kvm_coalesced_mmio_ring

Completed in 226 milliseconds