Home
last modified time | relevance | path

Searched refs:e1 (Results 1 – 25 of 330) sorted by relevance

12345678910>>...14

/freebsd/sys/crypto/aesni/
H A Dintel_sha1.c66 __m128i abcd, e0, e1; in intel_sha1_step() local
96 e1 = abcd; in intel_sha1_step()
102 e1 = _mm_sha1nexte_epu32(e1, msg1); in intel_sha1_step()
104 abcd = _mm_sha1rnds4_epu32(abcd, e1, 0); in intel_sha1_step()
111 e1 = abcd; in intel_sha1_step()
119 e1 = _mm_sha1nexte_epu32(e1, msg3); in intel_sha1_step()
122 abcd = _mm_sha1rnds4_epu32(abcd, e1, 0); in intel_sha1_step()
128 e1 = abcd; in intel_sha1_step()
135 e1 = _mm_sha1nexte_epu32(e1, msg1); in intel_sha1_step()
138 abcd = _mm_sha1rnds4_epu32(abcd, e1, 1); in intel_sha1_step()
[all …]
/freebsd/contrib/lua/src/
H A Dlcode.c527 static void freeexps (FuncState *fs, expdesc *e1, expdesc *e2) { in freeexps() argument
528 int r1 = (e1->k == VNONRELOC) ? e1->u.info : -1; in freeexps()
1340 static int constfolding (FuncState *fs, int op, expdesc *e1, in constfolding() argument
1343 if (!tonumeral(e1, &v1) || !tonumeral(e2, &v2) || !validop(op, &v1, &v2)) in constfolding()
1347 e1->k = VKINT; in constfolding()
1348 e1->u.ival = ivalue(&res); in constfolding()
1354 e1->k = VKFLT; in constfolding()
1355 e1->u.nval = n; in constfolding()
1410 static void finishbinexpval (FuncState *fs, expdesc *e1, expdesc *e2, in finishbinexpval() argument
1413 int v1 = luaK_exp2anyreg(fs, e1); in finishbinexpval()
[all …]
/freebsd/bin/sh/tests/expansion/
H A Dcmdsubst3.016 e1=$(printf "$e")
18 [ "${#e1}" = 510 ] || echo length bad
19 [ "$e1" = "$e2" ] || echo e1 != e2
20 [ "$e1" = "$(printf "$e")" ] || echo quoted bad
22 [ "$e1" = $(printf "$e") ] || echo unquoted bad
/freebsd/contrib/googletest/googletest/include/gtest/
H A Dgtest_pred_impl.h87 AssertionResult AssertPred1Helper(const char* pred_text, const char* e1, in AssertPred1Helper() argument
92 << pred_text << "(" << e1 << ") evaluates to false, where" in AssertPred1Helper()
94 << e1 << " evaluates to " << ::testing::PrintToString(v1); in AssertPred1Helper()
118 AssertionResult AssertPred2Helper(const char* pred_text, const char* e1, in AssertPred2Helper() argument
124 << pred_text << "(" << e1 << ", " << e2 in AssertPred2Helper()
127 << e1 << " evaluates to " << ::testing::PrintToString(v1) << "\n" in AssertPred2Helper()
155 AssertionResult AssertPred3Helper(const char* pred_text, const char* e1, in AssertPred3Helper() argument
161 << pred_text << "(" << e1 << ", " << e2 << ", " << e3 in AssertPred3Helper()
164 << e1 << " evaluates to " << ::testing::PrintToString(v1) << "\n" in AssertPred3Helper()
194 AssertionResult AssertPred4Helper(const char* pred_text, const char* e1, in AssertPred4Helper() argument
[all …]
/freebsd/contrib/netbsd-tests/ipf/input/
H A Df113 in on e1 tcp 2.1.2.2,23 1.1.1.1,2 SA seq=101 ack=2
4 in on e1 tcp 2.1.2.2,23 1.1.1.1,1 SA seq=101 ack=2
7 in on e1 tcp 2.1.2.2,23 1.1.1.1,1 A seq=102 ack=2
8 in on e1 tcp 2.1.2.2,25 1.1.1.1,1 A seq=102 ack=2
12 in on e1 udp 1.1.1.1,1 4.4.4.4,53
13 in on e1 udp 2.2.2.2,2 4.4.4.4,53
H A Dl111 #in on e1 tcp 2.1.2.2,25 1.1.1.1,1025 AS
16 #in on e1 tcp 2.1.2.2,25 1.1.1.1,1025 A
17 [out,e1] 4500 0028 0000 4000 3f06 35cb 0202 0202 0101 0101
35 #in on e1 udp 1.1.1.1,1 4.4.4.4,53
40 #in on e1 udp 2.2.2.2,2 4.4.4.4,53
45 #in on e1 udp 2.2.2.2,2 4.4.4.4,53
/freebsd/contrib/gdtoa/
H A DstrtoIg.c44 Long e1; local
52 e1 = exp[0];
78 if (++e1 > fpi->emax)
93 e1 = fpi->emax;
107 if (e1 == fpi->emin) {
117 --e1;
128 exp[0] = e1;
134 exp[1] = e1;
H A Dstrtod.c96 e, e1, esign, i, j, k, nd, nd0, nf, nz, nz0, sign; local
340 e1 = e -= nf;
431 e1 += nd - k;
455 if (e1 > 0) {
456 if ( (i = e1 & 15) !=0)
458 if (e1 &= ~15) {
459 if (e1 > DBL_MAX_10_EXP) {
500 e1 >>= 4;
501 for(j = 0; e1 > 1; j++, e1 >>= 1)
502 if (e1 & 1)
[all …]
H A Dstrtodg.c326 int dsign, e, e1, e2, emin, esign, finished, i, inex, irv; local
530 e1 = e -= nf;
569 e1 -= e;
579 e1 -= i;
599 e1 -= e2;
607 e1 -= e;
612 e1 += nd - k;
617 if (e1 > 0) {
618 if ( (i = e1 & 15) !=0)
620 if (e1 &= ~15) {
[all …]
H A Dgethex.c50 Long e, e1; local
140 e1 = n - 0x10;
142 if (e1 & 0xf8000000)
144 e1 = 10*e1 + n - 0x10;
147 e1 = -e1;
148 e += e1;
/freebsd/sys/contrib/openzfs/module/lua/
H A Dlcode.c714 static int constfolding (OpCode op, expdesc *e1, expdesc *e2) { in constfolding() argument
716 if (!isnumeral(e1) || !isnumeral(e2)) return 0; in constfolding()
722 if (op == OP_DIV && e1->u.nval == INT64_MIN && e2->u.nval == -1) in constfolding()
724 r = luaO_arith(op - OP_ADD + LUA_OPADD, e1->u.nval, e2->u.nval); in constfolding()
725 e1->u.nval = r; in constfolding()
731 expdesc *e1, expdesc *e2, int line) { in codearith() argument
732 if (constfolding(op, e1, e2)) in codearith()
736 int o1 = luaK_exp2RK(fs, e1); in codearith()
738 freeexp(fs, e1); in codearith()
743 freeexp(fs, e1); in codearith()
[all …]
/freebsd/contrib/nvi/ex/
H A Dex_mkexrc.c77 goto e1; in ex_mkexrc()
79 goto e1; in ex_mkexrc()
81 goto e1; in ex_mkexrc()
83 goto e1; in ex_mkexrc()
92 e1: sverrno = errno; in ex_mkexrc()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.struct.d49 uint32_t e1; member
55 uint64_t e1; member
66 printf("e1 = \"%s\"\n", stringof(copyinstr(e32->e1)));
79 printf("e1 = \"%s\"\n", stringof(copyinstr(e64->e1)));
H A Dtst.typedef.d50 uint32_t e1; member
56 uint64_t e1; member
67 printf("e1 = \"%s\"\n", stringof(copyinstr(e32->e1)));
80 printf("e1 = \"%s\"\n", stringof(copyinstr(e64->e1)));
/freebsd/usr.sbin/nscd/
H A Dconfig.c68 configuration_entry_sort_cmp(const void *e1, const void *e2) in configuration_entry_sort_cmp() argument
70 return (strcmp((*((struct configuration_entry **)e1))->name, in configuration_entry_sort_cmp()
76 configuration_entry_cmp(const void *e1, const void *e2) in configuration_entry_cmp() argument
78 return (strcmp((const char *)e1, 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
86 return (strcmp((*((cache_entry *)e1))->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
94 return (strcmp((const char *)e1, 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
102 return (strncmp((const char *)e1, in configuration_entry_cache_mp_part_cmp()
[all …]
/freebsd/contrib/bc/tests/bc/
H A Dscientific.txt2 0e1
7 -1e1
29 .8928397e1
/freebsd/lib/libefivar/
H A Defivar.h55 #define EFI_GUID(a, b, c, d, e0, e1, e2, e3, e4, e5) \ argument
57 { (e0), (e1), (e2), (e3), (e4), (e5) }})
59 #define EFI_GUID(a, b, c, d, e0, e1, e2, e3, e4, e5) \ argument
61 { (e0), (e1), (e2), (e3), (e4), (e5) }})
/freebsd/crypto/openssl/test/recipes/30-test_evp_pkey_provided/
H A DDH.pub.txt9 79:24:ed:e1:d1:4a:57:f1:40:86:70:42:25:c5:27:
11 9a:1a:10:d4:81:53:cf:83:04:18:1c:e1:db:e1:65:
12 a9:7f:e1:33:eb:c3:4f:e3:b7:22:f7:1c:09:4f:ed:
H A DDH.priv.txt12 79:24:ed:e1:d1:4a:57:f1:40:86:70:42:25:c5:27:
14 9a:1a:10:d4:81:53:cf:83:04:18:1c:e1:db:e1:65:
15 a9:7f:e1:33:eb:c3:4f:e3:b7:22:f7:1c:09:4f:ed:
/freebsd/sys/geom/part/
H A Dg_part.c327 struct g_part_entry *e1, *e2; in g_part_check_integrity() local
345 LIST_FOREACH(e1, &table->gpt_entry, gpe_entry) { in g_part_check_integrity()
346 if (e1->gpe_deleted || e1->gpe_internal) in g_part_check_integrity()
348 if (e1->gpe_start < table->gpt_first) { in g_part_check_integrity()
350 "LBA: %jd < %jd\n", e1->gpe_index, in g_part_check_integrity()
351 (intmax_t)e1->gpe_start, in g_part_check_integrity()
355 if (e1->gpe_start > table->gpt_last) { in g_part_check_integrity()
357 "LBA: %jd > %jd\n", e1->gpe_index, in g_part_check_integrity()
358 (intmax_t)e1->gpe_start, in g_part_check_integrity()
362 if (e1->gpe_end < e1->gpe_start) { in g_part_check_integrity()
[all …]
/freebsd/secure/caroot/untrusted/
H A DLuxTrust_Global_Root_2.pem34 97:69:7d:42:30:24:e4:0d:0c:89:6b:63:de:c5:e1:
44 fb:01:e1:f4:e1:de:d9:9e:dd:db:5b:d4:2a:99:26:
48 ae:58:e1:3d:2f:34:9b:cf:9f:f6:78:85:c2:93:7a:
61 d7:70:fc:c5:38:8e:64:25:e1:4d:39:90:ce:c9:87:
86 5c:7a:e6:7f:70:34:e7:83:e2:b1:e1:e1:b8:58:ef:d4:95:e4:
94 18:0a:aa:90:1d:eb:40:1e:df:a1:1e:44:92:10:9a:f2:8d:e1:
101 b0:04:6f:e3:04:5a:b1:ab:2a:ab:fe:c7:d0:96:b6:da:e1:4a:
105 e8:85:55:dc:36:2a:e1:94:68:93:c7:66:72:44:0f:80:21:32:
/freebsd/lib/libc/tests/nss/
H A Dtestutil.h130 struct ent##_entry *e1, *e2; \
137 e1 = STAILQ_FIRST(&td1->snapshot_data); \
142 if ((e1 == NULL) || (e2 == NULL)) { \
143 if (e1 == e2) \
149 rv = cmp_func(&e1->data, &e2->data, mdata); \
150 e1 = STAILQ_NEXT(e1, entries); \
/freebsd/contrib/googletest/googletest/test/
H A Dgtest_pred_impl_unittest.cc94 testing::AssertionResult PredFormatFunction1(const char* e1, const T1& v1) { in PredFormatFunction1() argument
98 << e1 << " is expected to be positive, but evaluates to " << v1 << "."; in PredFormatFunction1()
104 testing::AssertionResult operator()(const char* e1, const T1& v1) const { in operator ()()
105 return PredFormatFunction1(e1, v1); in operator ()()
470 testing::AssertionResult PredFormatFunction2(const char* e1, const char* e2, in PredFormatFunction2() argument
475 << e1 << " + " << e2 in PredFormatFunction2()
482 testing::AssertionResult operator()(const char* e1, const char* e2, in operator ()()
484 return PredFormatFunction2(e1, e2, v1, v2); in operator ()()
853 testing::AssertionResult PredFormatFunction3(const char* e1, const char* e2, in PredFormatFunction3() argument
859 << e1 << " + " << e2 << " + " << e3 in PredFormatFunction3()
[all …]
/freebsd/crypto/heimdal/lib/asn1/
H A Dcheck-gen.c277 KRB_ERROR e1; in test_krb_error() local
282 e1.pvno = 5; in test_krb_error()
283 e1.msg_type = 30; in test_krb_error()
284 e1.ctime = NULL; in test_krb_error()
285 e1.cusec = NULL; in test_krb_error()
286 e1.stime = 1069632679; in test_krb_error()
287 e1.susec = 322981; in test_krb_error()
288 e1.error_code = 31; in test_krb_error()
289 e1.crealm = &realm; in test_krb_error()
290 e1 in test_krb_error()
[all...]
/freebsd/sys/netgraph/bluetooth/l2cap/
H A Dng_l2cap_main.c552 ng_l2cap_node_con_list_ep *e1 = NULL; in ng_l2cap_default_rcvmsg() local
564 sizeof(*e1) + n * sizeof(*e2), M_NOWAIT); in ng_l2cap_default_rcvmsg()
570 e1 = (ng_l2cap_node_con_list_ep *)(rsp->data); in ng_l2cap_default_rcvmsg()
571 e2 = (ng_l2cap_node_con_ep *)(e1 + 1); in ng_l2cap_default_rcvmsg()
573 e1->num_connections = n; in ng_l2cap_default_rcvmsg()
599 ng_l2cap_node_chan_list_ep *e1 = NULL; in ng_l2cap_default_rcvmsg() local
618 e1 = (ng_l2cap_node_chan_list_ep *)(rsp->data); in ng_l2cap_default_rcvmsg()
619 e2 = (ng_l2cap_node_chan_ep *)(e1 + 1); in ng_l2cap_default_rcvmsg()
621 e1->num_channels = n; in ng_l2cap_default_rcvmsg()

12345678910>>...14