Searched refs:r1 (Results 276 - 300 of 417) sorted by relevance

<<11121314151617

/freebsd-11-stable/lib/msun/ld128/
H A Dk_expl.h84 * by r1 in expm1l() is exact, but it is rounded to 88 bits due to
240 long double q, r, r1, t; local
244 /* Reduce x to (k*ln2 + endpoint[n2] + r1 + r2). */
258 r1 = x - fn * L1;
260 r = r1 + r2;
262 /* Evaluate expl(endpoint[n2] + r1 + r2) = tbl[n2] * expl(r1 + r2). */
268 *lop = tbl[n2].lo + t * (q + r1);
/freebsd-11-stable/crypto/openssh/
H A Dsc25519.c57 crypto_uint32 r1[33]; local
74 for(i=0;i<33;i++)r1[i] = x[i];
89 b = lt(r1[i],pb);
90 r->v[i] = r1[i]-pb+(b<<8);
/freebsd-11-stable/contrib/netbsd-tests/net/if/
H A Dt_ifconf.sh28 RUMP_SERVER1=unix://./r1
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextFreeBSD_mips64.cpp41 uint64_t r1; member in struct:_GPR
H A DRegisterContextFreeBSD_powerpc.cpp19 uint64_t r1; member in struct:_GPR64
59 uint32_t r1; member in struct:_GPR32
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-interrupt.c209 uint64_t r1, r2; local
213 r1 = registers[reg]; r2 = registers[reg+16];
215 reg_names[reg], reg, (unsigned int)HI32(r1), (unsigned int)LO32(r1),
218 CVMX_MF_COP0 (r1, COP0_CAUSE);
219 print_reg64 ("COP0_CAUSE", r1);
222 CVMX_MF_COP0 (r1, COP0_BADVADDR);
223 print_reg64 ("COP0_BADVADDR", r1);
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Ds390x-gf2m.pl52 @T=("%r0","%r1");
167 lghi %r1,-$stdframe-128
169 la $sp,0(%r1,$sp) # alloca
H A Ds390x-mont.pl63 $num="%r1";
264 la %r1,`$stdframe+8+6*$SIZE_T`($j,$sp)
265 lm${g} %r6,%r15,0(%r1)
/freebsd-11-stable/lib/msun/src/
H A De_lgammaf_r.c73 r1 = 6.79650068e-01, /* 0x3f2dfd8c */ variable
192 q = one+y*(r1+y*(r2+y*r3));
H A De_lgamma_r.c144 r1 = 1.39200533467621045958e+00, /* 0x3FF645A7, 0x62C4AB74 */ variable
276 q = one+y*(r1+y*(r2+y*(r3+y*(r4+y*(r5+y*r6)))));
/freebsd-11-stable/contrib/bsnmp/snmpd/
H A Dmain.c2148 struct idrange *r, *r1; local
2169 while((r1 = TAILQ_NEXT(r, link)) != NULL) {
2170 if (r1->base - (r->base + r->size) >= size)
2172 r = r1;
2174 r = r1;
2177 r1 = TAILQ_LAST(&idrange_list, idrange_list);
2178 if (INT32_MAX - size + 1 < r1->base + r1->size) {
2186 if ((r1 = malloc(sizeof(struct idrange))) == NULL) {
2191 r1
[all...]
/freebsd-11-stable/contrib/ofed/libcxgb4/
H A Dqp.c126 immdp->r1 = 0;
150 isglp->r1 = 0;
196 wqe->send.u.immd_src[0].r1 = 0;
237 wqe->write.u.immd_src[0].r1 = 0;
460 wqe->recv.r1 = 0;
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Drange_tree.c162 const range_seg_t *r1 = (const range_seg_t *)x1; local
165 ASSERT3U(r1->rs_start, <=, r1->rs_end);
168 return ((r1->rs_start >= r2->rs_end) - (r1->rs_end <= r2->rs_start));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSHA1.cpp49 static inline void r1(uint32_t &A, uint32_t &B, uint32_t &C, uint32_t &D, function
119 r1(E, A, B, C, D, 16, InternalState.Buffer.L);
120 r1(D, E, A, B, C, 17, InternalState.Buffer.L);
121 r1(C, D, E, A, B, 18, InternalState.Buffer.L);
122 r1(B, C, D, E, A, 19, InternalState.Buffer.L);
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DUnwindRegistersSave.S509 subi %r4, %r1, 16
569 stw %r1, 12(%r3)
648 subi %r4, %r1, 16
775 mov r1, r8
778 stm r0!, {r1-r3}
779 mov r1, r11
782 str r1, [r0, #0] @ r11
912 l.sw 4(r3), r1
/freebsd-11-stable/sys/contrib/ipfilter/netinet/
H A Dip_rpcb_pxy.c385 rpcb_xact_t *r1, *r2; local
387 r1 = rs->rs_rxlist;
388 if (r1 == NULL)
391 while (r1 != NULL) {
392 r2 = r1;
393 r1 = r1->rx_next;
/freebsd-11-stable/lib/msun/ld80/
H A Dk_expl.h222 long double fn, q, r, r1, r2, t, z; local
225 /* Reduce x to (k*ln2 + endpoint[n2] + r1 + r2). */
228 r = x - fn * L1 - fn * L2; /* r = r1 + r2 done independently. */
239 r1 = x - fn * L1;
242 /* Evaluate expl(endpoint[n2] + r1 + r2) = tbl[n2] * expl(r1 + r2). */
251 *lop = tbl[n2].lo + t * (q + r1);
/freebsd-11-stable/contrib/binutils/include/opcode/
H A Dcr16.h31 r0, r1, r2, r3, enumerator in enum:__anon578
/freebsd-11-stable/sys/dev/ath/ath_rate/sample/
H A Dsample.h71 uint8_t t1, r1; /* series 1: tries, rate code */ member in struct:txschedule
/freebsd-11-stable/secure/lib/libcrypt/
H A Dcrypt-des.c595 u_int32_t count, salt, l, r0, r1, keybuf[2]; local
680 if (do_des(0L, 0L, &r0, &r1, (int)count))
691 l = (r0 << 16) | ((r1 >> 16) & 0xffff);
697 l = r1 << 2;
/freebsd-11-stable/lib/libbluetooth/
H A Dhci.c540 struct ng_btsocket_hci_raw_node_bdaddr r1; member in union:__anon6578
573 if (ioctl(s, SIOC_HCI_RAW_NODE_GET_BDADDR, &rp.r1, sizeof(rp.r1)) < 0)
575 bdaddr_copy(&di->bdaddr, &rp.r1.bdaddr);
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Dghashv8-armx.S12 vld1.64 {q9},[r1] @ load input H
64 vld1.64 {q12-q13},[r1] @ load twisted H, ...
120 vld1.64 {q12-q13},[r1]! @ load twisted H, ..., H^2
122 vld1.64 {q14},[r1]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Ddfmul.S10 #define A r1:0
11 #define AH r1
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/PPC64/
H A DEmulateInstructionPPC64.cpp243 // For now, tracking only loads from 0(r1) to r1 (0(r1) is the ABI defined
271 // For now, tracking only stores to r1
323 // NOTE Currently, RA will always be equal to SP(r1)
337 // to be safe, process only the known 'mr r31/r30, r1' prologue instructions
371 // (this is a typical epilogue operation, with ra == r1. If it's
378 LLDB_LOG(log, "EmulateADDI: {0:X+8}: addi r1, r1, {1}", m_addr, si_val);
391 uint64_t r1 local
[all...]
/freebsd-11-stable/sys/dev/exca/
H A Dexca.c221 int r1, r2, r3, r4, r5, r6, r7; local
222 r1 = exca_getb(sc, map->sysmem_start_msb);
231 win, r1, r2, r3, r4, r5, r6, r7,
475 int r1, r2, r3, r4;
476 r1 = exca_getb(sc, map->start_msb);
481 "(%08x+%08x)\n", win, r1, r2, r3, r4,
474 int r1, r2, r3, r4; local

Completed in 317 milliseconds

<<11121314151617