/freebsd/sys/netinet/ |
H A D | in_cksum.c | 104 const u_int32_t *lw = (const u_int32_t *) buf; in in_cksumdata() local 110 if ((3 & (long) lw) == 0 && len == 20) { in in_cksumdata() 111 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4]; in in_cksumdata() 116 if ((offset = 3 & (long) lw) != 0) { in in_cksumdata() 118 lw = (u_int32_t *) (((long) lw) - offset); in in_cksumdata() 119 sum = *lw++ & masks[len >= 3 ? 3 : len]; in in_cksumdata() 130 offset = 32 - (0x1f & (long) lw); in in_cksumdata() 134 sum += (u_int64_t) lw[0]; in in_cksumdata() 135 lw += 1; in in_cksumdata() 138 sum += (u_int64_t) lw[0] + lw[1]; in in_cksumdata() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/riscv/ |
H A D | restore.S | 30 lw s11, 12(sp) 46 lw s10, 0(sp) 47 lw s9, 4(sp) 48 lw s8, 8(sp) 49 lw s7, 12(sp) 65 lw s6, 0(sp) 66 lw s5, 4(sp) 67 lw s4, 8(sp) 68 lw s3, 12(sp) 84 lw s2, 0(sp) [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_trampoline_mips.S | 38 lw $t9, 0($t9) 52 lw $a0, 16($sp) 53 lw $a1, 20($sp) 54 lw $a2, 24($sp) 55 lw $a3, 28($sp) 56 lw $ra, 32($sp) 85 lw $t9, 0($t9) 99 lw $v0, 16($sp) 100 lw $v1, 20($sp) 101 lw $a0, 24($sp) [all …]
|
/freebsd/contrib/bearssl/src/hash/ |
H A D | ghash_ctmul32.c | 239 uint32_t lw; in br_ghash_ctmul32() local 241 lw = zw[i]; in br_ghash_ctmul32() 242 zw[i + 4] ^= lw ^ (lw >> 1) ^ (lw >> 2) ^ (lw >> 7); in br_ghash_ctmul32() 243 zw[i + 3] ^= (lw << 31) ^ (lw << 30) ^ (lw << 25); in br_ghash_ctmul32()
|
H A D | ghash_ctmul.c | 329 uint32_t lw; in br_ghash_ctmul() local 331 lw = zw[i]; in br_ghash_ctmul() 332 zw[i + 4] ^= lw ^ (lw >> 1) ^ (lw >> 2) ^ (lw >> 7); in br_ghash_ctmul() 333 zw[i + 3] ^= (lw << 31) ^ (lw << 30) ^ (lw << 25); in br_ghash_ctmul()
|
/freebsd/contrib/kyua/utils/logging/ |
H A D | macros_test.cpp | 93 ATF_TEST_CASE_WITHOUT_HEAD(lw); 94 ATF_TEST_CASE_BODY(lw) in ATF_TEST_CASE_BODY() argument 114 ATF_ADD_TEST_CASE(tcs, lw); in ATF_INIT_TEST_CASES()
|
/freebsd/contrib/libpcap/ |
H A D | pcap-libdlpi.c | 344 linkwalk_t lw = {NULL, 0}; in pcapint_platform_finddevs() local 363 dlpi_walk(list_interfaces, &lw, 0); in pcapint_platform_finddevs() 365 if (lw.lw_err != 0) { in pcapint_platform_finddevs() 367 lw.lw_err, "dlpi_walk"); in pcapint_platform_finddevs() 373 for (entry = lw.lw_list; entry != NULL; entry = entry->lnl_next) { in pcapint_platform_finddevs() 384 for (entry = lw.lw_list; entry != NULL; entry = next) { in pcapint_platform_finddevs()
|
/freebsd/contrib/libxo/tests/core/saved/ |
H A D | test_02.XP.out | 31 <granularity-lw units="mAh">155</granularity-lw>
|
H A D | test_02.X.out | 5 …ytes>2</bytes><bytes>3</bytes><bytes>4</bytes><granularity-lw units="mAh">155</granularity-lw><mbu…
|
H A D | test_02.J.out | 1 …","lines":20,"words":30,"characters":40, "bytes": [0,1,2,3,4],"granularity-lw":155,"mbuf-current":…
|
H A D | test_02.JP.out | 26 "granularity-lw": 155,
|
H A D | test_02.E.out | 26 op content: [granularity-lw] [155] [0]
|
/freebsd/contrib/ncurses/man/ |
H A D | MKterminfo.sh | 122 -e '/^\.TS/,/^\\/s, lw[1-9][0-9]*\., l.,' \
|
/freebsd/bin/sh/tests/parser/ |
H A D | nul1.0 | 10 printf '[ "$lv.$lw.$v" = "5001.5001.$w" ]\n'
|
/freebsd/sys/riscv/riscv/ |
H A D | bus_space_asm.S | 50 lw a0, 0(a3)
|
H A D | support.S | 133 lw a0, 0(a0) /* Try loading the data */
|
H A D | locore.S | 350 lw t1, 0(t0)
|
H A D | exception.S | 191 lw a2, TD_AST(a1)
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/ |
H A D | Relocation.txt | 81 "lw" loads a 32 bit value from memory. On MIPS64, "lw" loads a 32 bit
|
/freebsd/sys/cddl/dev/dtrace/riscv/ |
H A D | dtrace_asm.S | 98 lw a0, 0(a0)
|
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/ |
H A D | RISCVInstrInfoZalasr.td | 50 defm LW : LAQ_r_aq_rl<0b010, "lw">;
|
/freebsd/contrib/mandoc/ |
H A D | tbl_term.c | 581 int lw, rw; /* Left and right line widths. */ in tbl_hrule() local 622 lw = cpp == NULL || cpn == NULL || in tbl_hrule() 627 tbl_direct_border(tp, BHORIZ * lw, in tbl_hrule() 680 tbl_direct_border(tp, BLEFT * lw + in tbl_hrule()
|
/freebsd/contrib/unbound/libunbound/ |
H A D | libworker.c | 903 struct libworker* lw = (struct libworker*)e->qstate->env->worker; in libworker_handle_service_reply() local 906 mesh_report_reply(lw->env->mesh, e, reply_info, error); in libworker_handle_service_reply() 916 mesh_report_reply(lw->env->mesh, e, reply_info, in libworker_handle_service_reply() 920 mesh_report_reply(lw->env->mesh, e, reply_info, NETEVENT_NOERROR); in libworker_handle_service_reply()
|
/freebsd/tools/test/stress2/ |
H A D | default.cfg | 88 # BMODE=1 ./all.sh -on `grep -lw mycc *.sh`
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | assembly.h | 48 # define ILOAD lw
|