Home
last modified time | relevance | path

Searched refs:comb (Results 1 – 25 of 54) sorted by relevance

123

/openbsd-src/gnu/gcc/libdecnumber/
H A Ddecimal128.c83 uInt comb, exp; /* work */ in decimal128FromNumber() local
143 comb = (exp >> 9) & 0x18; /* combination field */ in decimal128FromNumber()
144 d128->bytes[0] = (uByte) (comb << 2); in decimal128FromNumber()
172 comb = 0x18 | (msd & 0x01) | ((exp >> 11) & 0x06); in decimal128FromNumber()
174 comb = (msd & 0x07) | ((exp >> 9) & 0x18); in decimal128FromNumber()
175 d128->bytes[0] = (uByte) (comb << 2); in decimal128FromNumber()
218 uInt comb = top >> 2; /* combination field */ in decimal128ToNumber() local
221 if (comb >= 0x18) in decimal128ToNumber()
223 msd = 8 + (comb & 0x01); in decimal128ToNumber()
224 exp = (comb & 0x06) << 11; /* MSBs */ in decimal128ToNumber()
[all …]
H A Ddecimal64.c83 uInt comb, exp; /* work */ in decimal64FromNumber() local
143 comb = (exp >> 5) & 0x18; /* combination field */ in decimal64FromNumber()
144 d64->bytes[0] = (uByte) (comb << 2); in decimal64FromNumber()
168 comb = 0x18 | (msd & 0x01) | ((exp >> 7) & 0x06); in decimal64FromNumber()
170 comb = (msd & 0x07) | ((exp >> 5) & 0x18); in decimal64FromNumber()
171 d64->bytes[0] = (uByte) (comb << 2); in decimal64FromNumber()
214 uInt comb = top >> 2; /* combination field */ in decimal64ToNumber() local
217 if (comb >= 0x18) in decimal64ToNumber()
219 msd = 8 + (comb & 0x01); in decimal64ToNumber()
220 exp = (comb & 0x06) << 7; /* MSBs */ in decimal64ToNumber()
[all …]
H A Ddecimal32.c83 uInt comb, exp; /* work */ in decimal32FromNumber() local
143 comb = (exp >> 3) & 0x18; /* combination field */ in decimal32FromNumber()
144 d32->bytes[0] = (uByte) (comb << 2); in decimal32FromNumber()
169 comb = 0x18 | (msd & 0x01) | ((exp >> 5) & 0x06); in decimal32FromNumber()
171 comb = (msd & 0x07) | ((exp >> 3) & 0x18); in decimal32FromNumber()
172 d32->bytes[0] = (uByte) (comb << 2); in decimal32FromNumber()
215 uInt comb = top >> 2; /* combination field */ in decimal32ToNumber() local
218 if (comb >= 0x18) in decimal32ToNumber()
220 msd = 8 + (comb & 0x01); in decimal32ToNumber()
221 exp = (comb & 0x06) << 5; /* MSBs */ in decimal32ToNumber()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dtree-ssa-loop-ivopts.c2628 aff_combination_const (struct affine_tree_combination *comb, tree type, in aff_combination_const() argument
2633 comb->type = type; in aff_combination_const()
2634 comb->mask = (((unsigned HOST_WIDE_INT) 2 << (prec - 1)) - 1); in aff_combination_const()
2636 comb->n = 0; in aff_combination_const()
2637 comb->rest = NULL_TREE; in aff_combination_const()
2638 comb->offset = cst & comb->mask; in aff_combination_const()
2644 aff_combination_elt (struct affine_tree_combination *comb, tree type, tree elt) in aff_combination_elt() argument
2648 comb->type = type; in aff_combination_elt()
2649 comb->mask = (((unsigned HOST_WIDE_INT) 2 << (prec - 1)) - 1); in aff_combination_elt()
2651 comb->n = 1; in aff_combination_elt()
[all …]
H A Dtree-ssa-address.c348 aff_combination_remove_elt (struct affine_tree_combination *comb, unsigned m) in aff_combination_remove_elt() argument
350 comb->n--; in aff_combination_remove_elt()
351 if (m <= comb->n) in aff_combination_remove_elt()
353 comb->coefs[m] = comb->coefs[comb->n]; in aff_combination_remove_elt()
354 comb->elts[m] = comb->elts[comb->n]; in aff_combination_remove_elt()
356 if (comb->rest) in aff_combination_remove_elt()
358 comb->coefs[comb->n] = 1; in aff_combination_remove_elt()
359 comb->elts[comb->n] = comb->rest; in aff_combination_remove_elt()
360 comb->rest = NULL_TREE; in aff_combination_remove_elt()
361 comb->n++; in aff_combination_remove_elt()
/openbsd-src/sbin/ipsecctl/
H A Dpfkdump.c531 print_comb(struct sadb_comb *comb, struct sadb_msg *msg, int opts) in print_comb() argument
537 lookup_name(auth_types, comb->sadb_comb_auth), in print_comb()
538 comb->sadb_comb_auth_minbits, in print_comb()
539 comb->sadb_comb_auth_maxbits, in print_comb()
540 lookup_name(enc_types, comb->sadb_comb_encrypt), in print_comb()
541 comb->sadb_comb_encrypt_minbits, in print_comb()
542 comb->sadb_comb_encrypt_maxbits, in print_comb()
543 comb->sadb_comb_soft_addtime, in print_comb()
544 comb->sadb_comb_hard_addtime, in print_comb()
545 comb->sadb_comb_soft_usetime, in print_comb()
[all …]
/openbsd-src/lib/libz/
H A Dcrc32.c860 z_word_t crc0, word0, comb; in crc32_z() local
961 comb = crc_word_big(crc0 ^ words[0]); in crc32_z()
963 comb = crc_word_big(crc1 ^ words[1] ^ comb); in crc32_z()
965 comb = crc_word_big(crc2 ^ words[2] ^ comb); in crc32_z()
967 comb = crc_word_big(crc3 ^ words[3] ^ comb); in crc32_z()
969 comb = crc_word_big(crc4 ^ words[4] ^ comb); in crc32_z()
971 comb = crc_word_big(crc5 ^ words[5] ^ comb); in crc32_z()
978 crc = byte_swap(comb); in crc32_z()
/openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Dcrc32.c862 z_word_t crc0, word0, comb; in crc32_z()
963 comb = crc_word_big(crc0 ^ words[0]); in crc32_z()
965 comb = crc_word_big(crc1 ^ words[1] ^ comb); in crc32_z()
967 comb = crc_word_big(crc2 ^ words[2] ^ comb); in crc32_z()
969 comb = crc_word_big(crc3 ^ words[3] ^ comb); in crc32_z()
971 comb = crc_word_big(crc4 ^ words[4] ^ comb); in crc32_z()
919 z_word_t crc0, word0, comb; crc32_z() local
[all...]
/openbsd-src/sys/lib/libz/
H A Dcrc32.c860 z_word_t crc0, word0, comb; in crc32_z() local
961 comb = crc_word_big(crc0 ^ words[0]); in crc32_z()
963 comb = crc_word_big(crc1 ^ words[1] ^ comb); in crc32_z()
965 comb = crc_word_big(crc2 ^ words[2] ^ comb); in crc32_z()
967 comb = crc_word_big(crc3 ^ words[3] ^ comb); in crc32_z()
969 comb = crc_word_big(crc4 ^ words[4] ^ comb); in crc32_z()
971 comb = crc_word_big(crc5 ^ words[5] ^ comb); in crc32_z()
978 crc = byte_swap(comb); in crc32_z()
/openbsd-src/gnu/usr.bin/gcc/gcc/config/m68hc11/
H A Dlarith.asm430 comb
435 comb
440 comb
445 comb
454 comb
457 comb
470 comb
473 comb
635 comb
697 comb ; D = -D <=> D = (~D) + 1
[all …]
/openbsd-src/gnu/gcc/gcc/config/m68hc11/
H A Dlarith.asm430 comb
435 comb
440 comb
445 comb
454 comb
457 comb
470 comb
473 comb
635 comb
697 comb ; D = -D <=> D = (~D) + 1
[all …]
/openbsd-src/sys/lib/libkern/arch/hppa/
H A Dmilli.S1081 x0: comb,<> %r25,0,l2 ! zdep %r26,23,24,%r26 ! bv,n 0(r31) ! nop
1083 x1: comb,<> %r25,0,l1 ! add %r29,%r26,%r29 ! bv,n 0(r31) ! nop
1085 x2: comb,<> %r25,0,l1 ! sh1add %r26,%r29,%r29 ! bv,n 0(r31) ! nop
1087 x3: comb,<> %r25,0,l0 ! sh1add %r26,%r26,%r1 ! bv 0(r31) ! add %r29,%r1,%r29
1089 x4: comb,<> %r25,0,l1 ! sh2add %r26,%r29,%r29 ! bv,n 0(r31) ! nop
1091 x5: comb,<> %r25,0,l0 ! sh2add %r26,%r26,%r1 ! bv 0(r31) ! add %r29,%r1,%r29
1093 x6: sh1add %r26,%r26,%r1 ! comb,<> %r25,0,l1 ! sh1add %r1,%r29,%r29 ! bv,n 0(r31)
1095 x7: sh1add %r26,%r26,%r1 ! comb,<> %r25,0,l0 ! sh2add %r26,%r29,%r29 ! b,n ret_t0
1097 x8: comb,<> %r25,0,l1 ! sh3add %r26,%r29,%r29 ! bv,n 0(r31) ! nop
1099 x9: comb,<> %r25,0,l0 ! sh3add %r26,%r26,%r1 ! bv 0(r31) ! add %r29,%r1,%r29
[all …]
H A Dbcopy.S46 comb,>,n arg0, arg1, $bcopy.reverse
55 comb,<> t3, t4, $bcopy_f.unaligned
133 comb,>=,n r0, arg2, $bcopy_f.done
149 comb,>=,n r0, arg2, $bcopy_r.done
/openbsd-src/lib/libc/arch/hppa/string/
H A Dmemmove.S42 comb,>,n arg0, arg1, $bcopy.reverse
51 comb,<> t3, t4, $bcopy_f.unaligned
129 comb,>=,n r0, arg2, $bcopy_f.done
145 comb,>=,n r0, arg2, $bcopy_r.done
/openbsd-src/sys/arch/hppa/hppa/
H A Dlocore.S189 comb,= r0, ret0, pdc_call_unmapped1
244 comb,= r0, ret0, pdc_call_unmapped2
279 comb,= r0, t1, pdc_call_unmapped3
795 comb,<>,n r0, r1, excpt_emulate
797 comb,<>,n r0, r1, excpt_emulate
799 comb,<>,n r0, r1, excpt_emulate
801 comb,<>,n r0, r1, excpt_emulate
803 comb,<>,n r0, r1, excpt_emulate
805 comb,<>,n r0, r1, excpt_emulate
893 comb,=,n r16, r0, $fpusw_nosave
[all …]
/openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.disasm/
H A Dhppa.s289 comb %r0,%r4,comb_tests_1
290 comb,= %r0,%r4,comb_tests_1
291 comb,< %r0,%r4,comb_tests_1
292 comb,<= %r0,%r4,comb_tests_1
293 comb,<< %r0,%r4,comb_tests_1
294 comb,<<= %r0,%r4,comb_tests_1
295 comb,sv %r0,%r4,comb_tests_1
296 comb,od %r0,%r4,comb_tests_1
299 comb,tr %r0,%r4,comb_tests_2
300 comb,<> %r0,%r4,comb_tests_2
[all …]
/openbsd-src/regress/usr.bin/lam/
H A Din1.txt3 comb
H A Dexpect_noarg.txt3 comb é3byte ‒truncate
H A Dexpect_Fback.txt3 0000comb é0003byte ‒ trunca
H A Dexpect_fonly.txt3 comb é3byte ‒truncate
H A Dexpect_pminus.txt3 | comb é|3byte ‒ |truncate
/openbsd-src/lib/libc/arch/hppa/sys/
H A Dtfork_thread.S35 comb,<> r0, ret0, 1f
H A DOvfork.S38 comb,= r0, t1, 1f
H A Dsigprocmask.S35 comb,<>,n r0, arg1, sigprocmask$nblock
/openbsd-src/gnu/gcc/gcc/config/pa/
H A Dmilli64.S340 comb,=,n arg1,temp,LREF(regular_seq) /* test against 0x80000000 and 0 */
345 comb,=,n arg0,retreg,LREF(regular_seq) /* test against 0x80000000 */
758 comb,>,n 0,arg0,LREF(neg_num) /* is numerator < 0 ? */
771 comb,=,n arg1,tmp,LREF(regular_seq) /* test against 0x80000000 and 0 */
775 comb,>,n 0,arg0,LREF(neg_num_2) /* if arg0 < 0, negate it */
1320 comb,<,N x2,0,LREF(neg3)
1348 comb,<,N x2,0,LREF(neg5)
1375 comb,<,N x2,0,LREF(neg6)
1427 comb,< x2,0,LREF(neg10)
1460 comb,< x2,0,LREF(neg12)
[all …]

123