Searched refs:writer_count (Results 1 - 5 of 5) sorted by relevance

/external/valgrind/drd/tests/
H A Dannotate_rwlock.c29 int writer_count; member in struct:__anon19750
42 p->writer_count = 0;
51 assert(p->writer_count == 0);
61 if (p->writer_count == 0)
73 assert(p->writer_count >= 0);
74 assert(p->reader_count == 0 || p->writer_count == 0);
95 p->writer_count++;
97 assert(p->writer_count >= 0);
98 assert(p->reader_count == 0 || p->writer_count == 0);
114 p->writer_count
[all...]
/external/valgrind/helgrind/tests/
H A Dannotate_rwlock.c39 int writer_count; member in struct:__anon19827
52 p->writer_count = 0;
61 assert(p->writer_count == 0);
71 if (p->writer_count == 0)
83 assert(p->writer_count >= 0);
84 assert(p->reader_count == 0 || p->writer_count == 0);
106 p->writer_count++;
108 assert(p->writer_count >= 0);
109 assert(p->reader_count == 0 || p->writer_count == 0);
127 p->writer_count
[all...]
/external/vulkan-validation-layers/layers/
H A Dthreading.h51 int writer_count; member in struct:object_use_data
73 use_data->writer_count = 1;
93 use_data->writer_count = 1;
97 use_data->writer_count += 1;
102 use_data->writer_count += 1;
120 use_data->writer_count = 1;
124 use_data->writer_count += 1;
129 use_data->writer_count += 1;
139 uses[object].writer_count -= 1;
140 if ((uses[object].reader_count == 0) && (uses[object].writer_count
[all...]
/external/google-breakpad/src/client/solaris/handler/
H A Dminidump_generator.cc721 int writer_count = sizeof(writers) / sizeof(writers[0]); local
723 if (!dir.AllocateArray(writer_count))
728 header.get()->stream_count = writer_count;
733 for (int i = 0; i < writer_count; ++i) {
/external/google-breakpad/src/client/mac/handler/
H A Dminidump_generator.cc228 int writer_count = static_cast<int>(sizeof(writers) / sizeof(writers[0])); local
233 --writer_count;
236 if (!dir.AllocateArray(writer_count))
243 header_ptr->stream_count = writer_count;
248 for (int i = 0; (result) && (i < writer_count); ++i) {

Completed in 266 milliseconds