Home
last modified time | relevance | path

Searched refs:temp2 (Results 1 – 25 of 32) sorted by relevance

12

/freebsd/crypto/openssl/crypto/
H A Driscv64cpuid.pl18 my ($in_a,$in_b,$len,$x,$temp1,$temp2) = ('a0','a1','a2','t0','t1','t2');
32 lbu $temp2,0($in_b)
36 xor $temp1,$temp1,$temp2
45 my ($ptr,$len,$temp1,$temp2) = ('a0','a1','t0','t1');
76 li $temp2,8
81 bge $len,$temp2,4b # if len>=8 loop
H A Driscv32cpuid.pl18 my ($in_a,$in_b,$len,$x,$temp1,$temp2) = ('a0','a1','a2','t0','t1','t2');
32 lbu $temp2,0($in_b)
36 xor $temp1,$temp1,$temp2
45 my ($ptr,$len,$temp1,$temp2) = ('a0','a1','t0','t1');
76 li $temp2,4
81 bge $len,$temp2,4b # if len>=4 loop
H A Dloongarch64cpuid.pl25 my ($in_a,$in_b,$len,$m,$temp1,$temp2) = ($a0,$a1,$a2,$t0,$t1,$t2);
39 ld.bu $temp2,$in_b,0
43 xor $temp1,$temp1,$temp2
52 my ($ptr,$len,$temp1,$temp2) = ($a0,$a1,$t0,$t1);
83 li.d $temp2,8
88 bge $len,$temp2,4b # if len>=8 loop
H A Dmem_sec.c412 SH_LIST *temp, *temp2; in sh_add_to_list()
421 temp2 = temp->next; in sh_remove_from_list()
422 OPENSSL_assert(WITHIN_FREELIST(temp2->p_next) || WITHIN_ARENA(temp2->p_next)); in sh_remove_from_list()
416 SH_LIST *temp, *temp2; sh_remove_from_list() local
/freebsd/sys/arm/arm/
H A Dstdatomic.c196 uint32_t temp1, temp2; \
214 "=&r" (temp2) \
229 uint32_t negmask, temp1, temp2; \
254 "=&r" (temp2) \
269 uint32_t negmask, temp1, temp2; \
290 "=&r" (temp2) \
307 uint32_t temp1, temp2; \
322 "=&r" (temp2) \
380 uint32_t old, temp1, temp2; \
391 "=&r" (temp2) \
/freebsd/crypto/krb5/src/lib/crypto/builtin/des/
H A Df_tables.h250 unsigned DES_INT32 temp2; \
251 DES_INITIAL_PERM((left), (right), (temp2)); \
254 DES_SP_DECRYPT_ROUND((left), (right), (temp2), (kp)); \
255 DES_SP_DECRYPT_ROUND((right), (left), (temp2), (kp)); \
257 DES_FINAL_PERM((left), (right), (temp2)); \
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_delch.c58 const NCURSES_CH_T *temp2 = temp1 + 1; in NCURSES_EXPORT() local
62 *temp1++ = *temp2++; in NCURSES_EXPORT()
H A Dlib_insch.c93 const NCURSES_CH_T *temp2 = temp1 - 1; in NCURSES_EXPORT() local
99 *temp1-- = *temp2--; in NCURSES_EXPORT()
/freebsd/crypto/krb5/src/lib/crypto/builtin/sha2/
H A Dsha256.c178 uint32_t temp1, temp2; in swap_uint32_t() local
181 temp2 = temp1 >> 8; in swap_uint32_t()
183 temp2 &= 0x00ff00ff; in swap_uint32_t()
185 return temp1 | temp2; in swap_uint32_t()
/freebsd/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_elem_ptm.cpp155 std::string temp1, temp2; in toString() local
158 packetTypeName(type, temp1,temp2); in toString()
159 oss << temp1 << " : " << temp2 << "; "; in toString()
165 packetTypeName(err_type, temp1,temp2); in toString()
/freebsd/contrib/ncurses/ncurses/widechar/
H A Dlib_ins_wch.c66 const NCURSES_CH_T *temp2 = temp1 - cells; in NCURSES_EXPORT() local
70 *temp1-- = *temp2--; in NCURSES_EXPORT()
/freebsd/sys/dev/iicbus/rtc/
H A Drv3032.c267 int rv, temp2; in rv3032_temp_read() local
277 temp2 = *temp; in rv3032_temp_read()
280 } while (temp2 != *temp); in rv3032_temp_read()
/freebsd/contrib/ee/
H A Dee.c688 unsigned char *temp2; /* temporary pointer */ in insert() local
713 temp2=temp - 1; in insert()
714 *temp= *temp2; /* shift characters over by one */ in insert()
771 unsigned char *temp2; in delete() local
780 temp2 = tp = point; in delete()
809 *tp = *temp2; in delete()
811 temp2++; in delete()
828 temp2 = temp_buff->line; in delete()
840 *tp = *temp2; in delete()
842 temp2++; in delete()
[all …]
/freebsd/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m4629 define({temp2},{local3})
655 sll temp1, 1, temp2
666 xor $2, temp2, $2
674 sll temp1, 8, temp2
680 xor $1, temp2, $1
682 ld [out2+264], temp2 ! ip3
687 and temp1, temp2, temp1
688 and local0, temp2, local0
689 sll temp1, 2, temp2
695 xor $2, temp2, $2
[all …]
/freebsd/contrib/telnet/telnet/
H A Dtelnet.c209 char *temp, temp2[11]; in DoBaudRate() local
226 if (NETROOM() < sizeof(temp2)) { in DoBaudRate()
231 snprintf(temp2, sizeof(temp2), "%c%c%c%c....%c%c", IAC, SB, TELOPT_COMPORT, in DoBaudRate()
235 memcpy(&temp2[4], &baudrate, sizeof(baudrate)); in DoBaudRate()
236 ring_supply_data(&netoring, temp2, sizeof(temp2)); in DoBaudRate()
237 printsub('>', &temp[2], sizeof(temp2) - 2); in DoBaudRate()
/freebsd/contrib/bc/src/
H A Dnum.c3705 BcNum temp, temp2, intn, frac; in bc_num_rng() local
3720 bc_num_init(&temp2, n->len); in bc_num_rng()
3758 bc_num_divmod(&frac, &vm->max, &temp, &temp2, 0); in bc_num_rng()
3765 state1 = (BcRand) bc_num_bigdig2(&temp2); in bc_num_rng()
3774 bc_num_divmod(&intn, &vm->max, &temp, &temp2, 0); in bc_num_rng()
3778 inc1 = (BcRand) bc_num_bigdig2(&temp2); in bc_num_rng()
3783 bc_num_copy(&temp2, &temp); in bc_num_rng()
3784 bc_num_mod(&temp2, &vm->max, &temp, 0); in bc_num_rng()
3799 bc_num_free(&temp2); in bc_num_rng()
3808 BcNum conv, temp1, temp2, temp3; in bc_num_createFromRNG() local
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_trap_rcv.c151 uint32_t temp1, temp2; in trap_calc_crc32() local
178 temp2 = crc_table[((int)crc ^ *p++) & 0xFF]; in trap_calc_crc32()
179 crc = temp1 ^ temp2; in trap_calc_crc32()
/freebsd/contrib/dialog/
H A Dinputstr.c444 cchar_t temp2, *temp2p = &temp2; in dlg_index_columns() local
/freebsd/crypto/openssl/crypto/ec/asm/
H A Decp_nistz256-armv8.pl905 my ($rp_real,$ap_real,$bp_real,$in1infty,$in2infty,$temp0,$temp1,$temp2)=map("x$_",(21..28));
1010 mvn $temp2,$in2infty // -1/0 -> 0/-1
1012 orr $acc0,$acc0,$temp2
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-quanta-q71l.dts161 /* temp2 inlet */
H A Daspeed-bmc-lenovo-hr630.dts180 /* temp2 outlet */
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6q-dmo-edmqmx6.dts264 temp2: ad7414@4d { label
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_dispatch_hier.h94 enum sched_type temp2 = scheds[i]; in sort() local
102 scheds[switch_index] = temp2; in sort()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dfsl-lx2160a-bluebox3.dts217 temp2: temperature-sensor@48 { label
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Darmada-385-clearfog-gtr.dtsi432 temp2: temperature-sensor@4d { label

12