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

  /external/fio/engines/
windowsaio.c 38 static BOOL timeout_expired(DWORD start_count, DWORD end_count);
237 static BOOL timeout_expired(DWORD start_count, DWORD end_count)
244 if ((end_count > start_count) && current_time >= end_count)
246 else if (current_time < start_count && current_time > end_count)
267 DWORD start_count = 0; local
274 start_count = GetTickCount();
275 end_count = start_count + (t->tv_sec * 1000) + (t->tv_nsec / 1000000);
302 if (dequeued >= min || (t != NULL && timeout_expired(start_count, end_count)))
  /external/sfntly/cpp/src/sfntly/table/core/
cmap_table.cc 850 CMapTable::CMapFormat4::Builder::Segment::Segment(int32_t start_count,
854 : start_count_(start_count),
862 int32_t CMapTable::CMapFormat4::Builder::Segment::start_count() { function in class:sfntly::CMapTable::CMapFormat4::Builder::Segment
867 CMapTable::CMapFormat4::Builder::Segment::set_start_count(int32_t start_count) {
868 start_count_ = start_count;
985 fprintf(stderr, "Segment %d; start %d\n", index, segment->start_count());
    [all...]

Completed in 37 milliseconds