Home
last modified time | relevance | path

Searched refs:next_start (Results 1 – 11 of 11) sorted by relevance

/third_party/ffmpeg/libavcodec/
Dcbs_jpeg.c113 int unit, start, end, marker, next_start, next_marker; in cbs_jpeg_split_fragment() local
163 next_start = i + 1; in cbs_jpeg_split_fragment()
192 next_start = i + 1; in cbs_jpeg_split_fragment()
237 start = next_start; in cbs_jpeg_split_fragment()
/third_party/boost/boost/regex/v4/
Du32regex_iterator.hpp58 BidirectionalIterator next_start = what[0].second; in next() local
64 bool result = u32regex_search(next_start, end, what, re, f, base); in next()
Dregex_iterator.hpp71 BidirectionalIterator next_start = what[0].second; in next() local
77 bool result = regex_search(next_start, end, what, re, f, base); in next()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
Dgas_query_ap.c647 static int next_start = 0; in gas_query_new_dialog_token() local
652 gas, dst, (next_start + dialog_token) % 256)) in gas_query_new_dialog_token()
657 dialog_token = (next_start + dialog_token) % 256; in gas_query_new_dialog_token()
658 next_start = (dialog_token + 1) % 256; in gas_query_new_dialog_token()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
Dgas_query_ap.c647 static int next_start = 0; in gas_query_new_dialog_token() local
652 gas, dst, (next_start + dialog_token) % 256)) in gas_query_new_dialog_token()
657 dialog_token = (next_start + dialog_token) % 256; in gas_query_new_dialog_token()
658 next_start = (dialog_token + 1) % 256; in gas_query_new_dialog_token()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Dgas_query.c730 static int next_start = 0; in gas_query_new_dialog_token() local
735 gas, dst, (next_start + dialog_token) % 256)) in gas_query_new_dialog_token()
740 dialog_token = (next_start + dialog_token) % 256; in gas_query_new_dialog_token()
741 next_start = (dialog_token + 1) % 256; in gas_query_new_dialog_token()
/third_party/benchmark/test/
Doutput_test_helper.cc86 SizeT next_start = 0; in PerformSubstitutions() local
87 while ((pos = source.find(KV.first, next_start)) != std::string::npos) { in PerformSubstitutions()
88 next_start = pos + KV.second.size(); in PerformSubstitutions()
/third_party/skia/third_party/externals/freetype/src/sfnt/
Dttcmap.c1357 FT_UInt next_end, next_start; in tt_cmap4_char_map_binary() local
1363 next_start = TT_PEEK_USHORT( p ); in tt_cmap4_char_map_binary()
1365 if ( charcode < next_start ) in tt_cmap4_char_map_binary()
1369 start = next_start; in tt_cmap4_char_map_binary()
/third_party/flutter/skia/third_party/externals/freetype/src/sfnt/
Dttcmap.c1348 FT_UInt next_end, next_start; in tt_cmap4_char_map_binary() local
1354 next_start = TT_PEEK_USHORT( p ); in tt_cmap4_char_map_binary()
1356 if ( charcode < next_start ) in tt_cmap4_char_map_binary()
1360 start = next_start; in tt_cmap4_char_map_binary()
/third_party/freetype/src/sfnt/
Dttcmap.c1347 FT_UInt next_end, next_start; in tt_cmap4_char_map_binary() local
1353 next_start = TT_PEEK_USHORT( p ); in tt_cmap4_char_map_binary()
1355 if ( charcode < next_start ) in tt_cmap4_char_map_binary()
1359 start = next_start; in tt_cmap4_char_map_binary()
/third_party/ffmpeg/libavformat/
Dutils.c3298 int64_t next_start = av_rescale_q(ch1->start, ch1->time_base, local
3300 if (next_start > ch->start && next_start < end)
3301 end = next_start;