Home
last modified time | relevance | path

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

12345678910>>...13

/freebsd/contrib/libarchive/libarchive/test/
H A Dtest_link_resolver.c29 struct archive_entry *entry, *e2; in test_linkify_tar() local
44 archive_entry_linkify(resolver, &entry, &e2); in test_linkify_tar()
47 assert(e2 == NULL); in test_linkify_tar()
55 archive_entry_linkify(resolver, &entry, &e2); in test_linkify_tar()
57 assert(e2 == NULL); in test_linkify_tar()
63 archive_entry_linkify(resolver, &entry, &e2); in test_linkify_tar()
64 assert(e2 == NULL); in test_linkify_tar()
76 archive_entry_linkify(resolver, &entry, &e2); in test_linkify_tar()
78 assert(e2 == NULL); in test_linkify_tar()
83 archive_entry_linkify(resolver, &entry, &e2); in test_linkify_tar()
[all …]
H A Dtest_entry.c59 struct archive_entry *e, *e2; in DEFINE_TEST() local
525 e2 = archive_entry_clone(e); in DEFINE_TEST()
528 assertEqualInt(archive_entry_atime(e2), 13579); in DEFINE_TEST()
529 assertEqualInt(archive_entry_atime_nsec(e2), 24680); in DEFINE_TEST()
530 assertEqualInt(archive_entry_birthtime(e2), 13779); in DEFINE_TEST()
531 assertEqualInt(archive_entry_birthtime_nsec(e2), 24990); in DEFINE_TEST()
532 assertEqualInt(archive_entry_ctime(e2), 13580); in DEFINE_TEST()
533 assertEqualInt(archive_entry_ctime_nsec(e2), 24681); in DEFINE_TEST()
534 assertEqualInt(archive_entry_dev(e2), 235); in DEFINE_TEST()
538 assertEqualInt(archive_entry_gid(e2), 204); in DEFINE_TEST()
[all …]
/freebsd/contrib/lua/src/
H A Dlcode.c528 static void freeexps (FuncState *fs, expdesc *e1, expdesc *e2) { in freeexps() argument
530 int r2 = (e2->k == VNONRELOC) ? e2->u.info : -1; in freeexps()
1345 const expdesc *e2) { in constfolding() argument
1347 if (!tonumeral(e1, &v1) || !tonumeral(e2, &v2) || !validop(op, &v1, &v2)) in constfolding()
1414 static void finishbinexpval (FuncState *fs, expdesc *e1, expdesc *e2, in finishbinexpval() argument
1419 freeexps(fs, e1, e2); in finishbinexpval()
1433 expdesc *e1, expdesc *e2, int line) { in codebinexpval() argument
1435 int v2 = luaK_exp2anyreg(fs, e2); /* make sure 'e2' is in a register */ in codebinexpval()
1440 finishbinexpval(fs, e1, e2, op, v2, 0, line, OP_MMBIN, binopr2TM(opr)); in codebinexpval()
1448 expdesc *e1, expdesc *e2, int flip, int line, in codebini() argument
[all …]
/freebsd/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_main.c553 ng_l2cap_node_con_ep *e2 = NULL; in ng_l2cap_default_rcvmsg() local
564 sizeof(*e1) + n * sizeof(*e2), M_NOWAIT); in ng_l2cap_default_rcvmsg()
571 e2 = (ng_l2cap_node_con_ep *)(e1 + 1); in ng_l2cap_default_rcvmsg()
576 e2->state = con->state; in ng_l2cap_default_rcvmsg()
578 e2->flags = con->flags; in ng_l2cap_default_rcvmsg()
580 e2->flags |= NG_L2CAP_CON_TX; in ng_l2cap_default_rcvmsg()
582 e2->flags |= NG_L2CAP_CON_RX; in ng_l2cap_default_rcvmsg()
584 e2->pending = con->pending; in ng_l2cap_default_rcvmsg()
586 e2->con_handle = con->con_handle; in ng_l2cap_default_rcvmsg()
587 bcopy(&con->remote, &e2->remote, in ng_l2cap_default_rcvmsg()
[all …]
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.c715 static int constfolding (OpCode op, expdesc *e1, expdesc *e2) { in constfolding() argument
717 if (!isnumeral(e1) || !isnumeral(e2)) return 0; in constfolding()
718 if ((op == OP_DIV || op == OP_MOD) && e2->u.nval == 0) in constfolding()
723 if (op == OP_DIV && e1->u.nval == INT64_MIN && e2->u.nval == -1) in constfolding()
725 r = luaO_arith(op - OP_ADD + LUA_OPADD, e1->u.nval, e2->u.nval); in constfolding()
732 expdesc *e1, expdesc *e2, int line) { in codearith() argument
733 if (constfolding(op, e1, e2)) in codearith()
736 int o2 = (op != OP_UNM && op != OP_LEN) ? luaK_exp2RK(fs, e2) : 0; in codearith()
740 freeexp(fs, e2); in codearith()
743 freeexp(fs, e2); in codearith()
[all …]
/freebsd/sys/netgraph/bluetooth/hci/
H A Dng_hci_main.c466 ng_hci_node_neighbor_cache_entry_ep *e2 = NULL; in ng_hci_default_rcvmsg() local
484 NG_MKRESPONSE(rsp, msg, sizeof(*e1) + s * sizeof(*e2), in ng_hci_default_rcvmsg()
492 e2 = (ng_hci_node_neighbor_cache_entry_ep *)(e1 + 1); in ng_hci_default_rcvmsg()
497 e2->page_scan_rep_mode = n->page_scan_rep_mode; in ng_hci_default_rcvmsg()
498 e2->page_scan_mode = n->page_scan_mode; in ng_hci_default_rcvmsg()
499 e2->clock_offset = n->clock_offset; in ng_hci_default_rcvmsg()
500 e2->addrtype = in ng_hci_default_rcvmsg()
502 e2->extinq_size = n->extinq_size; in ng_hci_default_rcvmsg()
503 bcopy(&n->bdaddr, &e2->bdaddr, in ng_hci_default_rcvmsg()
504 sizeof(e2->bdaddr)); in ng_hci_default_rcvmsg()
[all …]
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest_pred_impl.h119 const char* e2, Pred pred, const T1& v1, in AssertPred2Helper() argument
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() argument
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() argument
201 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 << ", " << e4 in AssertPred4Helper()
205 << e2 << " evaluates to " << ::testing::PrintToString(v2) << "\n" in AssertPred4Helper()
237 const char* e2, const char* e3, in AssertPred5Helper() argument
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.struct.d50 uint32_t e2; member
56 uint64_t e2; member
67 printf("e2 = \"%s\"\n", stringof(copyinstr(e32->e2)));
80 printf("e2 = \"%s\"\n", stringof(copyinstr(e64->e2)));
H A Dtst.typedef.d51 uint32_t e2; member
57 uint64_t e2; member
68 printf("e2 = \"%s\"\n", stringof(copyinstr(e32->e2)));
81 printf("e2 = \"%s\"\n", stringof(copyinstr(e64->e2)));
/freebsd/bin/sh/tests/expansion/
H A Dcmdsubst3.017 e2="$(printf "$e")"
19 [ "$e1" = "$e2" ] || echo e1 != e2
/freebsd/usr.sbin/nscd/
H A Dconfig.c68 configuration_entry_sort_cmp(const void *e1, const void *e2) in configuration_entry_sort_cmp() argument
71 (*((struct configuration_entry **)e2))->name in configuration_entry_sort_cmp()
76 configuration_entry_cmp(const void *e1, const void *e2) in configuration_entry_cmp() argument
79 (*((struct configuration_entry **)e2))->name in configuration_entry_cmp()
84 configuration_entry_cache_mp_sort_cmp(const void *e1, const void *e2) in configuration_entry_cache_mp_sort_cmp() argument
87 (*((cache_entry *)e2))->params->entry_name in configuration_entry_cache_mp_sort_cmp()
92 configuration_entry_cache_mp_cmp(const void *e1, const void *e2) in configuration_entry_cache_mp_cmp() argument
95 (*((cache_entry *)e2))->params->entry_name in configuration_entry_cache_mp_cmp()
100 configuration_entry_cache_mp_part_cmp(const void *e1, const void *e2) in configuration_entry_cache_mp_part_cmp() argument
103 (*((cache_entry *)e2))->params->entry_name, in configuration_entry_cache_mp_part_cmp()
/freebsd/lib/libefivar/
H A Defivar.h50 #define EFI_GUID(a, b, c, d, e0, e1, e2, e3, e4, e5) \ argument
52 (e0), (e1), (e2), (e3), (e4), (e5) }})
54 #define EFI_GUID(a, b, c, d, e0, e1, e2, e3, e4, e5) \ argument
56 (e0), (e1), (e2), (e3), (e4), (e5) }})
/freebsd/secure/caroot/untrusted/
H A DDigiCert_Global_Root_CA.pem26 00:e2:3b:e1:11:72:de:a8:a4:d3:a3:57:aa:50:a2:
29 e2:8d:22:dd:87:06:40:00:81:09:ce:ce:1b:83:bf:
30 df:cd:3b:71:46:e2:d6:66:c7:05:b3:76:27:16:8f:
35 a8:44:10:58:32:a9:75:18:d5:d1:a2:be:47:e2:27:
59 a0:a1:cd:4c:88:99:93:8c:91:70:e2:ab:0f:1c:be:93:a9:ff:
62 ea:77:4a:9f:9d:58:e2:2b:59:c0:40:23:ed:2d:28:82:45:3e:
66 3c:2c:3a:80:6b:a7:eb:af:15:14:e9:d8:89:c1:b9:38:6c:e2:
/freebsd/crypto/openssl/test/recipes/15-test_ml_dsa_codecs_data/
H A Dprv-65-priv.txt118 93:95:0f:88:ce:e2:01:db:9e:32:08:43:e2:9f:30:
127 ce:fc:1f:01:e6:b9:88:e2:1f:97:67:a2:b7:e1:67:
149 2b:15:e7:e2:9c:51:fc:9b:02:ee:1a:4f:c3:57:b5:
184 29:bc:6a:5a:8c:f3:e2:02:4c:0f:0c:5e:e5:7b:58:
188 38:40:6c:38:2c:57:3a:e9:cd:e2:d9:e7:f2:31:b6:
192 2d:32:41:09:86:b9:40:2a:aa:f2:46:5b:74:a5:e2:
197 b9:ab:df:66:e2:50:85:d8:c8:30:e2:ae:3b:0f:e0:
205 c2:1c:7a:b7:fa:ed:2b:21:cf:ad:e2:da:55:22:3a:
233 ea:63:a3:88:a1:94:fe:09:c3:de:a0:3b:e5:2d:e2:
237 2b:ed:47:e2:d2:30:98:2d:d5:19:24:29:d3:77:b7:
[all …]
H A Dprv-65-seed.txt122 93:95:0f:88:ce:e2:01:db:9e:32:08:43:e2:9f:30:
131 ce:fc:1f:01:e6:b9:88:e2:1f:97:67:a2:b7:e1:67:
153 2b:15:e7:e2:9c:51:fc:9b:02:ee:1a:4f:c3:57:b5:
188 29:bc:6a:5a:8c:f3:e2:02:4c:0f:0c:5e:e5:7b:58:
192 38:40:6c:38:2c:57:3a:e9:cd:e2:d9:e7:f2:31:b6:
196 2d:32:41:09:86:b9:40:2a:aa:f2:46:5b:74:a5:e2:
201 b9:ab:df:66:e2:50:85:d8:c8:30:e2:ae:3b:0f:e0:
209 c2:1c:7a:b7:fa:ed:2b:21:cf:ad:e2:da:55:22:3a:
237 ea:63:a3:88:a1:94:fe:09:c3:de:a0:3b:e5:2d:e2:
241 2b:ed:47:e2:d2:30:98:2d:d5:19:24:29:d3:77:b7:
[all …]
H A Dpub-65.txt9 47:73:6c:7d:e2:73:0d:59:78:e5:41:07:13:16:09:
11 2b:af:0e:e2:e2:fb:16:cc:fe:a0:80:28:d9:9a:c4:
26 a8:fc:e1:01:2f:d9:8d:26:0a:74:aa:aa:13:fa:e2:
46 4a:f8:1a:ac:95:e2:b3:29:4e:04:78:9a:c8:37:27:
72 e2:a5:19:12:04:53:04:28:bc:15:22:af:a2:8f:f5:
93 09:5c:8d:a5:3b:06:9e:21:c7:6a:e2:d2:00:7e:16:
110 f4:ba:52:0f:6b:ba:d5:64:a5:c3:d5:e2:7b:db:08:
117 7c:12:53:4a:ec:76:60:76:1e:eb:b9:fa:e2:89:1c:
128 4f:47:5b:90:16:71:0c:e2:aa:bc:11:a0:6b:4d:ba:
/freebsd/crypto/krb5/src/kdc/
H A Dt_replay.c194 struct entry *e1, *e2; in test_insert_entry_multiple() local
208 e2 = insert_entry(context, &req2, NULL, 30); in test_insert_entry_multiple()
210 assert_ptr_equal(k5_hashtab_get(hash_table, req2.data, req2.length), e2); in test_insert_entry_multiple()
211 assert_ptr_equal(K5_TAILQ_LAST(&expiration_queue,entry_queue), e2); in test_insert_entry_multiple()
212 assert_true(data_eq(e2->req_packet, req2)); in test_insert_entry_multiple()
213 assert_int_equal(e2->reply_packet.length, 0); in test_insert_entry_multiple()
214 assert_int_equal(e2->timein, 30); in test_insert_entry_multiple()
409 struct entry *e1, *e2; in test_kdc_check_lookaside_hit_multiple() local
418 e2 = insert_entry(context, &req2, NULL, 0); in test_kdc_check_lookaside_hit_multiple()
426 assert_int_equal(e2->num_hits, 0); in test_kdc_check_lookaside_hit_multiple()
[all …]
/freebsd/contrib/gdtoa/
H A Dstrtodg.c326 int dsign, e, e1, e2, emin, esign, finished, i, inex, irv; local
578 e2 = e - i;
588 /* adj = */ rounded_product(dval(&adj), tens[e2]);
595 /* rv = */ rounded_product(dval(&rv), tens[e2]);
599 e1 -= e2;
616 e2 = 0;
623 e2 += ((word0(&rv) & Exp_mask)
630 e2 += ((word0(&rv) & Exp_mask) >> Exp_shift1) - Bias;
645 e2 += ((word0(&rv) & Exp_mask)
652 e2 += ((word0(&rv) & Exp_mask) >> Exp_shift1) - Bias;
[all …]
/freebsd/contrib/nvi/ex/
H A Dex_mkexrc.c73 goto e2; in ex_mkexrc()
86 goto e2; in ex_mkexrc()
94 e2: errno = sverrno; in ex_mkexrc()
/freebsd/lib/libc/tests/nss/
H A Dtestutil.h130 struct ent##_entry *e1, *e2; \
138 e2 = STAILQ_FIRST(&td2->snapshot_data); \
142 if ((e1 == NULL) || (e2 == NULL)) { \
143 if (e1 == e2) \
149 rv = cmp_func(&e1->data, &e2->data, mdata); \
151 e2 = STAILQ_NEXT(e2, entries); \
/freebsd/crypto/openssl/ssl/quic/
H A Dquic_demux.c175 QUIC_URXE *e2, *prev; in demux_resize_urxe() local
187 e2 = OPENSSL_realloc(e, sizeof(QUIC_URXE) + new_alloc_len); in demux_resize_urxe()
188 if (e2 == NULL) { in demux_resize_urxe()
199 ossl_list_urxe_insert_head(&demux->urx_free, e2); in demux_resize_urxe()
201 ossl_list_urxe_insert_after(&demux->urx_free, prev, e2); in demux_resize_urxe()
203 e2->alloc_len = new_alloc_len; in demux_resize_urxe()
204 return e2; in demux_resize_urxe()
/freebsd/sys/contrib/xen/
H A Dxen.h998 #define XEN_DEFINE_UUID_(a, b, c, d, e1, e2, e3, e4, e5, e6) \ argument
1004 e1, e2, e3, e4, e5, e6}}
1007 #define XEN_DEFINE_UUID(a, b, c, d, e1, e2, e3, e4, e5, e6) \ argument
1008 ((xen_uuid_t)XEN_DEFINE_UUID_(a, b, c, d, e1, e2, e3, e4, e5, e6))
1010 #define XEN_DEFINE_UUID(a, b, c, d, e1, e2, e3, e4, e5, e6) \ argument
1011 XEN_DEFINE_UUID_(a, b, c, d, e1, e2, e3, e4, e5, e6)
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-spec-builders_test.cc1394 Expectation e2 = EXPECT_CALL(a, DoA(2)); in TEST() local
1401 Expectation e6 = EXPECT_CALL(a, DoA(6)).After(e2); in TEST()
1406 Expectation e10 = e2; // Copy ctor. in TEST()
1408 EXPECT_THAT(e1, Ne(e2)); in TEST()
1409 EXPECT_THAT(e2, Eq(e10)); in TEST()
1424 Expectation e2 = EXPECT_CALL(a, DoA(1)); in TEST() local
1426 EXPECT_THAT(e1, Ne(e2)); in TEST()
1428 e1 = e2; in TEST()
1429 EXPECT_THAT(e1, Eq(e2)); in TEST()
1444 const Expectation e2; in TEST() local
[all …]
/freebsd/usr.bin/cmp/
H A Dregular.c59 u_char ch, *p1, *p2, *m1, *m2, *e1, *e2; in c_regular() local
112 e2 = m2 + MMAP_CHUNK; in c_regular()
151 if (++p2 == e2) { in c_regular()
157 e2 = m2 + MMAP_CHUNK; in c_regular()
/freebsd/secure/caroot/trusted/
H A DvTrus_Root_CA.pem45 90:27:3d:2a:e8:7c:90:ef:bc:4f:fd:e2:0a:24:a7:
48 13:55:8a:c9:44:47:b8:51:39:1a:2e:e8:34:e2:79:
51 ff:d4:4e:ba:d5:b4:e2:8e:48:5a:00:19:09:f1:05:
56 0b:5a:43:c5:a5:86:ea:24:9e:e2:05:07:dc:34:42:
79 d3:c1:6c:12:1b:cc:29:aa:f9:08:a5:e2:37:14:ca:b1:b8:66:
87 d3:3f:49:e2:77:eb:23:c8:88:66:3b:3d:39:76:21:46:f1:ec:
88 5f:23:b8:eb:a2:66:75:74:c1:40:f7:d8:68:9a:93:e2:2d:a9:
92 e2:96:9d:29:aa:fd:98:ae:52:e1:f3:41:52:fb:a9:2e:72:96:

12345678910>>...13