Home
last modified time | relevance | path

Searched refs:e0 (Results 1 – 25 of 306) sorted by relevance

12345678910>>...13

/external/jemalloc/test/integration/
Dthread_tcache_enabled.c16 bool e0, e1; in thd_start() local
19 if ((err = mallctl("thread.tcache.enabled", &e0, &sz, NULL, 0))) { in thd_start()
28 if (e0) { in thd_start()
30 assert_d_eq(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz), in thd_start()
32 assert_true(e0, "tcache should be enabled"); in thd_start()
36 assert_d_eq(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz), 0, in thd_start()
38 assert_false(e0, "tcache should be disabled"); in thd_start()
41 assert_d_eq(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz), 0, in thd_start()
43 assert_true(e0, "tcache should be enabled"); in thd_start()
46 assert_d_eq(mallctl("thread.tcache.enabled", &e0, &sz, &e1, sz), 0, in thd_start()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/gas64/
Dgas-shift.hex66 e0
68 e0
71 e0
73 e0
76 e0
79 e0
83 e0
86 e0
88 e0
90 e0
[all …]
/external/fio/crc/
Dsha256.c38 #define e0(x) (ror32(x, 2) ^ ror32(x,13) ^ ror32(x,22)) macro
87 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha256_transform()
89 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha256_transform()
91 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha256_transform()
93 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha256_transform()
95 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha256_transform()
97 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha256_transform()
99 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; in sha256_transform()
101 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; in sha256_transform()
104 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha256_transform()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetWritesTester.java58 int oldCount = getMultiset().count(samples.e0); in testAddOccurrences()
60 oldCount, getMultiset().add(samples.e0, 2)); in testAddOccurrences()
62 oldCount + 2, getMultiset().count(samples.e0)); in testAddOccurrences()
68 getMultiset().add(samples.e0, 2); in testAddOccurrences_unsupported()
77 1, getMultiset().remove(samples.e0, 2)); in testRemove_occurrences_present()
79 getMultiset().contains(samples.e0)); in testRemove_occurrences_present()
100 int oldCount = getMultiset().count(samples.e0); in testRemove_occurrences_0()
102 oldCount, getMultiset().remove(samples.e0, 0)); in testRemove_occurrences_0()
108 getMultiset().remove(samples.e0, -1); in testRemove_occurrences_negative()
134 Multisets.immutableEntry(samples.e0, 1), iterator.next()); in testEntrySet_iterator()
[all …]
DMultisetReadsTester.java51 1, getMultiset().count(samples.e0)); in testCount_1()
58 3, getMultiset().count(samples.e0)); in testCount_3()
74 getMultiset().elementSet().contains(samples.e0)); in testElementSet_contains()
81 Multisets.immutableEntry(samples.e0, 1))); in testEntrySet_contains()
92 getMultiset().entrySet().contains(samples.e0)); in testEntrySet_contains_nonentry()
109 1 ^ samples.e0.hashCode(), getMultiset().entrySet().hashCode()); in testEntrySet_hashCode_size1()
119 other.add(samples.e0); in testEquals_differentSize()
127 other.remove(samples.e0); in testEquals_differentElements()
142 1 ^ samples.e0.hashCode(), getMultiset().hashCode()); in testHashCode_size1()
DMultisetIteratorTester.java42 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)), in testRemovingIteratorKnownOrder()
46 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2) in testRemovingIteratorKnownOrder()
55 new IteratorTester<E>(4, IteratorFeature.MODIFIABLE, Arrays.asList(samples.e0, samples.e1, in testRemovingIteratorUnknownOrder()
59 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2) in testRemovingIteratorUnknownOrder()
69 Arrays.asList(samples.e0, samples.e1, samples.e1, samples.e2)), in testIteratorKnownOrder()
73 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2) in testIteratorKnownOrder()
82 new IteratorTester<E>(4, IteratorFeature.UNMODIFIABLE, Arrays.asList(samples.e0, samples.e1, in testIteratorUnknownOrder()
86 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2) in testIteratorUnknownOrder()
DAbstractMultisetSetCountTester.java113 assertSetCount(samples.e0, 1); in assertOneToOne()
118 assertSetCount(samples.e0, 3); in assertThreeToThree()
196 assertSetCount(samples.e0, 3); in testSetCount_oneToThree_supported()
220 assertSetCount(samples.e0, 0); in testSetCount_oneToZero_supported()
227 assertSetCount(samples.e0, 0); in testSetCount_threeToZero_supported()
234 assertSetCount(samples.e0, 1); in testSetCount_threeToOne_supported()
240 assertSetCountDecreasingFailure(samples.e0, 0); in testSetCount_oneToZero_unsupported()
247 assertSetCountDecreasingFailure(samples.e0, 0); in testSetCount_threeToZero_unsupported()
254 assertSetCountDecreasingFailure(samples.e0, 1); in testSetCount_threeToOne_unsupported()
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DListAddAllTester.java41 getList().addAll(MinimalCollection.of(samples.e0))); in testAddAll_supportedAllPresent()
42 expectAdded(samples.e0); in testAddAll_supportedAllPresent()
49 getList().addAll(MinimalCollection.of(samples.e0)); in testAddAll_unsupportedAllPresent()
59 = MinimalCollection.of(samples.e0, samples.e1, samples.e0, samples.e1); in testAddAll_withDuplicates()
62 expectAdded(samples.e0, samples.e1, samples.e0, samples.e1); in testAddAll_withDuplicates()
DCollectionRemoveAllTester.java62 collection.removeAll(MinimalCollection.of(samples.e0))); in testRemoveAll_allPresent()
63 expectMissing(samples.e0); in testRemoveAll_allPresent()
70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3))); in testRemoveAll_somePresent()
71 expectMissing(samples.e0); in testRemoveAll_somePresent()
82 samples.e0, samples.e0, samples.e0, in testRemoveAll_somePresentLargeCollectionToRemove()
84 expectMissing(samples.e0); in testRemoveAll_somePresentLargeCollectionToRemove()
113 collection.removeAll(MinimalCollection.of(samples.e0)); in testRemoveAll_unsupportedPresent()
119 assertTrue(collection.contains(samples.e0)); in testRemoveAll_unsupportedPresent()
DListAddAllAtIndexTester.java48 getList().addAll(0, MinimalCollection.of(samples.e0))); in testAddAllAtIndex_supportedAllPresent()
49 expectAdded(0, samples.e0); in testAddAllAtIndex_supportedAllPresent()
56 getList().addAll(0, MinimalCollection.of(samples.e0)); in testAddAllAtIndex_unsupportedAllPresent()
67 getList().addAll(0, MinimalCollection.of(samples.e0, samples.e3))); in testAddAllAtIndex_supportedSomePresent()
68 expectAdded(0, samples.e0, samples.e3); in testAddAllAtIndex_supportedSomePresent()
75 getList().addAll(0, MinimalCollection.of(samples.e0, samples.e3)); in testAddAllAtIndex_unsupportedSomePresent()
103 = MinimalCollection.of(samples.e0, samples.e1, samples.e0, samples.e1); in testAddAllAtIndex_withDuplicates()
106 expectAdded(0, samples.e0, samples.e1, samples.e0, samples.e1); in testAddAllAtIndex_withDuplicates()
DMapNavigationTester.java97 assertNull(navigableMap.lowerEntry(samples.e0.getKey())); in testEmptyMapNearby()
98 assertNull(navigableMap.lowerKey(samples.e0.getKey())); in testEmptyMapNearby()
99 assertNull(navigableMap.floorEntry(samples.e0.getKey())); in testEmptyMapNearby()
100 assertNull(navigableMap.floorKey(samples.e0.getKey())); in testEmptyMapNearby()
101 assertNull(navigableMap.ceilingEntry(samples.e0.getKey())); in testEmptyMapNearby()
102 assertNull(navigableMap.ceilingKey(samples.e0.getKey())); in testEmptyMapNearby()
103 assertNull(navigableMap.higherEntry(samples.e0.getKey())); in testEmptyMapNearby()
104 assertNull(navigableMap.higherKey(samples.e0.getKey())); in testEmptyMapNearby()
138 assertNull(navigableMap.lowerEntry(samples.e0.getKey())); in testSingletonMapNearby()
139 assertNull(navigableMap.lowerKey(samples.e0.getKey())); in testSingletonMapNearby()
[all …]
DMapRemoveTester.java46 samples.e0.getValue(), getMap().remove(samples.e0.getKey())); in testRemove_present()
49 expectMissing(samples.e0); in testRemove_present()
76 getMap().remove(samples.e0.getKey()); in testRemove_unsupported()
82 samples.e0.getValue(), get(samples.e0.getKey())); in testRemove_unsupported()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
Dxdflong.hex2820 e0
2884 e0
2948 e0
3012 e0
3076 e0
3140 e0
3204 e0
3268 e0
3332 e0
3396 e0
[all …]
/external/owasp/sanitizer/src/tests/org/owasp/html/
DHtmlSanitizerFuzzerTest.java87 int e0 = s0 + (int) (rnd.nextInt(length - s0) * d); in testFuzzHtmlParser() local
88 if (e0 >= length) { e0 = s0 + 1; } in testFuzzHtmlParser()
96 int st = s0, et = e0; in testFuzzHtmlParser()
98 e0 = e1; in testFuzzHtmlParser()
103 if (e0 > s1) { e0 = s1; } in testFuzzHtmlParser()
113 for (i0 = e0; i0 < s1; ++i0, ++i1) { in testFuzzHtmlParser()
116 for (i0 = s0; i0 < e0; ++i0, ++i1) { in testFuzzHtmlParser()
/external/mesa3d/src/mesa/tnl_dd/
Dt_dd_unfilled.h37 GLuint e0, GLuint e1, GLuint e2 ) in TAG()
44 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
68 if (ef[e0]) POINT( v[0] ); in TAG()
76 if (ef[e0]) LINE( v[0], v[1] ); in TAG()
80 if (ef[e0]) LINE( v[0], v[1] ); in TAG()
100 GLuint e0, GLuint e1, in TAG()
108 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
136 if (ef[e0]) POINT( v[0] ); in TAG()
143 if (ef[e0]) LINE( v[0], v[1] ); in TAG()
Dt_dd_tritmp.h114 static void TAG(triangle)( struct gl_context *ctx, GLuint e0, GLuint e1, GLuint e2 ) in TAG()
126 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
193 VERT_SET_RGBA( v[0], vbcolor[e0] ); in TAG()
213 VERT_SET_SPEC( v[0], vbspec[e0] ); in TAG()
267 UNFILLED_TRI( ctx, GL_POINT, e0, e1, e2 ); in TAG()
270 UNFILLED_TRI( ctx, GL_POINT, e0, e1, e2 ); in TAG()
280 UNFILLED_TRI( ctx, GL_LINE, e0, e1, e2 ); in TAG()
283 UNFILLED_TRI( ctx, GL_LINE, e0, e1, e2 ); in TAG()
340 GLuint e0, GLuint e1, GLuint e2, GLuint e3 ) in TAG()
350 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
Dt_dd_unfilled.h37 GLuint e0, GLuint e1, GLuint e2 ) in TAG()
44 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
68 if (ef[e0]) POINT( v[0] ); in TAG()
76 if (ef[e0]) LINE( v[0], v[1] ); in TAG()
80 if (ef[e0]) LINE( v[0], v[1] ); in TAG()
100 GLuint e0, GLuint e1, in TAG()
108 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
136 if (ef[e0]) POINT( v[0] ); in TAG()
143 if (ef[e0]) LINE( v[0], v[1] ); in TAG()
Dt_dd_tritmp.h114 static void TAG(triangle)( struct gl_context *ctx, GLuint e0, GLuint e1, GLuint e2 ) in TAG()
126 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
193 VERT_SET_RGBA( v[0], vbcolor[e0] ); in TAG()
213 VERT_SET_SPEC( v[0], vbspec[e0] ); in TAG()
267 UNFILLED_TRI( ctx, GL_POINT, e0, e1, e2 ); in TAG()
270 UNFILLED_TRI( ctx, GL_POINT, e0, e1, e2 ); in TAG()
280 UNFILLED_TRI( ctx, GL_LINE, e0, e1, e2 ); in TAG()
283 UNFILLED_TRI( ctx, GL_LINE, e0, e1, e2 ); in TAG()
340 GLuint e0, GLuint e1, GLuint e2, GLuint e3 ) in TAG()
350 v[0] = (VERTEX *)GET_VERTEX(e0); in TAG()
[all …]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
Dshift.hex2 e0
4 e0
6 e0
8 e0
Darithsmall.hex7 e0
20 e0
23 e0
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSampleElements.java30 public final E e0; field in SampleElements
36 public SampleElements(E e0, E e1, E e2, E e3, E e4) { in SampleElements() argument
37 this.e0 = e0; in SampleElements()
68 Helpers.mapEntry(keys.e0, values.e0), in mapEntries()
/external/libcxx/test/language.support/support.exception/except.nested/
Dctor_copy.pass.cpp31 std::nested_exception e0; in main() local
32 std::nested_exception e = e0; in main()
43 std::nested_exception e0; in main() local
44 std::nested_exception e = e0; in main()
Dassign.pass.cpp31 std::nested_exception e0; in main() local
33 e = e0; in main()
44 std::nested_exception e0; in main() local
46 e = e0; in main()
/external/mesa3d/src/mesa/swrast_setup/
Dss_triangle.c52 GLuint e0,
65 GLuint e0, in _swsetup_edge_render_line_tri() argument
76 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); in _swsetup_edge_render_line_tri()
79 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); in _swsetup_edge_render_line_tri()
91 GLuint e0, in _swsetup_edge_render_point_tri() argument
98 if (ef[e0]) _swrast_Point( ctx, v0 ); in _swsetup_edge_render_point_tri()
109 GLuint e0, in _swsetup_render_tri() argument
119 SWvertex *v0 = &verts[e0]; in _swsetup_render_tri()
149 render(ctx, ef, e0, e1, e2, v0, v1, v2); in _swsetup_render_tri()
157 render(ctx, ef, e0, e1, e2, v0, v1, v2); in _swsetup_render_tri()
/external/chromium_org/third_party/mesa/src/src/mesa/swrast_setup/
Dss_triangle.c52 GLuint e0,
65 GLuint e0, in _swsetup_edge_render_line_tri() argument
76 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); in _swsetup_edge_render_line_tri()
79 if (ef[e0]) _swrast_Line( ctx, v0, v1 ); in _swsetup_edge_render_line_tri()
91 GLuint e0, in _swsetup_edge_render_point_tri() argument
98 if (ef[e0]) _swrast_Point( ctx, v0 ); in _swsetup_edge_render_point_tri()
109 GLuint e0, in _swsetup_render_tri() argument
119 SWvertex *v0 = &verts[e0]; in _swsetup_render_tri()
149 render(ctx, ef, e0, e1, e2, v0, v1, v2); in _swsetup_render_tri()
157 render(ctx, ef, e0, e1, e2, v0, v1, v2); in _swsetup_render_tri()

12345678910>>...13