Home
last modified time | relevance | path

Searched refs:seq1 (Results 1 – 21 of 21) sorted by relevance

/third_party/gstreamer/gstplugins_good/tests/check/elements/
Drtpred.c759 guint16 seq0, seq1; in GST_START_TEST() local
770 seq1 = seq0 + 1; in GST_START_TEST()
777 _new_rtp_buffer (TRUE, 0, PT_MEDIA, seq1, timestamp0, 0xabe2b0b, in GST_START_TEST()
796 guint16 seq0, seq1; in GST_START_TEST() local
809 seq1 = seq0 + 1; in GST_START_TEST()
816 _new_rtp_buffer (TRUE, 0, PT_MEDIA, seq1, timestamp1, 0xabe2b0b, in GST_START_TEST()
834 guint16 seq0, seq1; in GST_START_TEST() local
846 seq1 = seq0 + 1; in GST_START_TEST()
853 _new_rtp_buffer (TRUE, 0, PT_MEDIA, seq1, timestamp1, 0xabe2b0b, in GST_START_TEST()
/third_party/python/Lib/unittest/
Dcase.py936 def assertSequenceEqual(self, seq1, seq2, msg=None, seq_type=None): argument
952 if not isinstance(seq1, seq_type):
954 % (seq_type_name, safe_repr(seq1)))
963 len1 = len(seq1)
976 if seq1 == seq2:
981 _common_shorten_repr(seq1, seq2))
985 item1 = seq1[i]
1004 type(seq1) != type(seq2)):
1013 (len2, safe_repr(seq1[len2])))
1028 difflib.ndiff(pprint.pformat(seq1).splitlines(),
/third_party/python/Modules/clinic/
Ditertoolsmodule.c.h552 itertools_compress_impl(PyTypeObject *type, PyObject *seq1, PyObject *seq2);
563 PyObject *seq1; in itertools_compress() local
570 seq1 = fastargs[0]; in itertools_compress()
572 return_value = itertools_compress_impl(type, seq1, seq2); in itertools_compress()
/third_party/musl/src/regex/
Dregcomp.c1920 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1938 if (seq1 != NULL) in tre_expand_ast()
1939 seq1 = tre_ast_new_catenation(mem, seq1, copy); in tre_expand_ast()
1941 seq1 = copy; in tre_expand_ast()
1942 if (seq1 == NULL) in tre_expand_ast()
1984 if (seq1 == NULL) in tre_expand_ast()
1985 seq1 = seq2; in tre_expand_ast()
1987 seq1 = tre_ast_new_catenation(mem, seq1, seq2); in tre_expand_ast()
1988 if (seq1 == NULL) in tre_expand_ast()
1990 node->obj = seq1->obj; in tre_expand_ast()
[all …]
/third_party/musl/porting/uniproton/kernel/src/regex/
Dregcomp.c1920 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1938 if (seq1 != NULL) in tre_expand_ast()
1939 seq1 = tre_ast_new_catenation(mem, seq1, copy); in tre_expand_ast()
1941 seq1 = copy; in tre_expand_ast()
1942 if (seq1 == NULL) in tre_expand_ast()
1984 if (seq1 == NULL) in tre_expand_ast()
1985 seq1 = seq2; in tre_expand_ast()
1987 seq1 = tre_ast_new_catenation(mem, seq1, seq2); in tre_expand_ast()
1988 if (seq1 == NULL) in tre_expand_ast()
1990 node->obj = seq1->obj; in tre_expand_ast()
[all …]
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/
Dregcomp.c1921 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1939 if (seq1 != NULL) in tre_expand_ast()
1940 seq1 = tre_ast_new_catenation(mem, seq1, copy); in tre_expand_ast()
1942 seq1 = copy; in tre_expand_ast()
1943 if (seq1 == NULL) in tre_expand_ast()
1985 if (seq1 == NULL) in tre_expand_ast()
1986 seq1 = seq2; in tre_expand_ast()
1988 seq1 = tre_ast_new_catenation(mem, seq1, seq2); in tre_expand_ast()
1989 if (seq1 == NULL) in tre_expand_ast()
1991 node->obj = seq1->obj; in tre_expand_ast()
[all …]
/third_party/musl/porting/liteos_m/kernel/src/regex/
Dregcomp.c1920 tre_ast_node_t *seq1 = NULL, *seq2 = NULL; in tre_expand_ast() local
1938 if (seq1 != NULL) in tre_expand_ast()
1939 seq1 = tre_ast_new_catenation(mem, seq1, copy); in tre_expand_ast()
1941 seq1 = copy; in tre_expand_ast()
1942 if (seq1 == NULL) in tre_expand_ast()
1984 if (seq1 == NULL) in tre_expand_ast()
1985 seq1 = seq2; in tre_expand_ast()
1987 seq1 = tre_ast_new_catenation(mem, seq1, seq2); in tre_expand_ast()
1988 if (seq1 == NULL) in tre_expand_ast()
1990 node->obj = seq1->obj; in tre_expand_ast()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
Dpcg_engine_test.cc53 std::seed_seq seq1{1, 2, 3, 4, 5, 6, 7}; in TYPED_TEST() local
54 engine.seed(seq1); in TYPED_TEST()
Dranden_engine_test.cc55 std::seed_seq seq1{1, 2, 3, 4, 5, 6, 7}; in TYPED_TEST() local
56 engine.seed(seq1); in TYPED_TEST()
/third_party/python/Lib/test/
Dtest_difflib.py51 seq1 = 'b' * 200
54 sm = difflib.SequenceMatcher(None, seq1, seq2)
59 sm = difflib.SequenceMatcher(None, seq1, seq2, autojunk=False)
Dtest_collections.py1889 def assert_index_same(seq1, seq2, index_args): argument
1891 expected = seq1.index(*index_args)
1898 actual, expected, '%r.index%s' % (seq1, index_args))
/third_party/python/Lib/unittest/test/
Dtest_case.py806 seq1 = 'a' + 'x' * 80**2
808 diff = '\n'.join(difflib.ndiff(pprint.pformat(seq1).splitlines(),
816 self.assertSequenceEqual(seq1, seq2)
826 self.assertSequenceEqual(seq1, seq2)
836 self.assertSequenceEqual(seq1, seq2)
/third_party/gstreamer/gstplugins_base/tests/check/libs/
Dvideo.c1342 guint seq1, seq2; in GST_START_TEST() local
1364 seq1 = gst_video_overlay_rectangle_get_seqnum (rect1); in GST_START_TEST()
1366 fail_unless (seq1 < seq2); in GST_START_TEST()
1381 fail_unless (seq1 < gst_video_overlay_composition_get_seqnum (comp2)); in GST_START_TEST()
1468 gst_buffer_extract (pix1, 0, &seq1, 4); in GST_START_TEST()
1469 fail_unless (seq1 != 0); in GST_START_TEST()
1664 guint seq1, seq2; in GST_START_TEST() local
1756 seq1 = gst_video_overlay_rectangle_get_seqnum (rect1); in GST_START_TEST()
1763 fail_unless (seq1 < seq2); in GST_START_TEST()
/third_party/python/Doc/library/
Doperator.rst375 | Concatenation | ``seq1 + seq2`` | ``concat(seq1, seq2)`` |
/third_party/python/Doc/whatsnew/
D2.0.rst324 seq1 = 'abc'
326 >>> [ (x,y) for x in seq1 for y in seq2]
335 [ x,y for x in seq1 for y in seq2]
337 [ (x,y) for x in seq1 for y in seq2]
603 A new built-in, ``zip(seq1, seq2, ...)``, has been added. :func:`zip`
606 seq1, seq2)`` is that :func:`map` pads the sequences with ``None`` if the
/third_party/python/Doc/howto/
Dfunctional.rst412 >>> seq1 = 'abc'
414 >>> [(x, y) for x in seq1 for y in seq2] #doctest: +NORMALIZE_WHITESPACE
424 [x, y for x in seq1 for y in seq2]
426 [(x, y) for x in seq1 for y in seq2]
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c1951 between(uint32_t seq1, uint32_t seq2, uint32_t seq3) in between() argument
1953 return (seq3 - seq2 >= seq1 - seq2); in between()
/third_party/libwebsockets/minimal-examples/api-tests/api-test-lecp/
Dmain.c2007 seq1[] = { variable
4185 .seq = seq1, .seq_size = LWS_ARRAY_SIZE(seq1) },
/third_party/python/Modules/
Ditertoolsmodule.c3837 itertools_compress_impl(PyTypeObject *type, PyObject *seq1, PyObject *seq2) in itertools_compress_impl() argument
3843 data = PyObject_GetIter(seq1); in itertools_compress_impl()
/third_party/skia/third_party/externals/brotli/tests/testdata/
Dlcet10.txt7109 E-mail: pgif@seq1.loc.gov
7260 E-mail: svec@seq1.loc.gov
7284 E-mail: rzic@seq1.loc.gov
/third_party/python/Misc/
DHISTORY26391 A new function zip() was added. zip(seq1, seq2, ...) is equivalent to
26392 map(None, seq1, seq2, ...) when the sequences have the same length;