HomeSort by: relevance | last modified time | path
    Searched refs:comb (Results 1 - 25 of 81) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gcc/dist/gcc/
tree-affine.cc 36 /* Extends CST as appropriate for the affine combinations COMB. */
52 /* Initializes affine combination COMB so that its value is zero in TYPE. */
55 aff_combination_zero (aff_tree *comb, tree type)
58 comb->type = type;
59 comb->offset = 0;
60 comb->n = 0;
62 comb->elts[i].coef = 0;
63 comb->rest = NULL_TREE;
66 /* Sets COMB to CST. */
69 aff_combination_const (aff_tree *comb, tree type, const poly_widest_int &cst
433 tree_to_aff_combination (TREE_OPERAND (expr, 0), type, comb); local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-affine.cc 36 /* Extends CST as appropriate for the affine combinations COMB. */
52 /* Initializes affine combination COMB so that its value is zero in TYPE. */
55 aff_combination_zero (aff_tree *comb, tree type)
58 comb->type = type;
59 comb->offset = 0;
60 comb->n = 0;
62 comb->elts[i].coef = 0;
63 comb->rest = NULL_TREE;
66 /* Sets COMB to CST. */
69 aff_combination_const (aff_tree *comb, tree type, const poly_widest_int &cst
433 tree_to_aff_combination (TREE_OPERAND (expr, 0), type, comb); local
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid_dpd.c 32 UINT32 sign, comb, exp; local
37 comb = (ba & 0x7ff00000ul) >> 20;
40 if ((comb & 0x780) == 0x780) {
44 if ((comb & 0x600) == 0x600) { // G0..G1 = 11 -> exp is G2..G11
45 exp = (comb >> 1) & 0xff;
46 bcoeff = ((8 + (comb & 1)) << 20) | trailing;
48 exp = (comb >> 3) & 0xff;
49 bcoeff = ((comb & 7) << 20) | trailing;
61 UINT64 sign, comb, exp; local
66 comb = (ba & 0x7ffc000000000000ull) >> 50
97 UINT32 sign, comb, exp, trailing; local
160 UINT64 sign, comb, exp; local
254 UINT32 sign, comb, exp; local
305 UINT64 sign, comb, exp; local
364 UINT32 comb, exp; local
500 UINT64 exp, comb; local
576 UINT64 sign, comb, exp; local
645 UINT32 sign, comb, exp; local
682 UINT64 sign, comb, exp; local
720 UINT64 sign, comb, exp; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid_dpd.c 32 UINT32 sign, comb, exp; local
37 comb = (ba & 0x7ff00000ul) >> 20;
40 if ((comb & 0x780) == 0x780) {
44 if ((comb & 0x600) == 0x600) { // G0..G1 = 11 -> exp is G2..G11
45 exp = (comb >> 1) & 0xff;
46 bcoeff = ((8 + (comb & 1)) << 20) | trailing;
48 exp = (comb >> 3) & 0xff;
49 bcoeff = ((comb & 7) << 20) | trailing;
61 UINT64 sign, comb, exp; local
66 comb = (ba & 0x7ffc000000000000ull) >> 50
97 UINT32 sign, comb, exp, trailing; local
160 UINT64 sign, comb, exp; local
254 UINT32 sign, comb, exp; local
305 UINT64 sign, comb, exp; local
364 UINT32 comb, exp; local
500 UINT64 exp, comb; local
576 UINT64 sign, comb, exp; local
645 UINT32 sign, comb, exp; local
682 UINT64 sign, comb, exp; local
720 UINT64 sign, comb, exp; local
    [all...]
  /src/lib/libc/arch/hppa/string/
strlcpy.S 53 comb,= %r0, %arg2, $strlcpy_dst_done
69 comb,= %r0, %r1, $strlcpy_exit
78 comb,<>,n %r0, %r1, $strlcpy_dst_done
bcmp.S 69 comb,>= %r0,%arg2,$bcmp_exit
75 comb,<>,n %t1,%t2,$bcmp_exit
  /src/lib/libc/arch/hppa/sys/
__clone.S 47 comb,= %r0, %arg0, 8f
49 comb,= %r0, %arg1, 8f
64 comb,<>,n %r0, %ret1, 9f
__vfork14.S 59 comb,=,n %r0, %t1, 1f
  /src/common/lib/libc/arch/hppa/atomic/
atomic_cas_up.S 40 comb,<>,n %arg1, %ret0, 1f
61 comb,<>,n %arg3, %ret0, 1f
62 comb,<>,n %arg2, %ret1, 1f
76 comb,<>,n %arg1, %ret0, 1f
88 comb,<>,n %arg1, %ret0, 1f
  /src/external/gpl3/gcc/dist/libdecnumber/bid/
bid2dpd_dpd2bid.c 144 d0 = d2b3[((x >> 26) & 1) | 8]; /* d0 = (comb & 0x0100 ? 9 : 8); */
173 UINT64 sign, comb, exp, B34, B01; local
183 comb = (x & 0x7ffc000000000000ull) >> 51;
184 if ((comb & 0xf00) == 0xf00) {
189 if ((comb & 0xc00) == 0xc00) { /* G0..G1 = 11 -> exp is G2..G11 */
190 exp = (comb) & 0x3ff;
195 exp = (comb >> 2) & 0x3ff;
231 UINT64 sign, comb, exp; local
239 comb = (x & 0x7ffc000000000000ull) >> 50;
241 if ((comb & 0x1e00) == 0x1e00)
286 unsigned int comb; local
372 UINT64 exp, comb; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/bid/
bid2dpd_dpd2bid.c 144 d0 = d2b3[((x >> 26) & 1) | 8]; /* d0 = (comb & 0x0100 ? 9 : 8); */
173 UINT64 sign, comb, exp, B34, B01; local
183 comb = (x & 0x7ffc000000000000ull) >> 51;
184 if ((comb & 0xf00) == 0xf00) {
189 if ((comb & 0xc00) == 0xc00) { /* G0..G1 = 11 -> exp is G2..G11 */
190 exp = (comb) & 0x3ff;
195 exp = (comb >> 2) & 0x3ff;
231 UINT64 sign, comb, exp; local
239 comb = (x & 0x7ffc000000000000ull) >> 50;
241 if ((comb & 0x1e00) == 0x1e00)
286 unsigned int comb; local
372 UINT64 exp, comb; local
    [all...]
  /src/external/gpl3/gdb/dist/libdecnumber/bid/
bid2dpd_dpd2bid.c 144 d0 = d2b3[((x >> 26) & 1) | 8]; /* d0 = (comb & 0x0100 ? 9 : 8); */
173 UINT64 sign, comb, exp, B34, B01; local
183 comb = (x & 0x7ffc000000000000ull) >> 51;
184 if ((comb & 0xf00) == 0xf00) {
189 if ((comb & 0xc00) == 0xc00) { /* G0..G1 = 11 -> exp is G2..G11 */
190 exp = (comb) & 0x3ff;
193 exp = (comb >> 2) & 0x3ff;
229 UINT64 sign, comb, exp; local
237 comb = (x & 0x7ffc000000000000ull) >> 50;
239 if ((comb & 0x1e00) == 0x1e00)
284 unsigned int comb; local
356 UINT64 exp, comb; local
    [all...]
  /src/external/gpl3/gdb.old/dist/libdecnumber/bid/
bid2dpd_dpd2bid.c 144 d0 = d2b3[((x >> 26) & 1) | 8]; /* d0 = (comb & 0x0100 ? 9 : 8); */
173 UINT64 sign, comb, exp, B34, B01; local
183 comb = (x & 0x7ffc000000000000ull) >> 51;
184 if ((comb & 0xf00) == 0xf00) {
189 if ((comb & 0xc00) == 0xc00) { /* G0..G1 = 11 -> exp is G2..G11 */
190 exp = (comb) & 0x3ff;
193 exp = (comb >> 2) & 0x3ff;
229 UINT64 sign, comb, exp; local
237 comb = (x & 0x7ffc000000000000ull) >> 50;
239 if ((comb & 0x1e00) == 0x1e00)
284 unsigned int comb; local
356 UINT64 exp, comb; local
    [all...]
  /src/external/gpl3/gcc/dist/libdecnumber/dpd/
decimal32.c 87 uInt comb, exp; /* .. */ local
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
163 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01);
164 else comb=((exp>>3) & 0x18) | msd;
166 targ|=comb<<26; /* add combination field .. */
189 uInt comb; /* combination field */ local
196 comb=(sour>>26)&0x1f; /* combination field */
201 msd=COMBMSD[comb]; /* decode the combination field */
202 exp=COMBEXP[comb]; /* .. */
257 uInt comb; /* combination field * local
    [all...]
decimal128.c 87 uInt comb, exp; /* .. */ local
139 comb=(exp>>9) & 0x18; /* msd=0, exp top 2 bits .. */
160 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01);
161 else comb=((exp>>9) & 0x18) | msd;
163 targhi|=comb<<26; /* add combination field .. */
199 uInt comb; /* combination field */ local
222 comb=(sourhi>>26)&0x1f; /* combination field */
227 msd=COMBMSD[comb]; /* decode the combination field */
228 exp=COMBEXP[comb]; /* .. */
286 uInt comb; /* combination field * local
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/dpd/
decimal32.c 87 uInt comb, exp; /* .. */ local
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
163 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01);
164 else comb=((exp>>3) & 0x18) | msd;
166 targ|=comb<<26; /* add combination field .. */
189 uInt comb; /* combination field */ local
196 comb=(sour>>26)&0x1f; /* combination field */
201 msd=COMBMSD[comb]; /* decode the combination field */
202 exp=COMBEXP[comb]; /* .. */
257 uInt comb; /* combination field * local
    [all...]
decimal128.c 87 uInt comb, exp; /* .. */ local
139 comb=(exp>>9) & 0x18; /* msd=0, exp top 2 bits .. */
160 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01);
161 else comb=((exp>>9) & 0x18) | msd;
163 targhi|=comb<<26; /* add combination field .. */
199 uInt comb; /* combination field */ local
222 comb=(sourhi>>26)&0x1f; /* combination field */
227 msd=COMBMSD[comb]; /* decode the combination field */
228 exp=COMBEXP[comb]; /* .. */
286 uInt comb; /* combination field * local
    [all...]
  /src/external/gpl3/gdb/dist/libdecnumber/dpd/
decimal32.c 87 uInt comb, exp; /* .. */ local
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
163 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01);
164 else comb=((exp>>3) & 0x18) | msd;
166 targ|=comb<<26; /* add combination field .. */
189 uInt comb; /* combination field */ local
196 comb=(sour>>26)&0x1f; /* combination field */
201 msd=COMBMSD[comb]; /* decode the combination field */
202 exp=COMBEXP[comb]; /* .. */
257 uInt comb; /* combination field * local
    [all...]
decimal128.c 87 uInt comb, exp; /* .. */ local
139 comb=(exp>>9) & 0x18; /* msd=0, exp top 2 bits .. */
160 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01);
161 else comb=((exp>>9) & 0x18) | msd;
163 targhi|=comb<<26; /* add combination field .. */
199 uInt comb; /* combination field */ local
222 comb=(sourhi>>26)&0x1f; /* combination field */
227 msd=COMBMSD[comb]; /* decode the combination field */
228 exp=COMBEXP[comb]; /* .. */
286 uInt comb; /* combination field * local
    [all...]
  /src/external/gpl3/gdb.old/dist/libdecnumber/dpd/
decimal32.c 87 uInt comb, exp; /* .. */ local
135 comb=(exp>>3) & 0x18; /* msd=0, exp top 2 bits .. */
163 if (msd>=8) comb=0x18 | ((exp>>5) & 0x06) | (msd & 0x01);
164 else comb=((exp>>3) & 0x18) | msd;
166 targ|=comb<<26; /* add combination field .. */
189 uInt comb; /* combination field */ local
196 comb=(sour>>26)&0x1f; /* combination field */
201 msd=COMBMSD[comb]; /* decode the combination field */
202 exp=COMBEXP[comb]; /* .. */
257 uInt comb; /* combination field * local
    [all...]
decimal128.c 87 uInt comb, exp; /* .. */ local
139 comb=(exp>>9) & 0x18; /* msd=0, exp top 2 bits .. */
160 if (msd>=8) comb=0x18 | ((exp>>11) & 0x06) | (msd & 0x01);
161 else comb=((exp>>9) & 0x18) | msd;
163 targhi|=comb<<26; /* add combination field .. */
199 uInt comb; /* combination field */ local
222 comb=(sourhi>>26)&0x1f; /* combination field */
227 msd=COMBMSD[comb]; /* decode the combination field */
228 exp=COMBEXP[comb]; /* .. */
286 uInt comb; /* combination field * local
    [all...]
  /src/sys/arch/hppa/hppa/
support.S 80 comb,=,n %arg2, %r0, fdc_none /* no bytes, no flush */
86 comb,< %arg2, %t1, fdc_short /* check for count < 16 * stride */
109 comb,<<,n %arg1, %t1, fdc_long
112 comb,<<,n %arg1, %arg0, fdc_short
133 comb,= %arg2, %r0, pdc_none /* no bytes, no purge */
139 comb,< %arg2, %t1, pdc_short /* check for count < 16 * stride */
162 comb,<<,n %arg1, %t1, pdc_long
165 comb,<<,n %arg1, %arg0, pdc_short
186 comb,= %arg2, %r0, fic_none /* no bytes, no flush */
192 comb,< %arg2, %t1, fic_short /* check for count < 16 * stride *
    [all...]
  /src/sys/netipsec/
key_debug.c 184 const struct sadb_comb *comb; local
192 / sizeof(*comb);
193 comb = (const void *)(prop + 1);
199 comb->sadb_comb_auth, comb->sadb_comb_encrypt,
200 comb->sadb_comb_flags, comb->sadb_comb_reserved);
204 comb->sadb_comb_auth_minbits,
205 comb->sadb_comb_auth_maxbits,
206 comb->sadb_comb_encrypt_minbits
    [all...]
  /src/crypto/dist/ipsec-tools/src/libipsec/
key_debug.c 231 struct sadb_comb *comb; local
239 / sizeof(*comb);
240 comb = (void *)(prop + 1);
246 comb->sadb_comb_auth, comb->sadb_comb_encrypt,
247 comb->sadb_comb_flags, comb->sadb_comb_reserved);
251 comb->sadb_comb_auth_minbits,
252 comb->sadb_comb_auth_maxbits,
253 comb->sadb_comb_encrypt_minbits
    [all...]
  /src/common/dist/zlib/
crc32.c 864 z_word_t crc0, word0, comb; local
965 comb = crc_word_big(crc0 ^ words[0]);
967 comb = crc_word_big(crc1 ^ words[1] ^ comb);
969 comb = crc_word_big(crc2 ^ words[2] ^ comb);
971 comb = crc_word_big(crc3 ^ words[3] ^ comb);
973 comb = crc_word_big(crc4 ^ words[4] ^ comb);
    [all...]

Completed in 56 milliseconds

1 2 3 4