/src/tests/usr.bin/c++/ |
t_tsan_lock_order_inversion.sh | 65 pthread_mutex_t l1, l2; 67 pthread_mutex_init(&l1, NULL); 70 pthread_mutex_lock(&l1); 71 pthread_mutex_unlock(&l1); 74 pthread_mutex_lock(&l1); 77 pthread_mutex_unlock(&l1); 92 pthread_mutex_t l1, l2; 94 pthread_mutex_init(&l1, NULL); 97 pthread_mutex_lock(&l1); 98 pthread_mutex_unlock(&l1); [all...] |
/src/tests/usr.bin/cc/ |
t_tsan_lock_order_inversion.sh | 64 pthread_mutex_t l1, l2; 66 pthread_mutex_init(&l1, NULL); 69 pthread_mutex_lock(&l1); 70 pthread_mutex_unlock(&l1); 73 pthread_mutex_lock(&l1); 76 pthread_mutex_unlock(&l1); 91 pthread_mutex_t l1, l2; 93 pthread_mutex_init(&l1, NULL); 96 pthread_mutex_lock(&l1); 97 pthread_mutex_unlock(&l1); [all...] |
/src/sys/arch/sparc64/sparc64/ |
db_tlb_access.S | 40 mov %i1, %l1 43 ldxa [%l1] ASI_DMMU_TLB_TAG, %o2 46 ldxa [%l1] ASI_DMMU_TLB_DATA, %o3 51 inc 8, %l1 53 ldxa [%l1] ASI_DMMU_TLB_TAG, %o2 56 ldxa [%l1] ASI_DMMU_TLB_DATA, %o3 61 inc 8, %l1 63 cmp %l1, %l3 74 mov %i1, %l1 77 ldxa [%l1] ASI_IMMU_TLB_TAG, %o [all...] |
/src/libexec/ld.elf_so/arch/sparc64/ |
rtld_start.S | 62 mov %g1, %l1 /* save ps_strings */ 89 mov %l1, %g1 /* restore ps_strings */ 129 sethi %hi(32768*32-8), %l1 131 or %l1, %lo(32768*32-8), %l1 132 sub %l0, %l1, %l0 /* i = x - y + 8 - 32768*32 */ 136 sethi %hi(5120), %l1 137 sdivx %l0, %l1, %l1 /* Calculate i/5120 */ 138 sllx %l1, 2, %l [all...] |
/src/sys/external/isc/libsodium/dist/test/default/ |
metamorphic.c | 18 size_t l1, l2; local in function:mm_generichash 38 l1 = randombytes_uniform((uint32_t) mlen); 39 l2 = randombytes_uniform((uint32_t) (mlen - l1)); 40 crypto_generichash_update(&st, m, l1); 41 crypto_generichash_update(&st, m + l1, l2); 42 crypto_generichash_update(&st, m + l1 + l2, mlen - l1 - l2); 64 size_t l1, l2; local in function:mm_onetimeauth 78 l1 = randombytes_uniform((uint32_t) mlen); 79 l2 = randombytes_uniform((uint32_t) (mlen - l1)); 104 size_t l1, l2; local in function:mm_hmacsha256 144 size_t l1, l2; local in function:mm_hmacsha512 [all...] |
/src/sys/crypto/blowfish/ |
bf_locl.h | 77 #define c2ln(c,l1,l2,n) { \ 79 l1=l2=0; \ 85 case 4: l1 =((BF_LONG)(*(--(c))))<<24L; /* FALLTHROUGH */ \ 86 case 3: l1|=((BF_LONG)(*(--(c))))<<16L; /* FALLTHROUGH */ \ 87 case 2: l1|=((BF_LONG)(*(--(c))))<< 8L; /* FALLTHROUGH */ \ 88 case 1: l1|=((BF_LONG)(*(--(c)))); /* FALLTHROUGH */ \ 100 #define l2cn(l1,l2,c,n) { \ 107 case 4: *(--(c))=(unsigned char)(((l1)>>24L)&0xff); /* FALLTHROUGH */ \ 108 case 3: *(--(c))=(unsigned char)(((l1)>>16L)&0xff); /* FALLTHROUGH */ \ 109 case 2: *(--(c))=(unsigned char)(((l1)>> 8L)&0xff); /* FALLTHROUGH */ [all...] |
/src/common/lib/libutil/ |
proc_compare.c | 89 proc_compare(const PROC *p1, const LWP *l1, const PROC *p2, const LWP *l2) 114 if (l2->l_pctcpu > l1->l_pctcpu) 121 if (l1->l_slptime < l2->l_slptime) 123 if (l2->l_slptime < l1->l_slptime) 129 if ((l1->l_flag & LW_SINTR) && (l2->l_flag & LW_SINTR) == 0) 131 if ((l2->l_flag & LW_SINTR) && (l1->l_flag & LW_SINTR) == 0)
|
/src/sys/arch/epoc32/stand/e32boot/ldd/ |
epoc32.cpp | 89 TUint l1Index, l1, pageOffset, pa, va; local in function:EPOC32::GetPhysicalAddress 99 l1 = *(l1Tbl + l1Index); 100 switch (l1 & L1_TYPE_MASK) { 106 pa = l1 & L1_S_ADDR_MASK; 114 l2Tbl = (TUint *)(l1 & L1_C_ADDR_MASK); 141 TUint *l1Tbl, l1Index, l1, tag; local in function:EPOC32::MapPhysicalAddress 148 l1 = ((TUint)pa & L1_S_ADDR_MASK) | 151 *(l1Tbl + l1Index) = l1;
|
/src/sys/crypto/des/ |
des_ecb.c | 127 register DES_LONG l0,l1; local in function:des_ecb3_encrypt 133 c2l(in,l1); 135 ll[1]=l1; 143 l1=ll[1]; 145 l2c(l1,out);
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
sanitizer_list_test.cc | 144 List l1, l2; local in function:__sanitizer::TEST 145 l1.clear(); 148 l1.append_front(&l2); 149 CHECK(l1.empty()); 152 l1.append_back(&l2); 153 CHECK(l1.empty()); 156 SetList(&l1, x); 157 CheckList(&l1, x); 159 SetList(&l1, x, y, z); 161 l1.append_back(&l2) [all...] |
/src/usr.sbin/sysinst/ |
msg_cmp.sh | 87 read -r l1 <&3 && read -r l2 <&4 90 if [ "$l1" != "$l2" ]; then 96 printf "%s (%d):\t%s\n" $msg $NUM $l1
|
/src/sys/arch/sparc/sparc/ |
vm_machdep.c | 179 * l1 is the process being forked; if l1 == &lwp0, we are creating 188 cpu_lwp_fork(struct lwp *l1, struct lwp *l2, 192 struct pcb *opcb = lwp_getpcb(l1); 198 * Save all user registers to l1's stack or, in the case of 204 * If process l1 has an FPU state, we must copy it. If it is 208 if (l1 == curlwp) { 213 else if (l1 != &lwp0) /* XXX is this valid? */ 218 if (l1->l_md.md_fpstate != NULL) { 226 if ((cpi = l1->l_md.md_fpu) != NULL) [all...] |
sigcode_state.s | 106 sethi %hi(PSR_EF), %l1; /* FPU enable is too high for andcc */ \ 107 andcc %l0, %l1, %l0; /* %l0 = fpu enable bit */ \ 109 rd %y, %l1; /* in any case, save %y */ \ 137 wr %l1, %g0, %y; /* in any case, restore %y */ \
|
/src/sys/arch/ia64/ia64/ |
vm_machdep.c | 139 cpu_lwp_fork(struct lwp *l1, struct lwp *l2, void *stack, size_t stacksize, 142 vaddr_t ua1 = uvm_lwp_getuarea(l1); 144 struct pcb *pcb1 = lwp_getpcb(l1); 152 * PCB if we're the parent (ie l1 == curlwp) so that we have 157 * Copy pcb from lwp l1 to l2. 159 if (l1 == curlwp) { 165 KASSERT(l1 == &lwp0); 175 l2->l_md.md_flags = l1->l_md.md_flags; 185 *tf = *l1->l_md.md_tf;
|
/src/sys/arch/aarch64/aarch64/ |
pmapboot.c | 87 pd_entry_t *l0, *l1, *l2, *l3; local in function:pmapboot_protect 108 l1 = (pd_entry_t *)AARCH64_PA_TO_KVA(pa); 111 if (!l1pde_valid(l1[idx])) 113 if (l1pde_is_block(l1[idx])) { 114 pmapboot_protect_entry(&l1[idx], clrprot); 118 pa = l1pde_pa(l1[idx]); 220 pd_entry_t *l0, *l1, *l2, *l3, pte; variable in typeref:typename:pd_entry_t ** 278 l1 = pmapboot_pagealloc(); 279 if (l1 == NULL) { 281 "cannot allocate L1 page\n") [all...] |
vm_machdep.c | 80 cpu_lwp_fork(struct lwp *l1, struct lwp *l2, void *stack, size_t stacksize, 83 const struct pcb * const pcb1 = lwp_getpcb(l1); 88 l1, l2, curlwp, &lwp0); 114 memcpy(l2->l_md.md_ia_user, l1->l_md.md_ia_user, 116 memcpy(l2->l_md.md_ib_user, l1->l_md.md_ib_user, 118 memcpy(l2->l_md.md_da_user, l1->l_md.md_da_user, 120 memcpy(l2->l_md.md_db_user, l1->l_md.md_db_user, 122 memcpy(l2->l_md.md_ga_user, l1->l_md.md_ga_user, 144 *utf = *l1->l_md.md_utf;
|
/src/sys/kern/ |
kern_fork.c | 256 fork1(struct lwp *l1, int flags, int exitsig, void *stack, size_t stacksize, 268 p1 = l1->l_proc; 269 uid = kauth_cred_getuid(l1->l_cred); 279 error = kauth_authorize_process(l1->l_cred, 297 if (kauth_authorize_process(l1->l_cred, KAUTH_PROCESS_RLIMIT, 437 l1->l_vforkwaiting = true; 438 p2->p_vforklwp = l1; 441 l1->l_vforkwaiting = false; 493 lwp_create(l1, p2, uaddr, (flags & FORK_PPWAIT) ? LWP_VFORK : 0, 495 l1->l_class, &l1->l_sigmask, &l1->l_sigstk) [all...] |
/src/sys/arch/m68k/m68k/ |
vm_machdep.c | 76 * l1 is the process being forked; if l1 == &lwp0, we are creating 85 cpu_lwp_fork(struct lwp *l1, struct lwp *l2, void *stack, size_t stacksize, 92 pcb1 = lwp_getpcb(l1); 95 l2->l_md.md_flags = l1->l_md.md_flags; 97 /* Copy pcb from lwp l1 to l2. */ 98 if (l1 == curlwp) { 102 KASSERT(l1 == &lwp0); 112 *tf = *(struct trapframe *)l1->l_md.md_regs;
|
/src/tests/lib/libc/ |
t_convfp.c | 135 unsigned long l1 = dv; local in function:ATF_TC_BODY 138 ATF_CHECK_EQ_MSG(l1, 1, 139 "double 1.9 casted to unsigned long should be 1, but is %lu", l1);
|
/src/common/lib/libc/arch/sparc64/string/ |
strmacros.h | 53 sethi %hi(FPLWP), %l1; \ 55 LDPTR [%l1 + %lo(FPLWP)], %l2; /* Load fplwp */ \ 82 STPTR %l5, [%l1 + %lo(FPLWP)]; /* Set new fplwp */ \ 100 STPTR %l2, [%l1 + %lo(FPLWP)]; /* Restore old fproc */ \
|
/src/usr.sbin/ldpd/ |
label.c | 67 const struct label *l1 = node1, *l2 = node2; local in function:labels_compare 70 if (__predict_false(l1->so_dest.sa.sa_family != 72 return l1->so_dest.sa.sa_family > l2->so_dest.sa.sa_family ? 75 assert(l1->so_dest.sa.sa_len == l2->so_dest.sa.sa_len); 76 assert(l1->so_pref.sa.sa_len == l2->so_pref.sa.sa_len); 78 if ((ret = memcmp(&l1->so_dest.sa, &l2->so_dest.sa, 79 l1->so_dest.sa.sa_len)) != 0) 82 return memcmp(&l1->so_pref.sa, &l2->so_pref.sa, 83 l1->so_pref.sa.sa_len);
|
/src/libexec/ld.elf_so/arch/sparc/ |
rtld_start.S | 40 mov %g1, %l1 /* save ps_strings */ 66 mov %l1, %g1 /* restore ps_strings */
|
/src/sys/external/bsd/compiler_rt/dist/include/sanitizer/ |
dfsan_interface.h | 34 dfsan_label l1; member in struct:dfsan_label_info 45 /// Computes the union of \c l1 and \c l2, possibly creating a union label in 47 dfsan_label dfsan_union(dfsan_label l1, dfsan_label l2);
|
/src/tests/ipf/ |
t_logging.sh | 75 test_case l1 logtest hex hex 79 atf_add_test_case l1
|
/src/sys/arch/hppa/hppa/ |
vm_machdep.c | 86 cpu_lwp_fork(struct lwp *l1, struct lwp *l2, void *stack, size_t stacksize, 96 pcb1 = lwp_getpcb(l1); 103 hppa_fpu_flush(l1); 118 l2->l_md.md_bpva = l1->l_md.md_bpva; 119 l2->l_md.md_bpsave[0] = l1->l_md.md_bpsave[0]; 120 l2->l_md.md_bpsave[1] = l1->l_md.md_bpsave[1]; 127 /* copy the l1's trapframe to l2 */ 128 memcpy(tf, l1->l_md.md_regs, sizeof(*tf)); 147 tf->tf_ret0 = l1->l_proc->p_pid;
|