Home
last modified time | relevance | path

Searched refs:ends (Results 1 - 25 of 27) sorted by relevance

12

/third_party/python/Modules/
H A D_xxsubinterpretersmodule.c557 _channelends *ends = PyMem_NEW(_channelends, 1); in _channelends_new() local
558 if (ends== NULL) { in _channelends_new()
561 ends->numsendopen = 0; in _channelends_new()
562 ends->numrecvopen = 0; in _channelends_new()
563 ends->send = NULL; in _channelends_new()
564 ends->recv = NULL; in _channelends_new()
565 return ends; in _channelends_new()
569 _channelends_clear(_channelends *ends) in _channelends_clear() argument
571 _channelend_free_all(ends->send); in _channelends_clear()
572 ends in _channelends_clear()
581 _channelends_free(_channelends *ends) _channelends_free() argument
588 _channelends_add(_channelends *ends, _channelend *prev, int64_t interp, int send) _channelends_add() argument
617 _channelends_associate(_channelends *ends, int64_t interp, int send) _channelends_associate() argument
637 _channelends_is_open(_channelends *ends) _channelends_is_open() argument
649 _channelends_close_end(_channelends *ends, _channelend *end, int send) _channelends_close_end() argument
661 _channelends_close_interpreter(_channelends *ends, int64_t interp, int which) _channelends_close_interpreter() argument
691 _channelends_close_all(_channelends *ends, int which, int force) _channelends_close_all() argument
718 _channelends *ends; global() member
[all...]
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dgen-indic-table.py202 ends = [] variable
220 ends.append (last + 1)
221 offset += ends[-1] - starts[-1]
229 ends.append (last + 1)
230 offset += ends[-1] - starts[-1]
242 pages = set ([u>>page_bits for u in starts+ends+list (singles.keys ())])
248 for (start,end) in zip (starts, ends):
H A Dgen-use-table.py477 ends = [] variable
509 ends.append (last + 1)
510 offset += ends[-1] - starts[-1]
518 ends.append (last + 1)
519 offset += ends[-1] - starts[-1]
531 pages = set([u>>page_bits for u in starts+ends])
534 for (start,end) in zip (starts, ends):
/third_party/skia/docs/examples/
H A Dpong.cpp6 SkScalar ends, SkScalar mid) { in REG_FIDDLE_ANIMATED()
10 return SkDoubleToScalar(ends + (1.0 - diff / half) * (mid - ends)); in REG_FIDDLE_ANIMATED()
5 PingPong(double t, SkScalar period, SkScalar phase, SkScalar ends, SkScalar mid) REG_FIDDLE_ANIMATED() argument
H A Dpong2.cpp6 SkScalar ends, SkScalar mid) { in REG_FIDDLE_ANIMATED()
10 return SkDoubleToScalar(ends + (1.0 - diff / half) * (mid - ends)); in REG_FIDDLE_ANIMATED()
5 PingPong(double t, SkScalar period, SkScalar phase, SkScalar ends, SkScalar mid) REG_FIDDLE_ANIMATED() argument
/third_party/skia/tools/timer/
H A DTimeUtils.h35 // Transitions from ends->mid->ends linearly over period time. The phase
40 float ends, in PingPong()
45 return (float)(ends + (1.0 - diff / half) * (mid - ends)); in PingPong()
37 PingPong(double time, float period, float phase, float ends, float mid) PingPong() argument
/third_party/ffmpeg/tests/fate/
H A Dmov.mak6 fate-mov-1elist-ends-last-bframe \
7 fate-mov-2elist-elist1-ends-bframe \
15 fate-mov-elst-ends-betn-b-and-i \
65 fate-mov-1elist-ends-last-bframe: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-1elist-ends-last-bframe.mov
68 fate-mov-2elist-elist1-ends-bframe: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/mov-2elist-elist1-ends-bframe.mov
70 # Makes sure that if edit list ends on a B-frame but before the I-frame, then we output the B-frame but discard the I-frame.
71 fate-mov-elst-ends-betn-b-and-i: CMD = framemd5 -i $(TARGET_SAMPLES)/mov/elst_ends_betn_b_and_i.mp4
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DStringRange.java266 private static void add(int endIndex, int startOffset, int[] starts, int[] ends, StringBuilder builder, Collection<String> output) { in add() argument
268 int end = ends[endIndex]; in add()
272 boolean last = endIndex == ends.length - 1; in add()
279 add(endIndex+1, startOffset, starts, ends, builder, output); in add()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DStringRange.java273 private static void add(int endIndex, int startOffset, int[] starts, int[] ends, StringBuilder builder, Collection<String> output) { in add() argument
275 int end = ends[endIndex]; in add()
279 boolean last = endIndex == ends.length - 1; in add()
286 add(endIndex+1, startOffset, starts, ends, builder, output); in add()
/third_party/vk-gl-cts/scripts/src_util/
H A Dcheck_encoding.py34 def checkEnds(line, ends):
35 return any(line.endswith(end) for end in ends)
/third_party/gn/src/gn/
H A Dfunction_rebase_path.cc178 corresponding input path ends in a slash. It will return "." or "./"
179 (depending on whether the input ends in a slash) to avoid returning empty
/third_party/ffmpeg/libavcodec/
H A Dindeo3.c903 uint32_t starts[3], ends[3]; in decode_frame_headers() local
976 ends[j] = ctx->data_size; in decode_frame_headers()
978 if (starts[i] < ends[j] && starts[i] > starts[j]) in decode_frame_headers()
979 ends[j] = starts[i]; in decode_frame_headers()
982 ctx->y_data_size = ends[0] - starts[0]; in decode_frame_headers()
983 ctx->v_data_size = ends[1] - starts[1]; in decode_frame_headers()
984 ctx->u_data_size = ends[2] - starts[2]; in decode_frame_headers()
/third_party/googletest/googletest/test/
H A Dgoogletest-message-test.cc131 // Tests that basic IO manipulators (endl, ends, and flush) can be
137 << "A NUL char " << std::ends << std::flush << " in line 2.") in TEST()
H A Dgtest_unittest.cc4642 // Tests that basic IO manipulators (endl, ends, and flush) can be
4648 << "A NUL char " << std::ends << std::flush << " in line 2."; in TEST()
5074 r << "Data" << std::endl << std::flush << std::ends << "Will be visible"; in TEST() member in std
6941 // test ends. in TEST()
7022 // test ends. in TEST()
7081 // test ends. in TEST()
/third_party/ninja/misc/
H A Dninja.vim39 " Both 'build' and 'rule' begin a variable scope that ends
/third_party/icu/icu4c/source/test/iotest/
H A Dstream.cpp97 outTestStream << str1 << "\x20\x20" << str2 << str3 << "\x31\x20" << UTF8_NEW_LINE << str4 << ends; in TestStream() local
/third_party/mesa3d/src/gallium/frontends/clover/util/
H A Dfunctional.hpp243 struct ends { struct
/third_party/skia/third_party/externals/freetype/src/sfnt/
H A Dttcmap.c898 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; in FT_CALLBACK_DEF() local
972 ends = table + 14; in FT_CALLBACK_DEF()
981 p = ends + ( num_segs - 1 ) * 2; in FT_CALLBACK_DEF()
991 FT_Byte* p_end = ends; in FT_CALLBACK_DEF()
1128 p = cmap->data + 14; /* ends table */ in tt_cmap4_char_map_linear()
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/
H A Dcontainer_test.cc627 auto ends = absl::c_partition_copy(initial, back_inserter(odds), in TEST() local
629 *ends.first = 7; in TEST()
630 *ends.second = 6; in TEST()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
H A Dxml_consistency.py652 whose name ends in a number which is not a version, such as "...h264"\n\
/third_party/node/deps/v8/src/objects/
H A Dobjects.cc4952 FixedArray ends = FixedArray::cast(line_ends()); in GetPositionInfo() local
4954 const int ends_len = ends.length(); in GetPositionInfo()
4961 } else if (position > Smi::ToInt(ends.get(ends_len - 1))) { in GetPositionInfo()
4965 // Determine line number by doing a binary search on the line ends array. in GetPositionInfo()
4966 if (Smi::ToInt(ends.get(0)) >= position) { in GetPositionInfo()
4977 if (position > Smi::ToInt(ends.get(mid))) { in GetPositionInfo()
4979 } else if (position <= Smi::ToInt(ends.get(mid - 1))) { in GetPositionInfo()
4986 DCHECK(Smi::ToInt(ends.get(info->line)) >= position && in GetPositionInfo()
4987 Smi::ToInt(ends.get(info->line - 1)) < position); in GetPositionInfo()
4988 info->line_start = Smi::ToInt(ends in GetPositionInfo()
[all...]
/third_party/lzma/Asm/x86/
H A DLzmaDecOpt.asm533 CLzmaDec_Asm ends
560 CLzmaDec_Asm_Loc ends
/third_party/python/Lib/test/
H A Dtest__xxsubinterpreters.py1224 # Test for channel that has both ends associated to an interpreter.
1338 # Both ends should raise an error.
1372 # Both ends should raise an error.
2145 ends = ('recv', 'send')
2150 for end in ends:
/third_party/skia/third_party/externals/microhttpd/doc/
H A Dtexinfo.tex332 % take effect in \write's, yet the group defined by the \vbox ends
473 % either the null string, or it ends with \^^M---thus there is no danger
694 % message, so this ends up printing `@group can only ...'.
3992 % box from the multistrut, so the strut ends up on a line by itself.
4118 % If we're here, #1 ends with ^^M\ifinfo (for example).
4699 % makeinfo does not expand macros in the argument to @deffn, which ends up
5067 \pdfgettoks#2.\ \the\toksA % The page number ends the paragraph.
5200 % invocation ends. Having called \balancecolumns once, we do not
6724 % the (first) argument ends when '@end verbatim' is reached, ie:
9978 % ends u
[all...]
/third_party/node/deps/openssl/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm792 { "String that ends in a newline.\n" }
1929 because C<Text::Template> thinks that the code ends at the first C<}>,

Completed in 51 milliseconds

12