Home
last modified time | relevance | path

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

12345678910>>...14

/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/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/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/secure/caroot/trusted/
H A DDigiCert_Global_Root_CA.pem29 00:e2:3b:e1:11:72:de:a8:a4:d3:a3:57:aa:50:a2:
32 e2:8d:22:dd:87:06:40:00:81:09:ce:ce:1b:83:bf:
33 df:cd:3b:71:46:e2:d6:66:c7:05:b3:76:27:16:8f:
38 a8:44:10:58:32:a9:75:18:d5:d1:a2:be:47:e2:27:
62 a0:a1:cd:4c:88:99:93:8c:91:70:e2:ab:0f:1c:be:93:a9:ff:
65 ea:77:4a:9f:9d:58:e2:2b:59:c0:40:23:ed:2d:28:82:45:3e:
69 3c:2c:3a:80:6b:a7:eb:af:15:14:e9:d8:89:c1:b9:38:6c:e2:
H A DTrustwave_Global_Certification_Authority.pem37 ec:d0:0f:e2:6d:44:4f:80:6a:b2:d4:e7:a0:0a:53:
44 47:b3:c9:3e:b8:6a:e2:e7:e8:81:70:5e:42:8b:4f:
48 95:3d:65:46:dc:ee:cd:69:e2:4d:8f:87:28:4e:34:
53 14:2e:3d:0f:1c:1e:32:a6:62:36:ee:66:e2:22:b8:
74 98:73:70:e2:b0:d3:ed:39:ec:4c:60:d9:a9:12:86:17:1e:96:
80 11:0c:f1:3f:2d:10:94:6f:fe:e2:34:87:83:d6:cf:e5:1b:35:
82 42:54:57:b6:99:5a:e2:0b:79:90:d7:57:12:51:35:19:88:41:
84 e2:76:f5:27:6f:fa:00:3b:4a:61:d9:0d:cb:51:93:2a:fd:16:
/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/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 …]
/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/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/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/secure/caroot/untrusted/
H A DSwissSign_Platinum_CA_-_G2.pem26 00:ca:df:a2:02:e2:da:f8:fc:07:16:b1:de:60:aa:
31 b4:c2:9f:92:be:24:d8:7b:67:22:e2:69:5f:e5:05:
39 23:62:b2:e9:0d:1f:e2:72:28:8f:9f:ac:68:20:7d:
46 2f:06:1f:7b:11:e2:84:97:c6:99:f3:6d:7f:d7:67:
52 92:72:ca:61:1a:2b:5e:4c:e2:83:74:77:fa:35:48:
83 2f:e2:d1:e0:bc:8e:36:46:77:33:ec:b8:fb:8e:9a:2c:89:4d:
86 c9:e2:8a:13:1d:b1:bf:bb:42:1d:52:dd:4e:d8:14:5e:10:c6:
102 13:c2:84:6a:8e:df:19:5a:bf:7f:eb:1d:e2:1a:38:d1:5c:af:
/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/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/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 …]

12345678910>>...14