Home
last modified time | relevance | path

Searched refs:intvl (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/src/gpu/
DGrResourceAllocator.cpp73 Interval* intvl = *intvlPtr; variable
79 SkASSERT(0 == intvl->start());
83 SkASSERT(intvl->start() <= start && intvl->end() >= end);
85 SkASSERT(intvl->end() <= start && intvl->end() <= end);
89 intvl->addUse();
91 intvl->extendEnd(end);
207 void GrResourceAllocator::IntervalList::insertByIncreasingStart(Interval* intvl) { in insertByIncreasingStart() argument
209 SkASSERT(!intvl->next()); in insertByIncreasingStart()
213 fHead = fTail = intvl; in insertByIncreasingStart()
214 } else if (intvl->start() <= fHead->start()) { in insertByIncreasingStart()
[all …]
/third_party/flutter/skia/src/gpu/
DGrResourceAllocator.cpp110 if (Interval* intvl = fIntvlHash.find(proxy->uniqueID().asUInt())) { variable
117 SkASSERT(0 == intvl->start());
121 SkASSERT(intvl->start() <= start && intvl->end() >= end);
123 SkASSERT(intvl->end() <= start && intvl->end() <= end);
127 intvl->addUse();
129 intvl->extendEnd(end);
183 void GrResourceAllocator::IntervalList::insertByIncreasingStart(Interval* intvl) { in insertByIncreasingStart() argument
185 SkASSERT(!intvl->next()); in insertByIncreasingStart()
189 fHead = fTail = intvl; in insertByIncreasingStart()
190 } else if (intvl->start() <= fHead->start()) { in insertByIncreasingStart()
[all …]
DGrResourceAllocator.h212 static const uint32_t& GetKey(const Interval& intvl) { in GetKey() argument
213 return intvl.fProxyID; in GetKey()
/third_party/pulseaudio/src/modules/raop/
Draop-sink.c405 pa_usec_t intvl = 0; in thread_func() local
490 intvl = 0; in thread_func()
544 if (intvl < now + u->block_usec) { in thread_func()
598 intvl = u->start + pa_bytes_to_usec(u->write_count, &u->sink->sample_spec); in thread_func()
599 pa_rtpoll_set_timer_absolute(u->rtpoll, intvl); in thread_func()
605 intvl = u->start + pa_bytes_to_usec(u->write_count, &u->sink->sample_spec); in thread_func()
606 pa_rtpoll_set_timer_absolute(u->rtpoll, intvl); in thread_func()
/third_party/lwip/src/core/
Daltcp.c514 altcp_keepalive_enable(struct altcp_pcb *conn, u32_t idle, u32_t intvl, u32_t count) in altcp_keepalive_enable() argument
517 conn->fns->keepalive_enable(conn, idle, intvl, count); in altcp_keepalive_enable()
697 altcp_default_keepalive_enable(struct altcp_pcb *conn, u32_t idle, u32_t intvl, u32_t count) in altcp_default_keepalive_enable() argument
700 altcp_keepalive_enable(conn->inner_conn, idle, intvl, count); in altcp_default_keepalive_enable()
Daltcp_tcp.c466 altcp_tcp_keepalive_enable(struct altcp_pcb *conn, u32_t idle, u32_t intvl, u32_t cnt) in altcp_tcp_keepalive_enable() argument
473 pcb->keep_intvl = intvl ? intvl : TCP_KEEPINTVL_DEFAULT; in altcp_tcp_keepalive_enable()
/third_party/lwip/src/include/lwip/priv/
Daltcp_priv.h90 typedef void (*altcp_keepalive_enable_fn)(struct altcp_pcb *conn, u32_t idle, u32_t intvl, u32_t c…
147 void altcp_default_keepalive_enable(struct altcp_pcb *conn, u32_t idle, u32_t intvl, u32_t count);
/third_party/libuv/src/unix/
Dtcp.c389 int intvl = 1; /* 1 second; same as default on Win32 */ in uv__tcp_keepalive() local
393 if (setsockopt(fd, IPPROTO_TCP, TCP_KEEPINTVL, &intvl, sizeof(intvl))) in uv__tcp_keepalive()
/third_party/lwip/src/include/lwip/
Daltcp.h134 void altcp_keepalive_enable(struct altcp_pcb *conn, u32_t idle, u32_t intvl, u32_t count);