Home
last modified time | relevance | path

Searched refs:start_count (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
Dencode.c55 size_t start_count, end_count; in WebRtcIlbcfix_EncodeImpl() local
312 start_count = 0; in WebRtcIlbcfix_EncodeImpl()
319 start_count = 0; in WebRtcIlbcfix_EncodeImpl()
324 start_count = WEBRTC_SPL_MIN (Nfor, (size_t)2); in WebRtcIlbcfix_EncodeImpl()
329 start_count = 0; in WebRtcIlbcfix_EncodeImpl()
335 for (subframe = start_count; subframe < end_count; subframe++){ in WebRtcIlbcfix_EncodeImpl()
419 start_count = 0; in WebRtcIlbcfix_EncodeImpl()
426 start_count = 0; in WebRtcIlbcfix_EncodeImpl()
431 start_count = (Nfor >= 2) ? 0 : (2 - NFor); in WebRtcIlbcfix_EncodeImpl()
436 start_count = 0; in WebRtcIlbcfix_EncodeImpl()
[all …]
/external/fio/engines/
Dwindowsaio.c38 static BOOL timeout_expired(DWORD start_count, DWORD end_count);
242 static BOOL timeout_expired(DWORD start_count, DWORD end_count) in timeout_expired() argument
249 if ((end_count > start_count) && current_time >= end_count) in timeout_expired()
251 else if (current_time < start_count && current_time > end_count) in timeout_expired()
272 DWORD start_count = 0; in fio_windowsaio_getevents() local
279 start_count = GetTickCount(); in fio_windowsaio_getevents()
280 end_count = start_count + (t->tv_sec * 1000) + (t->tv_nsec / 1000000); in fio_windowsaio_getevents()
306 if (dequeued >= min || (t != NULL && timeout_expired(start_count, end_count))) in fio_windowsaio_getevents()
/external/libxcam/modules/ocl/
Dcl_3a_image_processor.cpp390 bool start_count = false; in post_config() local
397 if (!start_count) { in post_config()
400 start_count = true; in post_config()
/external/sfntly/cpp/src/sfntly/table/core/
Dcmap_table.cc850 CMapTable::CMapFormat4::Builder::Segment::Segment(int32_t start_count, in Segment() argument
854 : start_count_(start_count), in Segment()
862 int32_t CMapTable::CMapFormat4::Builder::Segment::start_count() { in start_count() function in sfntly::CMapTable::CMapFormat4::Builder::Segment
867 CMapTable::CMapFormat4::Builder::Segment::set_start_count(int32_t start_count) { in set_start_count() argument
868 start_count_ = start_count; in set_start_count()
985 fprintf(stderr, "Segment %d; start %d\n", index, segment->start_count()); in Initialize()
1091 fprintf(stderr, "Segment %d; start %d\n", i, segments_[i]->start_count()); in SubSerialize()
1093 index += new_data->WriteUShort(index, segments_[i]->start_count()); in SubSerialize()
Dcmap_table.h332 Segment(int32_t start_count,
339 int32_t start_count();
341 void set_start_count(int32_t start_count);
430 int32_t start_count,
/external/webrtc/talk/media/base/
Dcapturemanager.cc62 int start_count() const { in start_count() function in cricket::VideoCapturerState
262 ASSERT(capture_state && capture_state->start_count() > 0); in RestartVideoCapture()