HomeSort by relevance Sort by last modified time
    Searched defs:writer_count (Results 1 - 6 of 6) sorted by null

  /external/valgrind/drd/tests/
annotate_rwlock.c 29 int writer_count; member in struct:__anon37592
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/
annotate_rwlock.c 39 int writer_count; member in struct:__anon37669
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/google-breakpad/src/client/solaris/handler/
minidump_generator.cc 721 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/vulkan-validation-layers/layers/
threading.h 46 int writer_count; member in struct:object_use_data
86 use_data->writer_count = 1;
106 use_data->writer_count = 1;
110 use_data->writer_count += 1;
115 use_data->writer_count += 1;
133 use_data->writer_count = 1;
137 use_data->writer_count += 1;
142 use_data->writer_count += 1;
151 uses[object].writer_count -= 1;
152 if ((uses[object].reader_count == 0) && (uses[object].writer_count == 0))
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
threading.h 46 int writer_count; member in struct:object_use_data
67 use_data->writer_count = 1;
87 use_data->writer_count = 1;
91 use_data->writer_count += 1;
96 use_data->writer_count += 1;
114 use_data->writer_count = 1;
118 use_data->writer_count += 1;
123 use_data->writer_count += 1;
132 uses[object].writer_count -= 1;
133 if ((uses[object].reader_count == 0) && (uses[object].writer_count == 0))
    [all...]
  /external/google-breakpad/src/client/mac/handler/
minidump_generator.cc 228 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) {
    [all...]

Completed in 463 milliseconds