Searched refs:l1 (Results 51 - 75 of 109) sorted by relevance

12345

/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_size_class_map.h166 const uptr l1 = l - kMidSizeLog; local
167 return kMidClass + (l1 << S) + hbits + (lbits > 0);
H A Dsanitizer_deadlock_detector.h347 bool testOnlyHasEdge(uptr l1, uptr l2) { argument
348 return g_.hasEdge(nodeToIndex(l1), nodeToIndex(l2));
/freebsd-current/contrib/netbsd-tests/rump/rumpkern/
H A Dt_lwproc.c87 struct lwp *l1, *l2; local
91 l1 = rump_pub_lwproc_curlwp();
100 rump_pub_lwproc_switch(l1);
/freebsd-current/contrib/nvi/common/
H A Dline.c40 recno_t l1; local
54 if ((lno == 0 || lno == 1) && db_last(sp, &l1))
58 if ((lno != 0 && lno != 1) || l1 != 0) {
86 recno_t l1, l2; local
112 l1 = ((TEXT *)TAILQ_FIRST(sp->tiq))->lno;
114 if (l1 <= lno && l2 >= lno) {
131 lno -= l2 - l1;
/freebsd-current/usr.bin/systat/
H A Diolat.c228 size_t l1, l2; local
236 l1 = 2;
238 l1 += len;
245 if (sysctl(qoid, l1, oid, &l2, 0, 0) != 0) {
274 l1 = oid2name(oid, l2, name, sizeof(name));
275 if (strcmp(name + l1 - strlen(LATENCY) - 1, LATENCY) != 0)
300 l1 = 2 + l2;
/freebsd-current/contrib/sendmail/src/
H A Ddomain.c99 ** l1 -- length of rr1
111 tlsa_rr_cmp(rr1, l1, rr2, l2)
113 int l1;
125 SM_REQUIRE(l1 > 3);
183 if (l1 != l2)
185 cmp = memcmp(rr1, rr2, l1);
191 if (l1 == l2 && 0 == memcmp(rr1, rr2, l1))
195 if (TLSA_UNSUPP == dane_tlsa_chk(rr1, l1, "", false))
228 int i, l1, re local
[all...]
/freebsd-current/sbin/sysctl/
H A Dsysctl.c1275 size_t l1, l2; local
1280 l1 = 2;
1283 l1 += len;
1286 l1++;
1290 j = sysctl(name1, l1, name2, &l2, 0, 0);
1311 l1 = 2 + l2;
/freebsd-current/sys/riscv/riscv/
H A Dminidump_machdep.c156 pd_entry_t *l1, *l2, l2e; local
185 if (!pmap_get_tables(pmap_kernel(), va, &l1, &l2, &l3))
284 if (!pmap_get_tables(pmap_kernel(), va, &l1, &l2, &l3)) {
/freebsd-current/usr.bin/split/tests/
H A Dsplit_test.sh207 atf_check split -l1 input
216 atf_check split -a2 -l1 input
224 atf_check split -a2 -a0 -l1 input
/freebsd-current/contrib/diff/src/
H A Dutil.c667 lin l0, l1;
689 l1 = next->line1 + next->inserted - 1;
708 for (i = next->line1; i <= l1 && trivial; i++)
726 *last1 = l1;
658 lin l0, l1; local
/freebsd-current/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan.h33 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
/freebsd-current/sys/arm64/iommu/
H A Dsmmuvar.h134 struct l1_desc *l1; member in struct:smmu_strtab
H A Dsmmu.c385 uint64_t *ste, *l1; local
392 l1 = (void *)((uint64_t)strtab->vaddr +
394 device_printf(sc->dev, "L1 ste == %lx\n", l1[0]);
396 l1_desc = &strtab->l1[i];
789 l1_desc = &strtab->l1[sid >> STRTAB_SPLIT];
956 "%s: size %d, l1 entries %d, l1size %d\n",
972 strtab->l1 = malloc(sz, M_SMMU, M_WAITOK | M_ZERO);
973 if (strtab->l1 == NULL) {
1017 l1_desc = &strtab->l1[sid >> STRTAB_SPLIT];
1068 l1_desc = &strtab->l1[si
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Ddfsan_interface.h41 /// Computes the union of \c l1 and \c l2, resulting in a union label.
42 dfsan_label SANITIZER_CDECL dfsan_union(dfsan_label l1, dfsan_label l2);
/freebsd-current/crypto/heimdal/lib/gssapi/krb5/
H A Darcfour.c118 const u_char *v1, size_t l1,
130 len = l1 + l2 + l3;
136 memcpy(ptr, v1, l1);
137 memcpy(ptr + l1, v2, l2);
138 memcpy(ptr + l1 + l2, v3, l3);
115 arcfour_mic_cksum(krb5_context context, krb5_keyblock *key, unsigned usage, u_char *sgn_cksum, size_t sgn_cksum_sz, const u_char *v1, size_t l1, const void *v2, size_t l2, const void *v3, size_t l3) argument
/freebsd-current/sys/contrib/openzfs/module/lua/
H A Dlstrlib.c524 static const char *lmemfind (const char *s1, size_t l1, argument
527 else if (l2 > l1) return NULL; /* avoids a negative `l1' */
531 l1 = l1-l2; /* `s2' cannot be found after that */
532 while (l1 > 0 && (init = (const char *)memchr(s1, *s2, l1)) != NULL) {
536 else { /* correct `l1' and `s1' to try again */
537 l1 -= init-s1;
H A Dlcode.h74 LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
/freebsd-current/contrib/atf/atf-c/
H A Dutils_test.c323 const char *l1 = "First line with % formatting % characters %"; local
327 atf_utils_create_file("test.txt", "%s\n%s\n%s", l1, l2, l3);
335 ATF_REQUIRE_STREQ(l1, line);
/freebsd-current/contrib/lua/src/
H A Dlcode.h91 LUAI_FUNC void luaK_concat (FuncState *fs, int *l1, int l2);
/freebsd-current/contrib/ldns/
H A Ddnssec_zone.c1127 ldns_rdf *l1, *l2; local
1170 l1 = ldns_dname_clone_from(cur_name, (uint8_t)lpos);
1172 l1 = NULL;
1176 if (!l1 || ldns_dname_compare(l1, l2) != 0) {
1186 ldns_rdf_deep_free(l1);
1198 ldns_rdf_deep_free(l1);
1207 ldns_rdf_deep_free(l1);
1215 ldns_rdf_deep_free(l1);
1224 ldns_rdf_deep_free(l1);
[all...]
/freebsd-current/crypto/openssl/crypto/sha/asm/
H A Dsha512-sparcv9.pl109 $B="%l1";
178 ld [$inp+4],%l1
219 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+0)%16)*$SZ+4`],%l1
387 or %l1,$tmp2,$tmp2
389 ld [%sp+STACK_BIAS+STACK_FRAME+`(($i+1+0)%16)*$SZ+4`],%l1
739 ld [$ctx+`0*$SZ+4`],%l1
749 or %l1,$tmp0,$tmp0
765 ld [$ctx+`4*$SZ+4`],%l1
775 or %l1,$tmp0,$tmp0
/freebsd-current/usr.bin/sort/
H A Dfile.c1211 sub_list_cmp(struct sort_list *l1, struct sort_list *l2) argument
1214 if (l1 == l2)
1217 if (l1->count == 0) {
1224 ret = list_coll(&(l1->list[0]), &(l2->list[0]));
1226 return ((l1->sub_list_pos < l2->sub_list_pos) ?
/freebsd-current/sys/dev/xen/bus/
H A Dxen_intr.c355 u_long l1, l2; local
383 l1 = atomic_readandclear_xen_ulong(&v->evtchn_pending_sel);
388 while (l1 != 0) {
390 masked_l1 = l1 & ((~0UL) << l1i);
456 l1 &= ~(1UL << l1i);
/freebsd-current/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-sparcv9.pl1366 ld [$inp+4],%l1
1375 st %l1,[$out+64*1-4]
1385 ld [$inp+4],%l1
1394 st %l1,[$out+64*1-4]
1404 ld [$inp+4],%l1
1412 st %l1,[$out+64*1-4]
1440 ld [$inp+64*1],%l1
1449 and %l1,$mask,%l1
1452 st %l1,[
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TraceExporter/common/
H A DTraceHTR.cpp212 auto are_passes_done = [](IHTRLayer &l1, IHTRLayer &l2) {
213 return l1.GetNumUnits() == l2.GetNumUnits();

Completed in 399 milliseconds

12345