Searched refs:lw (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-13-stable/sys/mips/mips/
H A Din_cksum.c102 const u_int32_t *lw = (const u_int32_t *) buf; local
108 if ((3 & (long) lw) == 0 && len == 20) {
109 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4];
114 if ((offset = 3 & (long) lw) != 0) {
116 lw = (u_int32_t *) (((long) lw)
[all...]
/freebsd-13-stable/sys/powerpc/powerpc/
H A Din_cksum.c105 const u_int32_t *lw = (const u_int32_t *) buf; local
111 if ((3 & (long) lw) == 0 && len == 20) {
112 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4];
117 if ((offset = 3 & (long) lw) != 0) {
119 lw = (u_int32_t *) (((long) lw)
[all...]
/freebsd-13-stable/sys/riscv/riscv/
H A Din_cksum.c96 const u_int32_t *lw = (const u_int32_t *) buf; local
102 if ((3 & (long) lw) == 0 && len == 20) {
103 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4];
108 if ((offset = 3 & (long) lw) != 0) {
110 lw = (u_int32_t *) (((long) lw)
[all...]
H A Dbus_space_asm.S53 lw a0, 0(a3)
/freebsd-13-stable/sys/arm64/arm64/
H A Din_cksum.c94 const u_int32_t *lw = (const u_int32_t *) buf; local
100 if ((3 & (long) lw) == 0 && len == 20) {
101 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4];
106 if ((offset = 3 & (long) lw) != 0) {
108 lw = (u_int32_t *) (((long) lw)
[all...]
/freebsd-13-stable/sys/amd64/amd64/
H A Din_cksum.c96 const u_int32_t *lw = (const u_int32_t *) buf; local
102 if ((3 & (long) lw) == 0 && len == 20) {
103 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4];
108 if ((offset = 3 & (long) lw) != 0) {
110 lw = (u_int32_t *) (((long) lw)
[all...]
/freebsd-13-stable/sys/i386/i386/
H A Din_cksum.c100 in_cksumdata(const u_int32_t *lw, int len) argument
107 if ((3 & (long) lw) == 0 && len == 20) {
108 sum = (u_int64_t) lw[0] + lw[1] + lw[2] + lw[3] + lw[4];
113 if ((offset = 3 & (long) lw) != 0) {
115 lw = (u_int32_t *) (((long) lw)
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_mips.S38 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
[all...]
/freebsd-13-stable/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersRestore.S920 lw $8, (4 * 33)($4)
922 lw $8, (4 * 34)($4)
925 lw $1, (4 * 1)($4)
926 lw $2, (4 * 2)($4)
927 lw $3, (4 * 3)($4)
929 lw $5, (4 * 5)($4)
930 lw $6, (4 * 6)($4)
931 lw $7, (4 * 7)($4)
932 lw $8, (4 * 8)($4)
933 lw
[all...]
/freebsd-13-stable/contrib/ncurses/man/
H A DMKterminfo.sh120 -e '/^\.TS/,/^\\/s, lw[1-9][0-9]*\., l.,' \
/freebsd-13-stable/contrib/kyua/utils/logging/
H A Dmacros_test.cpp93 ATF_TEST_CASE_WITHOUT_HEAD(lw); variable
94 ATF_TEST_CASE_BODY(lw)
114 ATF_ADD_TEST_CASE(tcs, lw);
/freebsd-13-stable/contrib/bearssl/src/hash/
H A Dghash_ctmul32.c239 uint32_t lw; local
241 lw = zw[i];
242 zw[i + 4] ^= lw ^ (lw >> 1) ^ (lw >> 2) ^ (lw >> 7);
243 zw[i + 3] ^= (lw << 31) ^ (lw << 30) ^ (lw << 25);
H A Dghash_ctmul.c329 uint32_t lw; local
331 lw = zw[i];
332 zw[i + 4] ^= lw ^ (lw >> 1) ^ (lw >> 2) ^ (lw >> 7);
333 zw[i + 3] ^= (lw << 31) ^ (lw << 30) ^ (lw << 25);
/freebsd-13-stable/crypto/openssl/crypto/aes/asm/
H A Daes-mips.pl54 # - on O32 populate $a4-$a7 with 'lw $aN,4*N($sp)' if necessary;
81 $REG_L="lw";
132 lw $t0,0($key)
133 lw $t1,4($key)
134 lw $t2,8($key)
135 lw $t3,12($key)
136 lw $cnt,240($key)
198 lw $s0,0($key0)
200 lw $s1,4($key0)
202 lw
[all...]
/freebsd-13-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-mips.pl46 # - on O32 populate $a4-$a7 with 'lw $aN,4*N($sp)' if necessary;
69 $REG_L="lw";
132 lw @X[$j],$j*4($inp)
260 lw @X[0],0($ctx)
262 lw @X[1],4($ctx)
264 lw @X[2],8($ctx)
267 lw @X[3],12($ctx)
270 lw @X[4],16($ctx)
274 lw @X[0],0($ctx)
277 lw
[all...]
/freebsd-13-stable/stand/mips/beri/boot2/
H A Drelocate.S80 lw $at, 0($t1)
/freebsd-13-stable/lib/libc/mips/string/
H A Dbcmp.S78 lw v0, 0(a0) # compare words
79 lw v1, 0(a1)
106 lw v1, 0(a1)
/freebsd-13-stable/sys/cddl/dev/dtrace/mips/
H A Ddtrace_asm.S158 lw v0, 0(a0)
171 lw v1,4(a0)
172 lw v0,0(a0)
/freebsd-13-stable/contrib/libpcap/
H A Dpcap-libdlpi.c324 linkwalk_t lw = {NULL, 0}; local
343 dlpi_walk(list_interfaces, &lw, 0);
345 if (lw.lw_err != 0) {
347 lw.lw_err, "dlpi_walk");
353 for (entry = lw.lw_list; entry != NULL; entry = entry->lnl_next) {
364 for (entry = lw.lw_list; entry != NULL; entry = next) {
/freebsd-13-stable/sys/mips/nlm/
H A Dmpreset.S102 lw t1, 0(t2)
105 lw t1, 0(t2) /* read-back ensures operation complete */
/freebsd-13-stable/sys/mips/include/
H A Dpcb.h80 lw s2, TD_FLAGS(s1) ;\
H A Dpte.h182 #define PTE_L lw
H A Dasm.h89 lw t9,4(sp); \
338 #define PTR_L lw
386 #define INT_L lw
432 #define LONG_L lw
470 #define REG_L lw
/freebsd-13-stable/sys/cddl/dev/dtrace/riscv/
H A Ddtrace_asm.S95 lw a0, 0(a0)
/freebsd-13-stable/contrib/unbound/libunbound/
H A Dlibworker.c884 struct libworker* lw = (struct libworker*)q->env->worker; local
890 mesh_report_reply(lw->env->mesh, &e, reply_info, error);
900 mesh_report_reply(lw->env->mesh, &e, reply_info,
904 mesh_report_reply(lw->env->mesh, &e, reply_info, NETEVENT_NOERROR);
913 struct libworker* lw = (struct libworker*)e->qstate->env->worker; local
916 mesh_report_reply(lw->env->mesh, e, reply_info, error);
926 mesh_report_reply(lw->env->mesh, e, reply_info,
930 mesh_report_reply(lw->env->mesh, e, reply_info, NETEVENT_NOERROR);

Completed in 221 milliseconds

12