Home
last modified time | relevance | path

Searched refs:temp1 (Results 1 – 25 of 30) 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');
31 lbu $temp1,0($in_a)
36 xor $temp1,$temp1,$temp2
37 or $x,$x,$temp1
45 my ($ptr,$len,$temp1,$temp2) = ('a0','a1','t0','t1');
56 srli $temp1,$len,4
57 bnez $temp1,3f # len > 15
68 andi $temp1,$ptr,0x7
69 beqz $temp1,4f
H A Driscv32cpuid.pl18 my ($in_a,$in_b,$len,$x,$temp1,$temp2) = ('a0','a1','a2','t0','t1','t2');
31 lbu $temp1,0($in_a)
36 xor $temp1,$temp1,$temp2
37 or $x,$x,$temp1
45 my ($ptr,$len,$temp1,$temp2) = ('a0','a1','t0','t1');
56 srli $temp1,$len,4
57 bnez $temp1,3f # len > 15
68 andi $temp1,$ptr,0x3
69 beqz $temp1,4f
H A Dloongarch64cpuid.pl25 my ($in_a,$in_b,$len,$m,$temp1,$temp2) = ($a0,$a1,$a2,$t0,$t1,$t2);
38 ld.bu $temp1,$in_a,0
43 xor $temp1,$temp1,$temp2
44 or $m,$m,$temp1
52 my ($ptr,$len,$temp1,$temp2) = ($a0,$a1,$t0,$t1);
63 srli.d $temp1,$len,4
64 bnez $temp1,3f # len > 15
75 andi $temp1,$ptr,0x7
76 beqz $temp1,4f
/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()
166 oss << "[" << temp1 << "]; "; in toString()
170 getAtomStr(temp1); in toString()
171 oss << temp1; in toString()
184 getBranchAddressStr(temp1); in toString()
185 oss << temp1; in toString()
189 getISyncStr(temp1); in toString()
[all …]
/freebsd/contrib/ncurses/ncurses/base/
H A Dlib_delch.c57 NCURSES_CH_T *temp1 = &(line->text[win->_curx]); in NCURSES_EXPORT() local
58 const NCURSES_CH_T *temp2 = temp1 + 1; in NCURSES_EXPORT()
61 while (temp1 < end) in NCURSES_EXPORT()
62 *temp1++ = *temp2++; in NCURSES_EXPORT()
64 *temp1 = blank; in NCURSES_EXPORT()
H A Dlib_insch.c92 NCURSES_CH_T *temp1 = &(line->text[win->_maxx]); in NCURSES_EXPORT() local
93 const NCURSES_CH_T *temp2 = temp1 - 1; in NCURSES_EXPORT()
98 while (temp1 > end) in NCURSES_EXPORT()
99 *temp1-- = *temp2--; in NCURSES_EXPORT()
101 *temp1 = _nc_render(win, wch); in NCURSES_EXPORT()
/freebsd/sys/arm/arm/
H A Dstdatomic.c196 uint32_t temp1, temp2; \
213 : "=&r" (old.v32), "=m" (*mem32), "=&r" (temp1), \
229 uint32_t negmask, temp1, temp2; \
253 : "=&r" (old), "=m" (*mem32), "=&r" (temp1), \
269 uint32_t negmask, temp1, temp2; \
289 : "=&r" (old.v32), "=m" (*mem32), "=&r" (temp1), \
307 uint32_t temp1, temp2; \
321 : "=&r" (old.v32), "=m" (*mem32), "=&r" (temp1), \
380 uint32_t old, temp1, temp2; \
390 : "=&r" (old), "=m" (*mem), "=&r" (temp1), \
/freebsd/contrib/ncurses/ncurses/widechar/
H A Dlib_ins_wch.c65 NCURSES_CH_T *temp1 = &(line->text[win->_maxx]); in NCURSES_EXPORT() local
66 const NCURSES_CH_T *temp2 = temp1 - cells; in NCURSES_EXPORT()
69 while (temp1 > end) in NCURSES_EXPORT()
70 *temp1-- = *temp2--; in NCURSES_EXPORT()
72 *temp1 = _nc_render(win, *wch); in NCURSES_EXPORT()
74 SetWidecExt(temp1[cell], cell); in NCURSES_EXPORT()
/freebsd/crypto/krb5/src/lib/crypto/builtin/des/
H A Df_tables.h232 unsigned DES_INT32 temp1; \
234 DES_INITIAL_PERM((left), (right), (temp1)); \
237 DES_SP_ENCRYPT_ROUND((left), (right), (temp1), (kp)); \
239 DES_SP_ENCRYPT_ROUND((right), (left), (temp1), (kp)); \
242 DES_FINAL_PERM((left), (right), (temp1)); \
/freebsd/crypto/krb5/src/lib/crypto/builtin/sha2/
H A Dsha256.c178 uint32_t temp1, temp2; in swap_uint32_t() local
180 temp1 = cshift(t, 16); in swap_uint32_t()
181 temp2 = temp1 >> 8; in swap_uint32_t()
182 temp1 &= 0x00ff00ff; in swap_uint32_t()
184 temp1 <<= 8; in swap_uint32_t()
185 return temp1 | temp2; in swap_uint32_t()
/freebsd/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m4628 define({temp1},{out4})
639 sll out5, 29, temp1
647 or $2, temp1, $2
649 srl $2, 1, temp1
650 xor temp1, $1, temp1
652 and temp1, ip5, temp1
655 sll temp1, 1, temp2
656 xor $1, temp1, $1
665 srl $1, 8, temp1
670 xor temp1, $2, temp1
[all …]
/freebsd/contrib/ee/
H A Dee.c3906 unsigned char *temp1, *temp2; in Format() local
3951 line = temp1 = point; in Format()
3952 …while ((*temp1 != '\0') && (*temp1 != ' ') && (*temp1 != '\t') && (counter < curr_line->line_lengt… in Format()
3954 *temp2 = *temp1; in Format()
3956 temp1++; in Format()
4506 unsigned char *temp1, *temp2; in Auto_Format() local
4548 line = temp1 = point; in Auto_Format()
4549 …while ((*temp1 != '\0') && (*temp1 != ' ') && (*temp1 != '\t') && (counter < curr_line->line_lengt… in Auto_Format()
4551 *temp2 = *temp1; in Auto_Format()
4553 temp1++; in Auto_Format()
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_trap_rcv.c151 uint32_t temp1, temp2; in trap_calc_crc32() local
177 temp1 = (crc >> 8) & 0x00FFFFFFL; in trap_calc_crc32()
179 crc = temp1 ^ temp2; in trap_calc_crc32()
/freebsd/contrib/dialog/
H A Dtextbox.c598 bool temp, temp1; in perform_search() local
627 temp1 = obj->end_reached; in perform_search()
655 obj->end_reached = temp1; in perform_search()
/freebsd/contrib/sendmail/src/
H A Ddomain.c1182 register char *temp1; local
1187 temp1 = mxhosts[i];
1189 mxhosts[j] = temp1;
/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));
1009 mvn $temp1,$in1infty // -1/0 -> 0/-1
1011 orr $acc0,$acc0,$temp1
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-quanta-q71l.dts173 /* temp1 */
H A Daspeed-bmc-lenovo-hr630.dts171 /* temp1 inlet */
H A Daspeed-bmc-lenovo-hr855xg2.dts272 /* temp1 */
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6q-dmo-edmqmx6.dts259 temp1: ad7414@4c { label
/freebsd/contrib/bc/src/
H A Dnum.c3808 BcNum conv, temp1, temp2, temp3; in bc_num_createFromRNG() local
3823 bc_num_setup(&temp1, temp1_num, sizeof(temp1_num) / sizeof(BcDig)); in bc_num_createFromRNG()
3843 bc_num_mul(&conv, &vm->max, &temp1, 0); in bc_num_createFromRNG()
3847 bc_num_add(&conv, &temp1, &temp2, 0); in bc_num_createFromRNG()
3859 bc_num_mul(&conv, &vm->max, &temp1, 0); in bc_num_createFromRNG()
3863 bc_num_add(&conv, &temp1, &temp2, 0); in bc_num_createFromRNG()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_dispatch_hier.h93 kmp_hier_layer_e temp1 = layers[i]; in sort() local
101 layers[switch_index] = temp1; in sort()
/freebsd/sys/contrib/device-tree/src/arm64/freescale/
H A Dfsl-lx2160a-bluebox3.dts224 temp1: temperature-sensor@4c { label
/freebsd/sys/contrib/device-tree/src/arm/marvell/
H A Darmada-385-clearfog-gtr.dtsi426 temp1: temperature-sensor@4c { label
/freebsd/sys/dev/irdma/
H A Dirdma_ctrl.c3446 u64 qp_ctx, temp, temp1; in irdma_sc_ccq_get_cqe_info() local
3483 get_64bit_val(cqe, IRDMA_BYTE_16, &temp1); in irdma_sc_ccq_get_cqe_info()
3484 info->op_ret_val = (u32)FIELD_GET(IRDMA_CCQ_OPRETVAL, temp1); in irdma_sc_ccq_get_cqe_info()
3486 get_64bit_val(cqp->sq_base[wqe_idx].elem, IRDMA_BYTE_24, &temp1); in irdma_sc_ccq_get_cqe_info()
3487 info->op_code = (u8)FIELD_GET(IRDMA_CQPSQ_OPCODE, temp1); in irdma_sc_ccq_get_cqe_info()

12