Searched refs:comb (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/gcclibs/libdecnumber/
H A Ddecimal128.c83 uInt comb, exp; /* work */ local
143 comb = (exp >> 9) & 0x18; /* combination field */
144 d128->bytes[0] = (uByte) (comb << 2);
172 comb = 0x18 | (msd & 0x01) | ((exp >> 11) & 0x06);
174 comb = (msd & 0x07) | ((exp >> 9) & 0x18);
175 d128->bytes[0] = (uByte) (comb << 2);
218 uInt comb = top >> 2; /* combination field */ local
221 if (comb >= 0x18)
223 msd = 8 + (comb & 0x01);
224 exp = (comb
[all...]
H A Ddecimal32.c83 uInt comb, exp; /* work */ local
143 comb = (exp >> 3) & 0x18; /* combination field */
144 d32->bytes[0] = (uByte) (comb << 2);
169 comb = 0x18 | (msd & 0x01) | ((exp >> 5) & 0x06);
171 comb = (msd & 0x07) | ((exp >> 3) & 0x18);
172 d32->bytes[0] = (uByte) (comb << 2);
215 uInt comb = top >> 2; /* combination field */ local
218 if (comb >= 0x18)
220 msd = 8 + (comb & 0x01);
221 exp = (comb
[all...]
H A Ddecimal64.c83 uInt comb, exp; /* work */ local
143 comb = (exp >> 5) & 0x18; /* combination field */
144 d64->bytes[0] = (uByte) (comb << 2);
168 comb = 0x18 | (msd & 0x01) | ((exp >> 7) & 0x06);
170 comb = (msd & 0x07) | ((exp >> 5) & 0x18);
171 d64->bytes[0] = (uByte) (comb << 2);
214 uInt comb = top >> 2; /* combination field */ local
217 if (comb >= 0x18)
219 msd = 8 + (comb & 0x01);
220 exp = (comb
[all...]
/freebsd-9.3-release/sys/netipsec/
H A Dkey_debug.c180 struct sadb_comb *comb; local
188 / sizeof(*comb);
189 comb = (struct sadb_comb *)(prop + 1);
195 comb->sadb_comb_auth, comb->sadb_comb_encrypt,
196 comb->sadb_comb_flags, comb->sadb_comb_reserved);
200 comb->sadb_comb_auth_minbits,
201 comb->sadb_comb_auth_maxbits,
202 comb
[all...]
H A Dkey.c5987 key_getcomb_setlifetime(comb)
5988 struct sadb_comb *comb;
5991 comb->sadb_comb_soft_allocations = 1;
5992 comb->sadb_comb_hard_allocations = 1;
5993 comb->sadb_comb_soft_bytes = 0;
5994 comb->sadb_comb_hard_bytes = 0;
5995 comb->sadb_comb_hard_addtime = 86400; /* 1 day */
5996 comb->sadb_comb_soft_addtime = comb->sadb_comb_soft_addtime * 80 / 100;
5997 comb
6008 struct sadb_comb *comb; local
6114 struct sadb_comb *comb; local
6172 struct sadb_comb *comb; local
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-address.c348 aff_combination_remove_elt (struct affine_tree_combination *comb, unsigned m) argument
350 comb->n--;
351 if (m <= comb->n)
353 comb->coefs[m] = comb->coefs[comb->n];
354 comb->elts[m] = comb->elts[comb->n];
356 if (comb
[all...]
H A Dtree-ssa-loop-ivopts.c2628 aff_combination_const (struct affine_tree_combination *comb, tree type, argument
2633 comb->type = type;
2634 comb->mask = (((unsigned HOST_WIDE_INT) 2 << (prec - 1)) - 1);
2636 comb->n = 0;
2637 comb->rest = NULL_TREE;
2638 comb->offset = cst & comb->mask;
2644 aff_combination_elt (struct affine_tree_combination *comb, tree type, tree elt) argument
2648 comb->type = type;
2649 comb
2661 aff_combination_scale(struct affine_tree_combination *comb, unsigned HOST_WIDE_INT scale) argument
2703 aff_combination_add_elt(struct affine_tree_combination *comb, tree elt, unsigned HOST_WIDE_INT scale) argument
2771 aff_combination_convert(tree type, struct affine_tree_combination *comb) argument
2802 tree_to_aff_combination(tree expr, tree type, struct affine_tree_combination *comb) argument
2920 unshare_aff_combination(struct affine_tree_combination *comb) argument
2933 aff_combination_to_tree(struct affine_tree_combination *comb) argument
2979 struct affine_tree_combination comb; local
[all...]
H A Dexpmed.c1912 rtx base, a1, a2, v1, v2, comb, shift, result, start;
1963 comb = gen_reg_rtx (dmode);
1964 emit_insn (gen_rtx_CLOBBER (VOIDmode, comb));
1965 emit_move_insn (gen_rtx_SUBREG (mode, comb, 0), v1);
1966 emit_move_insn (gen_rtx_SUBREG (mode, comb, m_size), v2);
1971 comb = v1, v1 = v2, v2 = comb;
1980 comb = expand_simple_binop (dmode, IOR, v1, v2, NULL,
1982 if (comb == NULL)
2009 comb
1905 rtx base, a1, a2, v1, v2, comb, shift, result, start; local
[all...]

Completed in 147 milliseconds