| /src/sys/opencrypto/ |
| ocryptodev.c | 199 struct crypt_op cop; local 201 cop.ses = ocop->ses; 202 cop.op = ocop->op; 203 cop.flags = ocop->flags; 204 cop.len = ocop->len; 205 cop.src = ocop->src; 206 cop.dst = ocop->dst; 207 cop.mac = ocop->mac; 208 cop.iv = ocop->iv; 209 cop.dst_len = 0 [all...] |
| cryptodev.c | 230 struct crypt_op *cop; local 344 cop = (struct crypt_op *)data; 345 cse = csefind(fcr, cop->ses); 351 error = cryptodev_op(cse, cop, curlwp); 454 cryptodev_op(struct csession *cse, struct crypt_op *cop, struct lwp *l) 459 int iov_len = cop->len; 463 if (cop->len > 256*1024-4) 467 if (cop->len < cse->txform->blocksize 468 + (cop->iv ? 0 : cse->txform->ivsize) || 469 (cop->len - (cop->iv ? 0 : cse->txform->ivsize) [all...] |
| /src/sys/nfs/ |
| nfs_clntsubs.c | 480 off_t *cookies = NULL, *cop; local 509 for (cop = cookies; len > 0; len -= dp->d_reclen) { 512 if ((*cop >> 32) != 0 && (*cop & 0xffffffffLL) == 0) { 519 cop++;
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimple-harden-conditionals.cc | 220 /* Build a cond stmt out of COP, LHS, RHS, insert it before *GSIP with 229 int flags, enum tree_code cop, tree lhs, tree rhs) 233 gcond *cond = gimple_build_cond (cop, lhs, rhs, NULL, NULL); 281 RHS's values (see detach_value above) for the COP compare. */ 285 enum tree_code cop, tree lhs, tree rhs) 305 insert_check_and_trap (loc, &gsik, flags, cop, lhs, rhs); 344 l1': if (x' cop y') goto l1'trap; else goto l1; 346 l2': if (x' cop y') goto l2; else goto l2'trap; 349 where cop is a complementary boolean operation to op; l1', l1'trap, 360 enum tree_code cop = invert_tree_comparison (op, HONOR_NANS (lhs)) local 453 enum tree_code cop; local [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| gimple-harden-conditionals.cc | 211 /* Build a cond stmt out of COP, LHS, RHS, insert it before *GSIP with 220 int flags, enum tree_code cop, tree lhs, tree rhs) 224 gcond *cond = gimple_build_cond (cop, lhs, rhs, NULL, NULL); 270 values (see detach_value above) for the COP compare. */ 274 enum tree_code cop, tree lhs, tree rhs) 298 insert_check_and_trap (loc, &gsik, flags, cop, lhs, rhs); 325 l1': if (x' cop y') goto l1'trap; else goto l1; 327 l2': if (x' cop y') goto l2; else goto l2'trap; 330 where cop is a complementary boolean operation to op; l1', l1'trap, 341 enum tree_code cop = invert_tree_comparison (op, HONOR_NANS (lhs)) local 420 enum tree_code cop; local [all...] |
| /src/bin/test/ |
| test.c | 108 static const struct t_op cop[] = { variable in typeref:struct:t_op 804 return bsearch(s, cop, __arraycount(cop), sizeof(*cop),
|
| /src/external/gpl3/gcc/dist/gcc/c-family/ |
| c-pretty-print.cc | 1968 tree cop = build3_loc (loc, COMPONENT_REF, TREE_TYPE (field), 1971 if (tree ret = c_fold_indirect_ref_for_warn (loc, type, cop, 1974 return cop; 1965 tree cop = build3_loc (loc, COMPONENT_REF, TREE_TYPE (field), local
|
| /src/external/gpl3/gcc.old/dist/gcc/c-family/ |
| c-pretty-print.cc | 1906 tree cop = build3_loc (loc, COMPONENT_REF, TREE_TYPE (field), 1909 if (tree ret = c_fold_indirect_ref_for_warn (loc, type, cop, 1912 return cop; 1903 tree cop = build3_loc (loc, COMPONENT_REF, TREE_TYPE (field), local
|
| /src/usr.bin/xlint/lint1/ |
| tree.c | 1857 is_confusing_precedence(op_t op, const tnode_t *operand, op_t *cop) 1865 return *cop = oop, true; 1871 return *cop = oop, true; 1878 return *cop = oop, true; 1905 op_t cop; local 1906 if (is_confusing_precedence(tn->tn_op, ln, &cop) || 1907 is_confusing_precedence(tn->tn_op, rn, &cop)) { 1909 warning(169, op_name(tn->tn_op), op_name(cop));
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/Disassembler/ |
| ARMDisassembler.cpp | 5872 unsigned cop = fieldFromInstruction(Val, 8, 4); local 5876 if ((cop & ~0x1) == 0xa) 5889 // MRRC2 needs to be [Rt, Rt2, cop, opc1, CRm] 5890 // and MCRR2 operand order is [cop, opc1, Rt, Rt2, CRm] 5898 Inst.addOperand(MCOperand::createImm(cop));
|
| /src/external/gpl3/gdb/dist/gdb/ |
| mep-tdep.c | 276 CGEN_BITSET *cop = &mep_config_map[me_module].cop_isa; 283 cop_and_core = cgen_bitset_copy (cop); 284 cgen_bitset_union (cop, core, cop_and_core); 274 CGEN_BITSET *cop = &mep_config_map[me_module].cop_isa; local
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| mep-tdep.c | 276 CGEN_BITSET *cop = &mep_config_map[me_module].cop_isa; 283 cop_and_core = cgen_bitset_copy (cop); 284 cgen_bitset_union (cop, core, cop_and_core); 274 CGEN_BITSET *cop = &mep_config_map[me_module].cop_isa; local
|
| /src/external/bsd/openldap/dist/servers/slapd/ |
| bconfig.c | 5075 ConfigOCs co, *cop; local 5085 cop = ldap_avl_find( CfOcTree, &co, CfOc_cmp ); 5086 if ( cop ) { 5091 if ( *copp && (*copp)[i] == cop ) { 5102 (*copp)[*nocs] = cop; 5280 config_add_oc( ConfigOCs **cop, CfEntryInfo *last, Entry *e, ConfigArgs *ca ) 5285 if ( (*cop)->co_ldadd ) { 5286 rc = (*cop)->co_ldadd( last, e, ca ); 5292 for ( ocp = (*cop)->co_oc->soc_sups; ocp && *ocp; ocp++ ) { 5296 *cop = ldap_avl_find( CfOcTree, &co, CfOc_cmp ) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/cp/ |
| constexpr.cc | 5164 tree cop = build3 (COMPONENT_REF, TREE_TYPE (field), local 5166 if (tree ret = cxx_fold_indirect_ref_1 (ctx, loc, type, cop, 5185 tree cop = build3 (COMPONENT_REF, TREE_TYPE (field), local 5187 if (tree ret = cxx_fold_indirect_ref_1 (ctx, loc, type, cop,
|
| typeck.cc | 4729 tree cop = fold_for_warn (op); 4731 if (TREE_CODE (cop) == NON_LVALUE_EXPR) 4733 cop = TREE_OPERAND (cop, 0); 4735 if (TREE_CODE (cop) == PTRMEM_CST) 4740 cop); 4744 if (TREE_CODE (cop) == NOP_EXPR) 4747 tree type = TREE_TYPE (cop); 4751 STRIP_NOPS (cop); 4755 if (TREE_CODE (cop) == ADDR_EXPR 4721 tree cop = fold_for_warn (op); local [all...] |