Home
last modified time | relevance | path

Searched refs:seg2 (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/freetype/src/autofit/
Dafcjk.c848 AF_Segment seg1, seg2; in af_cjk_hints_link_segments() local
865 for ( seg2 = segments; seg2 < segment_limit; seg2++ ) in af_cjk_hints_link_segments()
866 if ( seg2 != seg1 && seg1->dir + seg2->dir == 0 ) in af_cjk_hints_link_segments()
868 FT_Pos dist = seg2->pos - seg1->pos; in af_cjk_hints_link_segments()
880 if ( min < seg2->min_coord ) in af_cjk_hints_link_segments()
881 min = seg2->min_coord; in af_cjk_hints_link_segments()
883 if ( max > seg2->max_coord ) in af_cjk_hints_link_segments()
884 max = seg2->max_coord; in af_cjk_hints_link_segments()
894 seg1->link = seg2; in af_cjk_hints_link_segments()
897 if ( dist * 8 < seg2->score * 9 && in af_cjk_hints_link_segments()
[all …]
Dafhints.h462 #define AF_SEGMENT_DIST( seg1, seg2 ) ( ( (seg1)->pos > (seg2)->pos ) \ argument
463 ? (seg1)->pos - (seg2)->pos \
464 : (seg2)->pos - (seg1)->pos )
Daflatin.c1994 AF_Segment seg1, seg2; in af_latin_hints_link_segments() local
2023 for ( seg2 = segments; seg2 < segment_limit; seg2++ ) in af_latin_hints_link_segments()
2026 FT_Pos pos2 = seg2->pos; in af_latin_hints_link_segments()
2029 if ( seg1->dir + seg2->dir == 0 && pos2 > pos1 ) in af_latin_hints_link_segments()
2037 if ( min < seg2->min_coord ) in af_latin_hints_link_segments()
2038 min = seg2->min_coord; in af_latin_hints_link_segments()
2040 if ( max > seg2->max_coord ) in af_latin_hints_link_segments()
2041 max = seg2->max_coord; in af_latin_hints_link_segments()
2090 seg1->link = seg2; in af_latin_hints_link_segments()
2093 if ( score < seg2->score ) in af_latin_hints_link_segments()
[all …]
/third_party/ffmpeg/libavcodec/
Dg723_1dec.c742 int i, shift, seg, seg2, t, val, val_add, x, y; in estimate_sid_gain() local
769 seg2 = FFMIN(seg, 3); in estimate_sid_gain()
774 t = seg * 32 + (val << seg2); in estimate_sid_gain()
783 t = seg * 32 + (val << seg2); in estimate_sid_gain()
786 t = seg * 32 + (val + 1 << seg2); in estimate_sid_gain()
788 val = (seg2 - 1) * 16 + val; in estimate_sid_gain()
792 t = seg * 32 + (val - 1 << seg2); in estimate_sid_gain()
794 val = (seg2 - 1) * 16 + val; in estimate_sid_gain()
/third_party/skia/tests/
DPathOpsAngleTest.cpp461 SkOpSegment* seg2 = seg1->next(); in DEF_TEST() local
462 seg2->debugAddAngle(dataArray[index2 + 1].fTStart, dataArray[index2 + 1].fTEnd); in DEF_TEST()
463 SkOpSegment* seg3 = seg2->next(); in DEF_TEST()
466 SkOpAngle& angle2 = *seg2->debugLastAngle(); in DEF_TEST()
DPathOpsAngleIdeas.cpp429 SkOpSegment* seg2 = seg1->next(); in testQuadAngles() local
430 seg2->debugAddAngle(0, 1); in testQuadAngles()
432 *seg2->debugLastAngle()); in testQuadAngles()
551 *seg2->debugLastAngle()); in testQuadAngles()
/third_party/libcoap/examples/
Detsi_testcases.sh354 testaddress=coap://$SERVERTUP/seg1/seg2/seg3
/third_party/gstreamer/gstplugins_bad/tests/check/elements/
Dhlsdemux_m3u8.c1417 GstM3U8MediaFile *seg1, *seg2, *seg3; in GST_START_TEST() local
1447 seg2 = g_list_nth_data (files, 1); in GST_START_TEST()
1451 fail_unless (seg1->init_file == seg2->init_file); in GST_START_TEST()
1454 fail_unless (seg2->init_file != seg3->init_file); in GST_START_TEST()
/third_party/skia/src/pathops/
DSkOpCoincidence.h258 const SkOpSegment* seg2, const SkOpSegment* seg2o,
DSkOpCoincidence.cpp894 const SkOpSegment* seg2, const SkOpSegment* seg2o, in addOverlap() argument
909 const SkOpPtT* s2 = overS->find(seg2); in addOverlap()
910 const SkOpPtT* e2 = overE->find(seg2); in addOverlap()
/third_party/elfio/elfio/
Delfio.hpp676 const segment* seg2 ) noexcept in is_subsequence_of() argument
680 const std::vector<Elf_Half>& sections2 = seg2->get_sections(); in is_subsequence_of()
/third_party/gstreamer/gstreamer/tests/check/gst/
Dgstvalue.c3708 GstSegment *seg, *seg2; in GST_START_TEST() local
3715 seg2 = get_serialize_deserialize_boxed (seg, GST_TYPE_SEGMENT); in GST_START_TEST()
3716 fail_unless (gst_segment_is_equal (seg, seg2)); in GST_START_TEST()
3721 gst_segment_free (seg2); in GST_START_TEST()
/third_party/python/Lib/test/
Dtest_socket.py2437 seg2 = self.cli_conn.recv(1024)
2438 msg = seg1 + seg2
2455 seg2, addr = self.cli_conn.recvfrom(1024)
2456 msg = seg1 + seg2
3196 seg2, ancdata, flags, addr = self.doRecvmsg(self.serv_sock, 1024)
3201 msg = seg1 + seg2
/third_party/node/deps/v8/src/codegen/riscv64/
Dassembler-riscv64.h685 void OP##seg2(ARG); \