/third_party/toybox/kconfig/ |
H A D | expr.c | 33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument 39 e->right.expr = e2; in expr_alloc_two() 53 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument 56 return e2; in expr_alloc_and() 57 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 60 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument 63 return e2; in expr_alloc_or() 64 return e2 ? expr_alloc_two(E_OR, e1, e2) in expr_alloc_or() 133 #define e2 global() macro 192 #undef e2 global() macro 194 expr_eq(struct expr *e1, struct expr *e2) expr_eq() argument 351 expr_join_or(struct expr *e1, struct expr *e2) expr_join_or() argument 415 expr_join_and(struct expr *e1, struct expr *e2) expr_join_and() argument 512 #define e2 expr_eliminate_dups1() macro 558 #undef e2 expr_eliminate_dups1() macro 564 #define e2 expr_eliminate_dups2() macro 614 #undef e2 expr_eliminate_dups2() macro 856 #define e2 expr_extract_eq() macro 879 #undef e2 expr_extract_eq() macro 884 struct expr *e1, *e2; expr_trans_compare() local [all...] |
/third_party/selinux/libsepol/tests/ |
H A D | test-ebitmap.c | 56 ebitmap_t e1, e2; in test_ebitmap_cmp() local 59 ebitmap_init(&e2); in test_ebitmap_cmp() 61 CU_ASSERT(ebitmap_cmp(&e1, &e2)); in test_ebitmap_cmp() 64 CU_ASSERT_FALSE(ebitmap_cmp(&e1, &e2)); in test_ebitmap_cmp() 65 CU_ASSERT_EQUAL(ebitmap_set_bit(&e2, 10, 1), 0); in test_ebitmap_cmp() 66 CU_ASSERT(ebitmap_cmp(&e1, &e2)); in test_ebitmap_cmp() 69 CU_ASSERT_FALSE(ebitmap_cmp(&e1, &e2)); in test_ebitmap_cmp() 70 CU_ASSERT_EQUAL(ebitmap_set_bit(&e2, 63, 1), 0); in test_ebitmap_cmp() 71 CU_ASSERT(ebitmap_cmp(&e1, &e2)); in test_ebitmap_cmp() 74 CU_ASSERT_FALSE(ebitmap_cmp(&e1, &e2)); in test_ebitmap_cmp() 258 ebitmap_t e1, e2, e3, e4, e5, e6; test_ebitmap_init_range() local 289 ebitmap_t e1, e2, e3, e4; test_ebitmap_or() local 387 ebitmap_t e1, e2, e12, e3, e4; test_ebitmap_and() local 542 ebitmap_t e1, e2, e3, e4; test_ebitmap_xor() local 667 ebitmap_t e1, e2, e3, e4; test_ebitmap_not() local 796 ebitmap_t e1, e2, e12, e3, e4; test_ebitmap_andnot() local 976 ebitmap_t e1, e2, dst_cpy, dst_or, dst_and, dst_xor1, dst_xor2, dst_not1, dst_not2, dst_andnot; test_ebitmap__random_impl() local [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | sourceMapValidationEnums.js | 7 enum e2 { 23 var e2;
variable 24 (function (e2) {
25 e2[e2["x"] = 10] = "x";
26 e2[e2["y"] = 10] = "y";
27 e2[e2["z"] = 11] = "z";
28 e2[e [all...] |
H A D | augmentedTypesEnum2.js | 12 enum e2 { One }; // error 13 class e2 { // error 30 var e2;
variable 31 (function (e2) {
32 e2[e2["One"] = 0] = "One";
33 })(e2 || (e2 = {}));
35 var e2 = /** @class */ (function () {
36 function e2() {
[all...] |
H A D | es6ModuleEnumDeclaration.js | 7 enum e2 { 13 var y = e2.x; 26 var y1 = e2.x; 42 var y1 = e2.x; 55 var e2;
variable 56 (function (e2) {
57 e2[e2["x"] = 0] = "x";
58 e2[e2[" [all...] |
H A D | es6ModuleConstEnumDeclaration2.js | 7 const enum e2 { 13 var y = e2.x; 26 var y1 = e2.x; 42 var y1 = e2.x; 55 var e2;
variable 56 (function (e2) {
57 e2[e2["x"] = 0] = "x";
58 e2[e2[" [all...] |
H A D | declFileEnums.js | 8 enum e2 { 45 var e2;
variable 46 (function (e2) {
47 e2[e2["a"] = 10] = "a";
48 e2[e2["b"] = 12] = "b";
49 e2[e2["c"] = 10] = "c";
50 })(e2 || (e [all...] |
H A D | exportsAndImports4.js | 15 import e1, * as e2 from "./t1"; 17 e2.default; 32 import e1, * as e2 from "./t1"; 34 e2.default; 38 export { a, b, c, d, e1, e2, f1, f2 }; 48 exports.f2 = exports.f1 = exports.e2 = exports.e1 = exports.d = exports.c = exports.b = exports.a = void 0;
61 var t1_3 = require("./t1"), e2 = t1_3;
63 exports.e2 = e2;
65 e2 [all...] |
H A D | augmentedTypesEnum.js | 7 enum e2 { One } // error 8 function e2() { } // error function 46 var e2;
variable 47 (function (e2) {
48 e2[e2["One"] = 0] = "One";
49 })(e2 || (e2 = {})); // error
50 function e2() { } // error
|
H A D | memberVariableDeclarations1.js | 26 var e2: Employee2; variable 27 e1 = e2; 28 e2 = e1;
49 var e2;
variable 50 e1 = e2;
51 e2 = e1;
|
H A D | unionTypeReduction.js | 14 var e2 = i2 || i3; // Type of e2 immediately reduced to I3 variable 17 var r2 = e2(); 23 var e2 = i2 || i3; // Type of e2 immediately reduced to I3
variable 25 var r2 = e2();
|
H A D | contextualSignatureInstantiation1.js | 7 var e2 = <K>(x: string, y?: K) => x.length; variable 8 var r100 = map2(e2); // type arg inference should fail for S since a generic lambda is not inferentially typed. Falls back to { length: number }
13 var e2 = function (x, y) { return x.length; };
function 14 var r100 = map2(e2); // type arg inference should fail for S since a generic lambda is not inferentially typed. Falls back to { length: number }
|
/third_party/cups-filters/cupsfilters/ |
H A D | dither.c | 56 e0,e1,e2; /* Error values */ in cupsDitherLine() local 91 * e1 e2 == p1[-1] p1[0] in cupsDitherLine() 98 e2 = 0; in cupsDitherLine() 117 e1 = e2; in cupsDitherLine() 118 e2 = 0; in cupsDitherLine() 163 * 3/16 5/16 1/16 = e1 e2 in cupsDitherLine() 169 e1 = e2 + 5 * errval1; in cupsDitherLine() 173 e2 = errval0; in cupsDitherLine() 183 * e2 e1 == p1[0] p1[1] in cupsDitherLine() 192 e2 in cupsDitherLine() [all...] |
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
H A D | floatscan.c | 73 int e2; in decfloat() local 163 e2 = 0; in decfloat() 199 e2 -= 29; in decfloat() 238 e2 += sh; in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin; in decfloat() 300 if ((e2+LDBL_MANT_DIG & INT_MAX) > emax-5) { in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat() 305 e2++; in decfloat() 307 if (e2 in decfloat() 323 long long e2 = 0; hexfloat() local [all...] |
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
H A D | floatscan.c | 73 int e2;
in decfloat() local 163 e2 = 0;
in decfloat() 199 e2 -= 29;
in decfloat() 238 e2 += sh;
in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) {
in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin;
in decfloat() 300 if (((e2+LDBL_MANT_DIG) & INT_MAX) > emax-5) {
in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin)
in decfloat() 305 e2++;
in decfloat() 307 if (e2 in decfloat() 323 long long e2 = 0; hexfloat() local [all...] |
/third_party/musl/porting/uniproton/kernel/src/internal/ |
H A D | floatscan.c | 73 int e2;
in decfloat() local 163 e2 = 0;
in decfloat() 199 e2 -= 29;
in decfloat() 238 e2 += sh;
in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) {
in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin;
in decfloat() 300 if (((e2+LDBL_MANT_DIG) & INT_MAX) > emax-5) {
in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin)
in decfloat() 305 e2++;
in decfloat() 307 if (e2 in decfloat() 323 long long e2 = 0; hexfloat() local [all...] |
/third_party/musl/src/internal/ |
H A D | floatscan.c | 73 int e2; in decfloat() local 163 e2 = 0; in decfloat() 199 e2 -= 29; in decfloat() 238 e2 += sh; in decfloat() 266 if (bits > LDBL_MANT_DIG+e2-emin) { in decfloat() 267 bits = LDBL_MANT_DIG+e2-emin; in decfloat() 300 if ((e2+LDBL_MANT_DIG & INT_MAX) > emax-5) { in decfloat() 302 if (denormal && bits==LDBL_MANT_DIG+e2-emin) in decfloat() 305 e2++; in decfloat() 307 if (e2 in decfloat() 323 long long e2 = 0; hexfloat() local [all...] |
/third_party/selinux/libsepol/include/sepol/policydb/ |
H A D | ebitmap.h | 83 extern int ebitmap_cmp(const ebitmap_t * e1, const ebitmap_t * e2); 84 extern int ebitmap_or(ebitmap_t * dst, const ebitmap_t * e1, const ebitmap_t * e2); 86 extern int ebitmap_and(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2); 87 extern int ebitmap_xor(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2); 89 extern int ebitmap_andnot(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2, unsigned int maxbit); 91 extern int ebitmap_hamming_distance(const ebitmap_t * e1, const ebitmap_t * e2); 93 extern int ebitmap_contains(const ebitmap_t * e1, const ebitmap_t * e2); 94 extern int ebitmap_match_any(const ebitmap_t *e1, const ebitmap_t *e2);
|
/third_party/rust/crates/bitflags/src/ |
H A D | lib.rs | 34 //! let e2 = Flags::B | Flags::C; 35 //! assert_eq!((e1 | e2), Flags::ABC); // union 36 //! assert_eq!((e1 & e2), Flags::C); // intersection 37 //! assert_eq!((e1 - e2), Flags::A); // set difference 38 //! assert_eq!(!e2, Flags::A); // set complement 304 /// let e2 = Flags::B | Flags::C; 305 /// assert_eq!((e1 | e2), Flags::ABC); // union 306 /// assert_eq!((e1 & e2), Flags::C); // intersection 307 /// assert_eq!((e1 - e2), Flags::A); // set difference 308 /// assert_eq!(!e2, Flag [all...] |
/third_party/python/Lib/test/ |
H A D | test_configparser.py | 1724 e2 = pickle.loads(pickled) 1725 self.assertEqual(e1.message, e2.message) 1726 self.assertEqual(repr(e1), repr(e2)) 1733 e2 = pickle.loads(pickled) 1734 self.assertEqual(e1.message, e2.message) 1735 self.assertEqual(e1.args, e2.args) 1736 self.assertEqual(e1.section, e2.section) 1737 self.assertEqual(repr(e1), repr(e2)) 1744 e2 = pickle.loads(pickled) 1745 self.assertEqual(e1.message, e2 [all...] |
/third_party/selinux/libsepol/src/ |
H A D | ebitmap.c | 18 int ebitmap_or(ebitmap_t * dst, const ebitmap_t * e1, const ebitmap_t * e2) in ebitmap_or() argument 26 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, const ebitmap_t *e1, const ebitmap_t *e2) in ebitmap_and() argument 82 n2 = e2->node; in ebitmap_and() 117 int ebitmap_xor(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2) in ebitmap_xor() argument 127 n2 = e2->node; in ebitmap_xor() 216 int ebitmap_andnot(ebitmap_t *dst, const ebitmap_t *e1, const ebitmap_t *e2, unsigned int maxbit) in ebitmap_andnot() argument 221 rc = ebitmap_not(&e3, e2, maxbi in ebitmap_andnot() 242 ebitmap_hamming_distance(const ebitmap_t * e1, const ebitmap_t * e2) ebitmap_hamming_distance() argument 257 ebitmap_cmp(const ebitmap_t * e1, const ebitmap_t * e2) ebitmap_cmp() argument 307 ebitmap_contains(const ebitmap_t * e1, const ebitmap_t * e2) ebitmap_contains() argument 334 ebitmap_match_any(const ebitmap_t *e1, const ebitmap_t *e2) ebitmap_match_any() argument [all...] |
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest_pred_impl.h | 119 const char* e2, Pred pred, const T1& v1, in AssertPred2Helper() 124 << pred_text << "(" << e1 << ", " << e2 in AssertPred2Helper() 128 << e2 << " evaluates to " << ::testing::PrintToString(v2); in AssertPred2Helper() 156 const char* e2, const char* e3, Pred pred, in AssertPred3Helper() 161 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 in AssertPred3Helper() 165 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred3Helper() 195 const char* e2, const char* e3, in AssertPred4Helper() 201 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred4Helper() 205 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred4Helper() 237 const char* e2, cons in AssertPred5Helper() 118 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) AssertPred2Helper() argument 155 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) AssertPred3Helper() argument 194 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) AssertPred4Helper() argument 236 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) AssertPred5Helper() argument [all...] |
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest_pred_impl.h | 119 const char* e2, Pred pred, const T1& v1, in AssertPred2Helper() 124 << pred_text << "(" << e1 << ", " << e2 in AssertPred2Helper() 128 << e2 << " evaluates to " << ::testing::PrintToString(v2); in AssertPred2Helper() 156 const char* e2, const char* e3, Pred pred, in AssertPred3Helper() 161 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 in AssertPred3Helper() 165 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred3Helper() 195 const char* e2, const char* e3, in AssertPred4Helper() 201 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred4Helper() 205 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred4Helper() 237 const char* e2, cons in AssertPred5Helper() 118 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) AssertPred2Helper() argument 155 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) AssertPred3Helper() argument 194 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) AssertPred4Helper() argument 236 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) AssertPred5Helper() argument [all...] |
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest_pred_impl.h | 132 const char* e2, in AssertPred2Helper() 139 << pred_text << "(" << e1 << ", " << e2 in AssertPred2Helper() 143 << e2 << " evaluates to " << ::testing::PrintToString(v2); in AssertPred2Helper() 182 const char* e2, in AssertPred3Helper() 191 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 in AssertPred3Helper() 195 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred3Helper() 238 const char* e2, in AssertPred4Helper() 249 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred4Helper() 253 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred4Helper() 300 const char* e2, in AssertPred5Helper() 130 AssertPred2Helper(const char* pred_text, const char* e1, const char* e2, Pred pred, const T1& v1, const T2& v2) AssertPred2Helper() argument 180 AssertPred3Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, Pred pred, const T1& v1, const T2& v2, const T3& v3) AssertPred3Helper() argument 236 AssertPred4Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4) AssertPred4Helper() argument 298 AssertPred5Helper(const char* pred_text, const char* e1, const char* e2, const char* e3, const char* e4, const char* e5, Pred pred, const T1& v1, const T2& v2, const T3& v3, const T4& v4, const T5& v5) AssertPred5Helper() argument [all...] |
/third_party/skia/third_party/externals/freetype/src/raster/ |
H A D | ftraster.c | 990 Int e1, e2, f1, f2, size; /* XXX: is `Short' sufficient? */ in Line_Up() local 1019 e2 = (Int)TRUNC( maxy ); in Line_Up() 1024 e2 = (Int)TRUNC( y2 ); in Line_Up() 1030 if ( e1 == e2 ) in Line_Up() 1053 size = e2 - e1 + 1; in Line_Up() 1184 Long y1, y2, e, e2, e0; in Bezier_Up() local 1199 e2 = FLOOR( y2 ); in Bezier_Up() 1201 if ( e2 > maxy ) in Bezier_Up() 1202 e2 = maxy; in Bezier_Up() 1234 if ( e2 < in Bezier_Up() 2209 Long e1, e2; Vertical_Sweep_Span() local 2291 Long e1, e2, pxl; Vertical_Sweep_Drop() local 2472 Long e1, e2; Horizontal_Sweep_Span() local 2544 Long e1, e2, pxl; Horizontal_Sweep_Drop() local 2680 Long x1, x2, xs, e1, e2; Draw_Sweep() local [all...] |