HomeSort by relevance Sort by last modified time
    Searched refs:time_ (Results 1 - 5 of 5) sorted by null

  /external/bluetooth/glib/glib/
gtimer.h 57 void g_time_val_add (GTimeVal *time_,
60 GTimeVal *time_);
61 gchar* g_time_val_to_iso8601 (GTimeVal *time_) G_GNUC_MALLOC;
gtimer.c 220 * @time_: a #GTimeVal
223 * Adds the given number of microseconds to @time_. @microseconds can
224 * also be negative to decrease the value of @time_.
227 g_time_val_add (GTimeVal *time_, glong microseconds)
229 g_return_if_fail (time_->tv_usec >= 0 && time_->tv_usec < G_USEC_PER_SEC);
233 time_->tv_usec += microseconds % G_USEC_PER_SEC;
234 time_->tv_sec += microseconds / G_USEC_PER_SEC;
235 if (time_->tv_usec >= G_USEC_PER_SEC)
237 time_->tv_usec -= G_USEC_PER_SEC
    [all...]
gdate.h 179 GTime time_);
  /external/v8/src/
platform-win32.cc 316 FILETIME& ft() { return time_.ft_; }
319 int64_t& t() { return time_.t_; }
331 TimeStamp time_; member in class:v8::internal::Time
506 this->time_.t_ = init_time.t_ + (static_cast<int64_t>(elapsed) * 10000);
    [all...]
  /external/webkit/WebKit/gtk/webkit/
webkitwebview.cpp     [all...]

Completed in 195 milliseconds