HomeSort by: relevance | last modified time | path
    Searched defs:comb (Results 1 - 16 of 16) sorted by relevancy

  /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...]
key.c 6492 key_getcomb_setlifetime(struct sadb_comb *comb)
6495 comb->sadb_comb_soft_allocations = 1;
6496 comb->sadb_comb_hard_allocations = 1;
6497 comb->sadb_comb_soft_bytes = 0;
6498 comb->sadb_comb_hard_bytes = 0;
6499 comb->sadb_comb_hard_addtime = 86400; /* 1 day */
6500 comb->sadb_comb_soft_addtime = comb->sadb_comb_hard_addtime * 80 / 100;
6501 comb->sadb_comb_hard_usetime = 28800; /* 8 hours */
6502 comb->sadb_comb_soft_usetime = comb->sadb_comb_hard_usetime * 80 / 100
6512 struct sadb_comb *comb; local
6609 struct sadb_comb *comb; local
6673 struct sadb_comb *comb; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libdecnumber/dpd/
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...]
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...]
decimal64.c 93 uInt comb, exp; /* .. */ local
143 comb=(exp>>5) & 0x18; /* msd=0, exp top 2 bits .. */
181 if (msd>=8) comb=0x18 | ((exp>>7) & 0x06) | (msd & 0x01);
182 else comb=((exp>>5) & 0x18) | msd;
184 targhi|=comb<<26; /* add combination field .. */
216 uInt comb; /* combination field */ local
233 comb=(sourhi>>26)&0x1f; /* combination field */
238 msd=COMBMSD[comb]; /* decode the combination field */
239 exp=COMBEXP[comb]; /* .. */
302 uInt comb; /* combination field * 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/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...]
  /src/external/gpl3/binutils/dist/zlib/
crc32.c 862 z_word_t crc0, word0, comb; local
963 comb = crc_word_big(crc0 ^ words[0]);
965 comb = crc_word_big(crc1 ^ words[1] ^ comb);
967 comb = crc_word_big(crc2 ^ words[2] ^ comb);
969 comb = crc_word_big(crc3 ^ words[3] ^ comb);
971 comb = crc_word_big(crc4 ^ words[4] ^ comb);
    [all...]
  /src/external/gpl3/binutils.old/dist/zlib/
crc32.c 910 z_word_t crc0, word0, comb; local
1011 comb = crc_word_big(crc0 ^ words[0]);
1013 comb = crc_word_big(crc1 ^ words[1] ^ comb);
1015 comb = crc_word_big(crc2 ^ words[2] ^ comb);
1017 comb = crc_word_big(crc3 ^ words[3] ^ comb);
1019 comb = crc_word_big(crc4 ^ words[4] ^ comb);
    [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/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...]
tree-ssa-loop-ivopts.cc 1199 aff_tree comb; local
1200 tree_to_aff_combination (expr, TREE_TYPE (expr), &comb);
1201 base = fold_convert (TREE_TYPE (base), aff_combination_to_tree (&comb));
tree-ssa-reassoc.cc 4249 tree comb; local
4251 comb = maybe_fold_and_comparisons (type, cmp0, lhs0, rhs0,
4254 comb = maybe_fold_or_comparisons (type, cmp0, lhs0, rhs0,
4258 if (comb == NULL)
4269 print_generic_expr (dump_file, comb);
4274 tree exp = force_gimple_operand_gsi (&gsi, comb, true, NULL_TREE,
  /src/external/gpl3/gcc.old/dist/libdecnumber/
decCommon.c 1236 uInt comb; /* combination field */ local
1258 comb=sourhi>>26; /* sign+combination field */
1259 msd=DECCOMBMSD[comb]; /* decode the combination field */
1260 exp=DECCOMBEXP[comb]; /* .. */
1515 uInt comb; /* combination field */ local
1537 comb=sourhi>>26; /* sign+combination field */
1538 msd=DECCOMBMSD[comb]; /* decode the combination field */
1539 exp=DECCOMBEXP[comb]; /* .. */
  /src/external/gpl3/binutils/dist/bfd/
elf32-arm.c 14324 static const int *const comb[] = local
14373 result = comb[tagh - T(V6T2)] ? comb[tagh - T(V6T2)][tagl] : -1;
  /src/external/gpl3/binutils.old/dist/bfd/
elf32-arm.c 14451 const int *comb[] = local
14500 result = comb[tagh - T(V6T2)] ? comb[tagh - T(V6T2)][tagl] : -1;

Completed in 93 milliseconds