Searched refs:mt2 (Results 1 – 7 of 7) sorted by relevance
/external/robolectric/integration_tests/nativegraphics/src/test/java/org/robolectric/integrationtests/nativegraphics/ |
D | ShadowNativeMeasuredParagraphTest.java | 88 MeasuredParagraph mt2 = MeasuredParagraph.buildForBidi("_VVV_", 1, 4, RTL, mt); in buildForBidi() local 89 assertEquals(mt2, mt); in buildForBidi() 90 assertNotNull(mt2.getChars()); in buildForBidi() 92 assertNotNull(mt2.getDirections(0, 3)); in buildForBidi() 93 assertEquals(0, mt2.getWholeWidth(), 0); in buildForBidi() 94 assertEquals(0, mt2.getWidths().size()); in buildForBidi() 95 assertEquals(0, mt2.getSpanEndCache().size()); in buildForBidi() 96 assertEquals(0, mt2.getFontMetrics().size()); in buildForBidi() 97 assertEquals(0, reflector(MeasuredParagraphReflector.class, mt2).getNativePtr()); in buildForBidi() 99 mt2.recycle(); in buildForBidi() [all …]
|
/external/toybox/toys/posix/ |
D | df.c | 140 struct mtab_list *mt, *mtstart, *mtend, *mt2, *mt3; in df_main() local 164 for (mt = mtend, mt2 = 0; mt; mt = mt->prev) { in df_main() 165 if (!mt2 && st.st_dev == mt->stat.st_dev) mt2 = mt; in df_main() 168 show_mt(mt ? : mt2, measuring); in df_main() 177 for (mt3 = mt, mt2 = mt->prev; mt2; mt2 = mt2->prev) { in df_main() 178 if (mt->stat.st_dev == mt2->stat.st_dev) { in df_main() 180 if (!strcmp(mt->device, mt2->device)) { in df_main() 182 mt3 = mt2; in df_main() 183 } else mt2->stat.st_dev = 0; in df_main()
|
/external/tensorflow/tensorflow/python/framework/ |
D | extension_type_test.py | 184 mt2 = extension_type.pack(mt1) 186 for mt in [mt1, mt2]: 194 mt2 = extension_type.pack(mt1) 196 for mt in [mt1, mt2]: 944 mt2 = extension_type.pack(mt1) 945 self.assertLen(nest.flatten(mt2, expand_composites=True), 1) 946 self.assertIsInstance(mt2.values, ops.Tensor) 947 self.assertAllEqual(mt2.values, [1, 2, 3, 4]) 948 self.assertIsInstance(mt2.mask, ops.Tensor) 949 self.assertAllEqual(mt2.mask, [True, True, False, True]) [all …]
|
/external/iptables/iptables/ |
D | ip6tables.c | 829 struct xtables_match *match, *mt, *mt2; in print_match_save() local 833 mt = mt2 = xtables_find_match_revision(name, XTF_TRY_LOAD, in print_match_save() 835 if (!mt2) in print_match_save() 836 mt2 = match; in print_match_save() 837 printf(" -m %s", mt2->alias ? mt2->alias(e) : name); in print_match_save()
|
D | iptables.c | 826 struct xtables_match *match, *mt, *mt2; in print_match_save() local 830 mt = mt2 = xtables_find_match_revision(name, XTF_TRY_LOAD, in print_match_save() 832 if (!mt2) in print_match_save() 833 mt2 = match; in print_match_save() 834 printf(" -m %s", mt2->alias ? mt2->alias(e) : name); in print_match_save()
|
D | nft-shared.h | 172 bool compare_matches(struct xtables_rule_match *mt1, struct xtables_rule_match *mt2);
|
D | nft-shared.c | 928 struct xtables_rule_match *mt2) in compare_matches() argument 933 for (mp1 = mt1, mp2 = mt2; mp1 && mp2; mp1 = mp1->next, mp2 = mp2->next) { in compare_matches()
|