Searched defs:count (Results 51 - 75 of 81) sorted by relevance

1234

/bionic/tests/
H A Dsystem_properties_test.cpp70 size_t *count = static_cast<size_t *>(cookie); local
73 (*count)++;
183 int count = 0; local
187 ret = snprintf(prop_name, PROP_NAME_MAX - 1, "property_%d", count);
189 ret = snprintf(prop_value, PROP_VALUE_MAX - 1, "value_%d", count);
198 count++;
202 ASSERT_GE(count, 247);
204 for (int i = 0; i < count; i++) {
225 size_t count = 0; local
231 ASSERT_EQ(0, __system_property_foreach(foreach_test_callback, &count));
[all...]
H A Dgtest_main.cpp104 " If JOB_COUNT is not given, it is set to the count of available processors.\n"
241 return static_cast<int64_t>(duration.count());
1032 int count = 0; local
1035 count = atoi(p);
1038 count = atoi(args[i + 1]);
1041 if (count <= 0) {
1042 fprintf(stderr, "invalid job count: %d\n", count);
1045 options.job_count = static_cast<size_t>(count);
H A Dpthread_test.cpp437 static int count = 0; local
439 if (++count == 1) {
1464 pthread_cleanup_pop(1); // Pop one count while executing it.
1466 // Exit while the other count is still on the cleanup stack.
1793 int count = 0; local
1794 _Unwind_Backtrace(FrameCounter, &count);
1795 ASSERT_GT(count, 0);
/bionic/libc/bionic/
H A Dlibc_logging.cpp223 static void SendRepeat(Out& o, char ch, int count) { argument
228 while (count > 0) {
229 int avail = count;
234 count -= avail;
H A Dndk_cruft.cpp111 int count = 0; local
115 if (++count < 7) {
121 for (; count < 6; count++) {
219 int __futex_wake(volatile void* ftx, int count) { argument
220 return __real_futex_wake(ftx, count);
261 int getdents(unsigned int fd, dirent* dirp, unsigned int count) { argument
262 return __getdents64(fd, dirp, count);
H A Dsystem_properties.cpp191 uint32_t count; member in struct:find_nth_cookie
195 find_nth_cookie(uint32_t n) : count(0), n(n), pi(NULL) {
592 if (cookie->n == cookie->count)
595 cookie->count++;
/bionic/libc/dns/nameser/
H A Dns_name.c1053 int value = 0, count = 0, tbcount = 0, blen = 0; local
1077 if (count)
1101 count += 4;
1105 if (count == 8) {
1107 count = 0;
/bionic/libc/kernel/uapi/drm/
H A Dsavage_drm.h97 unsigned int count; member in struct:drm_savage_event
147 unsigned short count; member in struct:drm_savage_cmd_header::__anon172
157 unsigned short count; member in struct:drm_savage_cmd_header::__anon173
166 unsigned short count; member in struct:drm_savage_cmd_header::__anon174
H A Dexynos_drm.h135 __u32 count; member in struct:drm_exynos_ipp_prop_list
H A Dr128_drm.h217 int count; member in struct:drm_r128_vertex
H A Damdgpu_drm.h396 uint32_t count; member in struct:drm_amdgpu_info::__anon122::__anon125
H A Ddrm.h104 int count; member in struct:drm_list
192 unsigned long count; member in struct:drm_stats
226 int count; member in struct:drm_buf_desc
244 int count; member in struct:drm_buf_info
249 int count; member in struct:drm_buf_free
261 int count; member in struct:drm_buf_map
292 int count; member in struct:drm_ctx_res
/bionic/libc/kernel/uapi/linux/
H A Ddm-ioctl.h56 __u32 count; member in struct:dm_target_deps
H A Dvfio.h91 __u32 count; member in struct:vfio_irq_info
109 __u32 count; member in struct:vfio_irq_set
154 __u32 count; member in struct:vfio_pci_hot_reset_info
162 __u32 count; member in struct:vfio_pci_hot_reset
H A Dcoda.h466 int count; member in struct:coda_readlink_out
H A Dfb.h334 __u32 count; member in struct:fb_vblank
H A Dfuse.h222 uint32_t count; member in struct:fuse_batch_forget_in
/bionic/tools/relocation_packer/src/
H A Delf_file.cc322 size_t count,
335 for (size_t i = 0; i < count; ++i) {
349 size_t count,
359 count,
370 size_t count,
374 for (size_t i = 0; i < count; ++i) {
399 count,
418 size_t count,
420 for (size_t i = 0; i < count; ++i) {
566 // technically (2) the relative relocation count i
321 RestoreLoadSegmentAlignment(typename ELF::Phdr* program_headers, size_t count, typename ELF::Phdr* program_header) argument
348 AdjustLoadSegmentAlignment(typename ELF::Phdr* program_headers, size_t count, typename ELF::Phdr* program_header, ssize_t hole_size) argument
369 AdjustProgramHeaderFields(typename ELF::Phdr* program_headers, size_t count, typename ELF::Off hole_start, ssize_t hole_size) argument
417 FindLoadSegmentForHole(typename ELF::Phdr* program_headers, size_t count, typename ELF::Off hole_start) argument
[all...]
/bionic/libc/dns/resolv/
H A Dres_debug.c1132 size_t len, i, count; local
1135 for (i = 0, count = 0; i < len; i++) {
1138 count++;
1141 /* don't count initial wildcard */
1143 if (count)
1144 count--;
1146 /* don't count the null label for root. */
1148 /* count to include last label */
1150 count++;
1151 _DIAGASSERT(__type_fit(int, count));
[all...]
H A Dres_cache.c385 * QDCount: 16 : question count
386 * ANCount: 16 : Answer count (0 in queries)
387 * NSCount: 16: Authority Record count (0 in queries)
388 * ARCount: 16: Additionnal Record count (0 in queries)
479 _dnsPacket_skip( DnsPacket* packet, int count )
481 const uint8_t* p = packet->cursor + count;
831 int count; local
847 count = _dnsPacket_readInt16(packet);
853 for ( ; count > 0; count
[all...]
/bionic/libc/kernel/uapi/sound/
H A Dasoc.h107 __le32 count; member in struct:snd_soc_tplg_hdr
220 __le32 count; member in struct:snd_soc_tplg_enum_control
H A Demu10k1.h294 unsigned int count; member in struct:snd_emu10k1_fx8010_control_gpr
307 unsigned int count; member in struct:snd_emu10k1_fx8010_control_old_gpr
/bionic/libc/upstream-netbsd/lib/libc/regex/
H A Dregcomp.c400 int count; local
513 count = p_count(p);
517 REQUIRE(count <= count2, REG_BADBR);
521 count2 = count;
522 repeat(p, pos, count, count2, 0);
619 int count; local
706 count = p_count(p);
710 REQUIRE(count <= count2, REG_BADBR);
714 count2 = count;
715 repeat(p, pos, count, count
736 int count = 0; local
[all...]
/bionic/linker/
H A Dlinker.cpp276 int count[kRelocMax]; member in struct:linker_stats_t
282 ++linker_stats.count[kind];
1942 static void soinfo_unload(soinfo* soinfos[], size_t count);
2188 static void soinfo_unload(soinfo* soinfos[], size_t count) {
2195 if (count == 0) {
2200 for (size_t i = 0; i < count; ++i) {
3081 size_t count, bool reverse) {
3086 TRACE("[ Calling %s (size %zd) @ %p for \"%s\" ]", array_name, count, functions, get_realpath());
3088 int begin = reverse ? (count - 1) : 0;
3089 int end = reverse ? -1 : count;
[all...]
/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dkvm.h250 __u32 count; member in struct:kvm_pit_channel_state

Completed in 4395 milliseconds

1234