Home
last modified time | relevance | path

Searched refs:e2 (Results 1 – 25 of 416) sorted by relevance

12345678910>>...17

/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
Dfma.hex2 e2
7 e2
12 e2
17 e2
22 e2
27 e2
32 e2
37 e2
42 e2
47 e2
[all …]
Daes.hex37 e2
42 e2
47 e2
52 e2
57 e2
62 e2
82 e2
87 e2
92 e2
97 e2
[all …]
Davx.hex793 e2
798 e2
803 e2
808 e2
813 e2
818 e2
823 e2
828 e2
2407 e2
2412 e2
[all …]
Dloopadsz.hex2 e2
5 e2
8 e2
11 e2
/external/chromium_org/sandbox/linux/seccomp-bpf/
Derrorcode_unittest.cc21 ErrorCode e2(EPERM); in SANDBOX_TEST() local
22 SANDBOX_ASSERT(e2.err() == SECCOMP_RET_ERRNO + EPERM); in SANDBOX_TEST()
36 ErrorCode e2 = sandbox.Trap(NULL, "a"); in SANDBOX_TEST() local
38 (e2.err() & SECCOMP_RET_DATA)); in SANDBOX_TEST()
43 ErrorCode e2(ErrorCode::ERR_ALLOWED); in SANDBOX_TEST() local
45 SANDBOX_ASSERT(e1.Equals(e2)); in SANDBOX_TEST()
46 SANDBOX_ASSERT(e2.Equals(e1)); in SANDBOX_TEST()
63 ErrorCode e2(ErrorCode::ERR_ALLOWED); in SANDBOX_TEST() local
65 SANDBOX_ASSERT(!e1.LessThan(e2)); in SANDBOX_TEST()
66 SANDBOX_ASSERT(!e2.LessThan(e1)); in SANDBOX_TEST()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DImmutableList.java64 public static <E> ImmutableList<E> of(E e1, E e2) { in of() argument
66 ImmutableList.<E>nullCheckedList(e1, e2)); in of()
69 public static <E> ImmutableList<E> of(E e1, E e2, E e3) { in of() argument
71 ImmutableList.<E>nullCheckedList(e1, e2, e3)); in of()
74 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of() argument
76 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4)); in of()
79 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
81 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5)); in of()
84 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of() argument
86 ImmutableList.<E>nullCheckedList(e1, e2, e3, e4, e5, e6)); in of()
[all …]
DImmutableSet.java62 public static <E> ImmutableSet<E> of(E e1, E e2) { in of() argument
63 return create(e1, e2); in of()
67 public static <E> ImmutableSet<E> of(E e1, E e2, E e3) { in of() argument
68 return create(e1, e2, e3); in of()
72 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4) { in of() argument
73 return create(e1, e2, e3, e4); in of()
77 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
78 return create(e1, e2, e3, e4, e5); in of()
82 public static <E> ImmutableSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, in of() argument
86 Collections.addAll(all, e1, e2, e3, e4, e5, e6); in of()
/external/libsepol/src/
Debitmap.c18 int ebitmap_or(ebitmap_t * dst, const ebitmap_t * e1, const ebitmap_t * e2) in ebitmap_or() argument
25 n2 = e2->node; in ebitmap_or()
57 dst->highbit = (e1->highbit > e2->highbit) ? e1->highbit : e2->highbit; in ebitmap_or()
74 int ebitmap_and(ebitmap_t *dst, ebitmap_t *e1, ebitmap_t *e2) in ebitmap_and() argument
76 unsigned int i, length = min(ebitmap_length(e1), ebitmap_length(e2)); in ebitmap_and()
79 if (ebitmap_get_bit(e1, i) && ebitmap_get_bit(e2, i)) { in ebitmap_and()
88 int ebitmap_xor(ebitmap_t *dst, ebitmap_t *e1, ebitmap_t *e2) in ebitmap_xor() argument
90 unsigned int i, length = max(ebitmap_length(e1), ebitmap_length(e2)); in ebitmap_xor()
93 int val = ebitmap_get_bit(e1, i) ^ ebitmap_get_bit(e2, i); in ebitmap_xor()
114 int ebitmap_andnot(ebitmap_t *dst, ebitmap_t *e1, ebitmap_t *e2, unsigned int maxbit) in ebitmap_andnot() argument
[all …]
/external/guava/guava/src/com/google/common/collect/
DImmutableList.java88 public static <E> ImmutableList<E> of(E e1, E e2) { in of() argument
89 return construct(e1, e2); in of()
97 public static <E> ImmutableList<E> of(E e1, E e2, E e3) { in of() argument
98 return construct(e1, e2, e3); in of()
106 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4) { in of() argument
107 return construct(e1, e2, e3, e4); in of()
115 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
116 return construct(e1, e2, e3, e4, e5); in of()
124 public static <E> ImmutableList<E> of(E e1, E e2, E e3, E e4, E e5, E e6) { in of() argument
125 return construct(e1, e2, e3, e4, e5, e6); in of()
[all …]
DImmutableSortedMultisetFauxverideShim.java72 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2) { in of() argument
86 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3) { in of() argument
100 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4) { in of() argument
115 public static <E> ImmutableSortedMultiset<E> of(E e1, E e2, E e3, E e4, E e5) { in of() argument
132 E e2, in of() argument
DImmutableSortedSetFauxverideShim.java74 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2) { in of() argument
87 @Deprecated public static <E> ImmutableSortedSet<E> of(E e1, E e2, E e3) { in of() argument
102 E e1, E e2, E e3, E e4) { in of() argument
117 E e1, E e2, E e3, E e4, E e5) { in of() argument
132 E e1, E e2, E e3, E e4, E e5, E e6, E... remaining) { in of() argument
/external/qemu/target-i386/
Dop_helper.c157 static inline unsigned int get_seg_limit(uint32_t e1, uint32_t e2) in get_seg_limit() argument
160 limit = (e1 & 0xffff) | (e2 & 0x000f0000); in get_seg_limit()
161 if (e2 & DESC_G_MASK) in get_seg_limit()
166 static inline uint32_t get_seg_base(uint32_t e1, uint32_t e2) in get_seg_base() argument
168 return ((e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000)); in get_seg_base()
171 static inline void load_seg_cache_raw_dt(SegmentCache *sc, uint32_t e1, uint32_t e2) in load_seg_cache_raw_dt() argument
173 sc->base = get_seg_base(e1, e2); in load_seg_cache_raw_dt()
174 sc->limit = get_seg_limit(e1, e2); in load_seg_cache_raw_dt()
175 sc->flags = e2; in load_seg_cache_raw_dt()
224 uint32_t e1, e2; in tss_load_seg() local
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
DIntersection.java99 e2 = vars.vect6; in intersect() local
116 tmp0.subtract(tmp2, e2); // tri edge 2 in intersect()
198 fex = FastMath.abs(e2.x); in intersect()
199 fey = FastMath.abs(e2.y); in intersect()
200 fez = FastMath.abs(e2.z); in intersect()
203 p0 = e2.z * tmp0.y - e2.y * tmp0.z; in intersect()
204 p1 = e2.z * tmp1.y - e2.y * tmp1.z; in intersect()
214 p0 = -e2.z * tmp0.x + e2.x * tmp0.z; in intersect()
215 p1 = -e2.z * tmp1.x + e2.x * tmp1.z; in intersect()
225 p1 = e2.y * tmp1.x - e2.x * tmp1.y; in intersect()
[all …]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
Dt_dd_unfilled.h37 GLuint e0, GLuint e1, GLuint e2 ) in TAG()
46 v[2] = (VERTEX *)GET_VERTEX(e2); in TAG()
70 if (ef[e2]) POINT( v[2] ); in TAG()
75 if (ef[e2]) LINE( v[2], v[0] ); in TAG()
82 if (ef[e2]) LINE( v[2], v[0] ); in TAG()
101 GLuint e2, GLuint e3 ) in TAG()
110 v[2] = (VERTEX *)GET_VERTEX(e2); in TAG()
138 if (ef[e2]) POINT( v[2] ); in TAG()
145 if (ef[e2]) LINE( v[2], v[3] ); in TAG()
/external/mesa3d/src/mesa/tnl_dd/
Dt_dd_unfilled.h37 GLuint e0, GLuint e1, GLuint e2 ) in TAG()
46 v[2] = (VERTEX *)GET_VERTEX(e2); in TAG()
70 if (ef[e2]) POINT( v[2] ); in TAG()
75 if (ef[e2]) LINE( v[2], v[0] ); in TAG()
82 if (ef[e2]) LINE( v[2], v[0] ); in TAG()
101 GLuint e2, GLuint e3 ) in TAG()
110 v[2] = (VERTEX *)GET_VERTEX(e2); in TAG()
138 if (ef[e2]) POINT( v[2] ); in TAG()
145 if (ef[e2]) LINE( v[2], v[3] ); in TAG()
/external/libsepol/include/sepol/policydb/
Debitmap.h76 extern int ebitmap_cmp(const ebitmap_t * e1, const ebitmap_t * e2);
77 extern int ebitmap_or(ebitmap_t * dst, const ebitmap_t * e1, const ebitmap_t * e2);
79 extern int ebitmap_and(ebitmap_t *dst, ebitmap_t *e1, ebitmap_t *e2);
80 extern int ebitmap_xor(ebitmap_t *dst, ebitmap_t *e1, ebitmap_t *e2);
82 extern int ebitmap_andnot(ebitmap_t *dst, ebitmap_t *e1, ebitmap_t *e2, unsigned int maxbit);
84 extern int ebitmap_hamming_distance(ebitmap_t * e1, ebitmap_t * e2);
86 extern int ebitmap_contains(const ebitmap_t * e1, const ebitmap_t * e2);
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
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()
56 samples.e1, samples.e2), IteratorTester.KnownOrder.UNKNOWN_ORDER) { 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()
83 samples.e1, samples.e2), IteratorTester.KnownOrder.UNKNOWN_ORDER) { in testIteratorUnknownOrder()
86 return getSubjectGenerator().create(samples.e0, samples.e1, samples.e1, samples.e2) in testIteratorUnknownOrder()
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
Dp1.cpp15 template<typename T> enum A<T>::E : T { e1, e2 }; enumerator
25 A<char>::E a2 = A<char>::e2;
27 template<typename T> typename A<T>::E A<T>::h() { return e2; } in h()
41 template<typename T> enum class B<T>::E { e1, e2 }; enumerator
44 B<char>::E b2 = B<char>::E::e2;
46 template<typename T> typename B<T>::E B<T>::g() { return e2; } in g()
94 template<> enum class D<int>::E { e2 }; enumerator
95 D<int>::E d2 = D<int>::E::e2;
97 D<char>::E d4 = D<char>::E::e2; // expected-error {{no member named 'e2'}}
/external/chromium_org/content/renderer/
Ddisambiguation_popup_helper.cc50 void TrimEdges(int *e1, int *e2, int max_combined) { in TrimEdges() argument
51 if (*e1 + *e2 <= max_combined) in TrimEdges()
54 if (std::min(*e1, *e2) * 2 >= max_combined) in TrimEdges()
55 *e1 = *e2 = max_combined / 2; in TrimEdges()
56 else if (*e1 > *e2) in TrimEdges()
57 *e1 = max_combined - *e2; in TrimEdges()
59 *e2 = max_combined - *e1; in TrimEdges()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSetTest.java50 @Override protected Set<String> of(String e1, String e2) { in of() argument
51 return ImmutableSet.of(e1, e2); in of()
54 @Override protected Set<String> of(String e1, String e2, String e3) { in of() argument
55 return ImmutableSet.of(e1, e2, e3); in of()
59 String e1, String e2, String e3, String e4) { in of() argument
60 return ImmutableSet.of(e1, e2, e3, e4); in of()
64 String e1, String e2, String e3, String e4, String e5) { in of() argument
65 return ImmutableSet.of(e1, e2, e3, e4, e5); in of()
68 @Override protected Set<String> of(String e1, String e2, String e3, in of() argument
70 return ImmutableSet.of(e1, e2, e3, e4, e5, e6, rest); in of()
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSampleElements.java32 public final E e2; field in SampleElements
36 public SampleElements(E e0, E e1, E e2, E e3, E e4) { in SampleElements() argument
39 this.e2 = e2; in SampleElements()
70 Helpers.mapEntry(keys.e2, values.e2), in mapEntries()
/external/valgrind/main/VEX/priv/
Dir_opt.c396 IRExpr *e1, *e2, *e3, *e4, *e5; in flatten_Stmt() local
415 e2 = flatten_Expr(bb, puti->data); in flatten_Stmt()
416 puti2 = mkIRPutI(puti->descr, e1, puti->bias, e2); in flatten_Stmt()
432 e2 = flatten_Expr(bb, st->Ist.Store.data); in flatten_Stmt()
433 addStmtToIRSB(bb, IRStmt_Store(st->Ist.Store.end, e1,e2)); in flatten_Stmt()
438 e2 = cas->expdHi ? flatten_Expr(bb, cas->expdHi) : NULL; in flatten_Stmt()
443 e1, e2, e3, e4, e5 ); in flatten_Stmt()
448 e2 = st->Ist.LLSC.storedata in flatten_Stmt()
452 st->Ist.LLSC.result, e1, e2)); in flatten_Stmt()
476 e2 = flatten_Expr(bb, st->Ist.AbiHint.nia); in flatten_Stmt()
[all …]
/external/chromium/testing/gtest/include/gtest/
Dgtest_pred_impl.h131 const char* e2, in AssertPred2Helper() argument
139 << e2 << ") evaluates to false, where" in AssertPred2Helper()
141 << "\n" << e2 << " evaluates to " << v2; in AssertPred2Helper()
180 const char* e2, in AssertPred3Helper() argument
190 << e2 << ", " in AssertPred3Helper()
193 << "\n" << e2 << " evaluates to " << v2 in AssertPred3Helper()
236 const char* e2, in AssertPred4Helper() argument
248 << e2 << ", " in AssertPred4Helper()
252 << "\n" << e2 << " evaluates to " << v2 in AssertPred4Helper()
299 const char* e2, in AssertPred5Helper() argument
[all …]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
Dgtest_pred_impl.h131 const char* e2, in AssertPred2Helper() argument
139 << e2 << ") evaluates to false, where" in AssertPred2Helper()
141 << "\n" << e2 << " evaluates to " << v2; in AssertPred2Helper()
180 const char* e2, in AssertPred3Helper() argument
190 << e2 << ", " in AssertPred3Helper()
193 << "\n" << e2 << " evaluates to " << v2 in AssertPred3Helper()
236 const char* e2, in AssertPred4Helper() argument
248 << e2 << ", " in AssertPred4Helper()
252 << "\n" << e2 << " evaluates to " << v2 in AssertPred4Helper()
299 const char* e2, in AssertPred5Helper() argument
[all …]
/external/gtest/include/gtest/
Dgtest_pred_impl.h131 const char* e2, in AssertPred2Helper() argument
139 << e2 << ") evaluates to false, where" in AssertPred2Helper()
141 << "\n" << e2 << " evaluates to " << v2; in AssertPred2Helper()
180 const char* e2, in AssertPred3Helper() argument
190 << e2 << ", " in AssertPred3Helper()
193 << "\n" << e2 << " evaluates to " << v2 in AssertPred3Helper()
236 const char* e2, in AssertPred4Helper() argument
248 << e2 << ", " in AssertPred4Helper()
252 << "\n" << e2 << " evaluates to " << v2 in AssertPred4Helper()
299 const char* e2, in AssertPred5Helper() argument
[all …]

12345678910>>...17