/netbsd-src/external/bsd/openldap/dist/servers/slapd/ |
H A D | sets.c | 142 unsigned op_flags, in slap_set_join() argument 147 unsigned op = ( op_flags & SLAP_SET_OPMASK ); in slap_set_join() 161 set = set_dup( cp, lset, SLAP_SET_LREF2REF( op_flags ) ); in slap_set_join() 164 slap_set_dispose( cp, lset, SLAP_SET_LREF2REF( op_flags ) ); in slap_set_join() 165 set = set_dup( cp, rset, SLAP_SET_RREF2REF( op_flags ) ); in slap_set_join() 169 slap_set_dispose( cp, rset, SLAP_SET_RREF2REF( op_flags ) ); in slap_set_join() 170 set = set_dup( cp, lset, SLAP_SET_LREF2REF( op_flags ) ); in slap_set_join() 185 if ( op_flags & SLAP_SET_LREFVAL ) { in slap_set_join() 194 op_flags |= SLAP_SET_LREFVAL; in slap_set_join() 204 if ( !( op_flags & SLAP_SET_RREFVAL ) ) { in slap_set_join() [all …]
|
/netbsd-src/tests/lib/libc/sys/ |
H A D | t_futex_ops.c | 76 int op_flags; member 175 if (__futex(d->futex_ptr, d->wait_op | d->op_flags, in simple_test_waiter_lwp() 285 if (__futex(d->futex_ptr, FUTEX_WAIT | d->op_flags, in wait_wake_test_waiter_lwp() 307 if (__futex(d->futex_ptr, FUTEX_WAIT | d->op_flags, in wait_wake_test_waiter_lwp() 342 wlwp->op_flags = flags; in do_futex_wait_wake_test() 654 lwp_data[i].op_flags = flags; in do_futex_wait_wake_bitset_test() 769 lwp_data[i].op_flags = flags; in do_futex_requeue_test() 1037 lwp_data[i].op_flags = flags; 1312 lwp_data[0].op_flags = 0; in do_futex_wait_evil_unmapped() 1415 lwp_data[0].op_flags in do_test_wake_highest_pri() [all...] |
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/s390/ |
H A D | s390-c.c | 1018 unsigned int op_flags = all_op_flags & ((1 << O_SHIFT) - 1); in s390_resolve_overloaded_builtin() local 1024 if (op_flags == O_ELEM) in s390_resolve_overloaded_builtin() 1034 if (TREE_CODE (arg) != INTEGER_CST || !O_IMM_P (op_flags)) in s390_resolve_overloaded_builtin() 1049 && !s390_const_operand_ok (arg, i + 1, op_flags, target_builtin_decl)) in s390_resolve_overloaded_builtin()
|
H A D | s390.c | 722 s390_const_operand_ok (tree arg, int argnum, int op_flags, tree decl) in s390_const_operand_ok() argument 724 if (O_UIMM_P (op_flags)) in s390_const_operand_ok() 727 int bitwidth = bitwidths[op_flags - O_U1]; in s390_const_operand_ok() 739 if (O_SIMM_P (op_flags)) in s390_const_operand_ok() 742 int bitwidth = bitwidths[op_flags - O_S2]; in s390_const_operand_ok() 867 unsigned int op_flags = all_op_flags & ((1 << O_SHIFT) - 1); in s390_expand_builtin() local 876 if (O_IMM_P (op_flags) in s390_expand_builtin() 884 if (!s390_const_operand_ok (arg, arity + 1, op_flags, fndecl)) in s390_expand_builtin() 909 if (op_flags == O_ELEM) in s390_expand_builtin()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/ |
H A D | s390-c.cc | 1041 unsigned int op_flags = all_op_flags & ((1 << O_SHIFT) - 1); in s390_resolve_overloaded_builtin() local 1047 if (op_flags == O_ELEM) in s390_resolve_overloaded_builtin() 1057 if (TREE_CODE (arg) != INTEGER_CST || !O_IMM_P (op_flags)) in s390_resolve_overloaded_builtin() 1072 && !s390_const_operand_ok (arg, i + 1, op_flags, target_builtin_decl)) in s390_resolve_overloaded_builtin()
|
H A D | s390.cc | 758 s390_const_operand_ok (tree arg, int argnum, int op_flags, tree decl) in s390_const_operand_ok() argument 760 if (O_UIMM_P (op_flags)) in s390_const_operand_ok() 764 unsigned HOST_WIDE_INT bitwidth = bitwidths[op_flags - O_U1]; in s390_const_operand_ok() 765 unsigned HOST_WIDE_INT bitmask = bitmasks[op_flags - O_U1]; in s390_const_operand_ok() 801 if (O_SIMM_P (op_flags)) in s390_const_operand_ok() 804 int bitwidth = bitwidths[op_flags - O_S2]; in s390_const_operand_ok() 929 unsigned int op_flags = all_op_flags & ((1 << O_SHIFT) - 1); in s390_expand_builtin() local 938 if (O_IMM_P (op_flags) in s390_expand_builtin() 946 if (!s390_const_operand_ok (arg, arity + 1, op_flags, fndecl)) in s390_expand_builtin() 971 if (op_flags == O_ELEM) in s390_expand_builtin()
|
/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/ |
H A D | sljitNativeX86_common.c | 1128 static sljit_s32 emit_clz(struct sljit_compiler *compiler, sljit_s32 op_flags, in emit_clz() argument 1135 SLJIT_UNUSED_ARG(op_flags); in emit_clz() 1146 …inst = emit_x86_instruction(compiler, 1 | EX86_SHIFT_INS, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? … in emit_clz() 1181 EMIT_MOV(compiler, dst_r, 0, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 64 + 63 : 32 + 31); in emit_clz() 1182 compiler->mode32 = op_flags & SLJIT_I32_OP; in emit_clz() 1219 …inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 63… in emit_clz() 1242 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1() local 1258 compiler->mode32 = op_flags & SLJIT_I32_OP; in sljit_emit_op1() 1267 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1() 1388 if (SLJIT_UNLIKELY(op_flags & SLJIT_SET_Z)) in sljit_emit_op1() [all …]
|
H A D | sljitNativeARM_64.c | 1291 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1() local 1389 … return emit_op_imm(compiler, op | ((op_flags & SLJIT_I32_OP) ? INT_OP : 0), dst_r, TMP_REG1, src); in sljit_emit_op1() 1402 flags = HAS_FLAGS(op_flags) ? SET_FLAGS : 0; in sljit_emit_op1() 1404 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1() 1422 if (op_flags & SLJIT_I32_OP) in sljit_emit_op1()
|
H A D | sljitNativePPC_common.c | 1318 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1() local 1329 if (GET_FLAG_TYPE(op_flags) == SLJIT_OVERFLOW || GET_FLAG_TYPE(op_flags) == SLJIT_NOT_OVERFLOW) in sljit_emit_op1() 1332 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1() 1424 …return emit_op(compiler, SLJIT_CLZ, flags | (!(op_flags & SLJIT_I32_OP) ? 0 : ALT_FORM1), dst, dst… in sljit_emit_op1()
|
H A D | sljitNativeARM_T2_32.c | 1228 sljit_s32 op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1() local 1319 return sljit_emit_op2(compiler, SLJIT_SUB | op_flags, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1() 1322 flags = HAS_FLAGS(op_flags) ? SET_FLAGS : 0; in sljit_emit_op1()
|
/netbsd-src/usr.sbin/fstyp/ |
H A D | hammer2_disk.h | 954 uint8_t op_flags; /* 0051 operational flags */ member
|
H A D | hammer2.c | 219 if (ipdata.meta.op_flags & HAMMER2_OPFLAG_PFSROOT) { in find_pfs()
|
/netbsd-src/external/gpl3/gdb/dist/sim/rl78/ |
H A D | ChangeLog-2021 | 101 * rl78.c (op_flags): Move psw decl to top of scope.
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/ |
H A D | decl.c | 14421 unsigned op_flags; in grok_op_properties() local 14427 op_flags = OVL_OP_FLAG_UNARY; in grok_op_properties() 14434 op_flags = ovl_op->flags; in grok_op_properties() 14439 if (op_flags & OVL_OP_FLAG_ALLOC) in grok_op_properties() 14443 switch (op_flags) in grok_op_properties() 14488 if (op_flags & OVL_OP_FLAG_DELETE) in grok_op_properties() 14574 switch (op_flags) in grok_op_properties()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/ |
H A D | decl.cc | 15227 unsigned op_flags; in grok_op_properties() local 15233 op_flags = OVL_OP_FLAG_UNARY; in grok_op_properties() 15240 op_flags = ovl_op->flags; in grok_op_properties() 15245 if (op_flags & OVL_OP_FLAG_ALLOC) in grok_op_properties() 15249 switch (op_flags) in grok_op_properties() 15294 if (op_flags & OVL_OP_FLAG_DELETE) in grok_op_properties() 15383 switch (op_flags) in grok_op_properties()
|