Searched refs:op (Results 76 - 100 of 1253) sorted by relevance

1234567891011>>

/openbsd-current/lib/libc/gen/
H A Dsetmode.c164 char op, *ep; local
238 getop: if ((op = *p++) != '+' && op != '-' && op != '=') {
243 if (op == '=')
288 ADDCMD(op, who, perm, mask);
291 if (op == '=')
293 if (op == '+' && permXbits) {
297 ADDCMD(*p, who, op, mask);
305 if (perm || (op
339 addcmd(BITCMD *set, int op, int who, int oparg, u_int mask) argument
406 int setbits, clrbits, Xbits, op; local
[all...]
/openbsd-current/usr.bin/vi/common/
H A Doptions.c253 OPTLIST const *op; local
361 for (op = optlist, optindx = 0; op->name != NULL; ++op, ++optindx)
362 switch (op->type) {
409 OPTLIST const *op; local
445 op = NULL;
450 if ((op = opts_search(name)) == NULL &&
454 op = opts_search(name);
456 if (op
700 OPTION *op; local
759 OPTLIST const *op; local
889 opts_print(SCR *sp, OPTLIST const *op) argument
921 OPTLIST const *op; local
976 OPTLIST const *op, *found; local
[all...]
/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DOptionValueChar.cpp35 VarSetOperationType op) {
37 switch (op) {
55 error = OptionValue::SetValueFromString(value, op);
34 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
H A DOptionValueRegex.cpp31 VarSetOperationType op) {
33 switch (op) {
39 error = OptionValue::SetValueFromString(value, op);
30 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
H A DOptionValueFormat.cpp34 VarSetOperationType op) {
36 switch (op) {
58 error = OptionValue::SetValueFromString(value, op);
33 SetValueFromString(llvm::StringRef value, VarSetOperationType op) argument
/openbsd-current/gnu/llvm/llvm/utils/TableGen/
H A DAsmWriterInst.h54 AsmWriterOperand(OpType op = isLiteralTextOperand):OperandType(op) {}
57 OpType op = isLiteralTextOperand)
58 : OperandType(op), Str(LitStr) {}
62 OpType op = isMachineInstrOperand, bool PCRel = false)
63 : OperandType(op), MIOpNo(_MIOpNo), Str(Printer), MiModifier(Modifier),
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Dsh-dis.c33 print_movxy (const sh_opcode_info *op, argument
41 fprintf_fn (stream, "%s\t", op->name);
44 switch (op->arg[n])
132 const sh_opcode_info *op; local
146 op = first_movy;
148 op = first_movx;
150 while (op->nibbles[2] != (unsigned) ((insn >> 4) & 3)
151 || op->nibbles[3] != (unsigned) (insn & 0xf))
152 op++;
154 print_movxy (op,
248 const sh_opcode_info *op; local
390 const sh_opcode_info *op; local
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-msp430.c358 Pseudo-op format:
452 parse_exp (char * s, expressionS * op) argument
455 expression (op);
456 if (op->X_op == O_absent)
694 /* Find the op code end. */
927 msp430_srcoperand (struct msp430_operand_s * op, argument
979 op->reg = 0; /* Reg PC. */
980 op->am = 3;
981 op->ol = 1; /* Immediate will follow an instruction. */
983 op
1383 msp430_dstoperand(struct msp430_operand_s * op, char * l, int bin) argument
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dsimplify-rtx.c219 simplify_gen_unary (enum rtx_code code, enum machine_mode mode, rtx op,
225 if ((tem = simplify_unary_operation (code, mode, op, op_mode)) != 0)
228 return gen_rtx_fmt_e (code, mode, op);
378 rtx op, enum machine_mode op_mode)
382 if (GET_CODE (op) == CONST)
383 op = XEXP (op, 0);
385 trueop = avoid_constant_pool_reference (op);
391 return simplify_unary_operation_1 (code, mode, op); argument
397 simplify_unary_operation_1 (enum rtx_code code, enum machine_mode mode, rtx op)
215 simplify_gen_unary(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
371 simplify_unary_operation(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
870 simplify_const_unary_operation(enum rtx_code code, enum machine_mode mode, rtx op, enum machine_mode op_mode) argument
3187 rtx op; member in struct:simplify_plus_minus_op_data
4216 simplify_immed_subreg(enum machine_mode outermode, rtx op, enum machine_mode innermode, unsigned int byte) argument
4479 simplify_subreg(enum machine_mode outermode, rtx op, enum machine_mode innermode, unsigned int byte) argument
4771 simplify_gen_subreg(enum machine_mode outermode, rtx op, enum machine_mode innermode, unsigned int byte) argument
[all...]
H A Dgenopinit.c224 int m1 = 0, m2 = 0, op = 0; local
272 for (op = 0; op < NUM_RTX_CODE; op++)
274 for (p = GET_RTX_NAME(op), q = np; *p; p++, q++)
282 && (GET_RTX_CLASS (op) == RTX_COMPARE
283 || GET_RTX_CLASS (op) == RTX_COMM_COMPARE))
287 if (op == NUM_RTX_CODE)
290 np += strlen (GET_RTX_NAME(op));
381 printf ("%s", GET_RTX_NAME(op));
[all...]
H A Dtree-ssa-reassoc.c75 So the way to do this if we really cared, is to build the new op
77 new op on the end of the worklist, until you are left with one
92 So first build a binary op of
101 but in this case, you then have evicted e from a binary op. So at
104 Then build a binary op of d + e
116 build binary op
138 will be written into a nice single binary op. If you have 3 ops, a
156 destructive update for the associating op, and keep the destructive
173 tree op; member in struct:operand_entry
196 vrd.op
[all...]
/openbsd-current/gnu/gcc/libgomp/config/linux/ia64/
H A Dfutex.h37 sys_futex0(int *addr, int op, int val) argument
40 register long out1 asm ("out1") = op;
/openbsd-current/gnu/gcc/libgomp/config/linux/powerpc/
H A Dfutex.h35 sys_futex0 (int *addr, int op, int val) argument
45 r4 = op;
/openbsd-current/gnu/gcc/libgomp/config/linux/s390/
H A Dfutex.h35 sys_futex0 (int *addr, int op, int val) argument
43 gpr3 = op;
/openbsd-current/gnu/gcc/libgomp/config/linux/sparc/
H A Dfutex.h35 sys_futex0 (int *addr, int op, int val) argument
45 o1 = op;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20001229-1.c16 setsysinfo(unsigned long op, void *buffer, unsigned long size, argument
19 syscall(__NR_osf_setsysinfo, op, buffer, size, start, arg, flag);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DXRayInstrumentation.cpp90 InstrumentationOptions op) {
98 (op.HandleAllReturns || T.getOpcode() == TII->getReturnOpcode())) {
103 if (TII->isTailCall(T) && op.HandleTailcall) {
126 InstrumentationOptions op) {
131 (op.HandleAllReturns || T.getOpcode() == TII->getReturnOpcode())) {
134 if (TII->isTailCall(T) && op.HandleTailcall) {
234 InstrumentationOptions op;
235 op.HandleTailcall = false;
236 op.HandleAllReturns = true;
237 prependRetWithPatchableExit(MF, TII, op);
88 replaceRetWithPatchableRet( MachineFunction &MF, const TargetInstrInfo *TII, InstrumentationOptions op) argument
124 prependRetWithPatchableExit( MachineFunction &MF, const TargetInstrInfo *TII, InstrumentationOptions op) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dglob.t11 @oops = @ops = <op/*>;
14 map { $files{lc($_)}++ } <op/*>;
15 map { delete $files{"op/$_"} } split /[\s\n]/, `dir /b /l op & dir /b /l /ah op 2>nul`,
18 map { $files{lc($_)}++ } <[.op]*>;
19 map { s/;.*$//; delete $files{lc($_)}; } split /[\n]/, `directory/noheading/notrailing/versions=1 [.op]`,
27 map { $files{$_}++ } <op/*>;
28 map { delete $files{"op/$_"} } split /\n/, `ls op/ | ca
[all...]
/openbsd-current/gnu/usr.bin/perl/
H A Dopnames.h449 #define OP_IS_SOCKET(op) \
450 ((op) >= OP_SEND && (op) <= OP_GETPEERNAME)
452 #define OP_IS_FILETEST(op) \
453 ((op) >= OP_FTRREAD && (op) <= OP_FTBINARY)
455 #define OP_IS_FILETEST_ACCESS(op) \
456 ((op) >= OP_FTRREAD && (op) <= OP_FTEEXEC)
458 #define OP_IS_NUMCOMPARE(op) \
[all...]
/openbsd-current/regress/lib/libcrypto/x509/
H A Dx509_extensions_test.c64 int op, got; local
75 op = X509V3_ADD_REPLACE_EXISTING;
77 if ((got = X509V3_add1_i2d(extensions, nid, NULL, 0, op)) != 0) {
96 op = X509V3_ADD_REPLACE_EXISTING | X509V3_ADD_SILENT;
98 if ((got = X509V3_add1_i2d(extensions, nid, NULL, 0, op)) != 0) {
110 op = X509V3_ADD_DELETE;
111 if ((got = X509V3_add1_i2d(extensions, nid, NULL, 0, op)) != 0) {
143 int crit, got, nid, op; local
157 op = X509V3_ADD_DEFAULT;
158 if ((got = X509V3_add1_i2d(extensions, nid, bc, 1, op)) !
401 int crit, got, idx, nid, op; local
599 int crit, got, nid, op; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/sparc/
H A Dsparc.c476 reg_or_0_operand (op, mode)
477 rtx op;
480 if (register_operand (op, mode))
482 if (op == const0_rtx)
484 if (GET_MODE (op) == VOIDmode && GET_CODE (op) == CONST_DOUBLE
485 && CONST_DOUBLE_HIGH (op) == 0
486 && CONST_DOUBLE_LOW (op) == 0)
488 if (fp_zero_operand (op, mode))
496 const1_operand (op, mod
2757 rtx op, dest; local
[all...]
/openbsd-current/gnu/gcc/gcc/config/c4x/
H A Dc4x.c1828 c4x_print_operand (FILE *file, rtx op, int letter)
1841 code = GET_CODE (op);
1850 output_addr_const (file, op);
1859 fatal_insn ("c4x_print_operand: %%L inconsistency", op);
1860 fprintf (file, "%d", exact_log2 (INTVAL (op)));
1865 fatal_insn ("c4x_print_operand: %%N inconsistency", op);
1866 fprintf (file, HOST_WIDE_INT_PRINT_DEC, ~INTVAL (op));
1872 && GET_CODE (XEXP (op, 0)) == LO_SUM
1873 && GET_CODE (XEXP (XEXP (op, 0), 0)) == REG
1874 && REGNO (XEXP (XEXP (op,
1826 c4x_print_operand(FILE *file, rtx op, int letter) argument
2147 c4x_immed_float_p(rtx op) argument
2457 c4x_a_register(rtx op) argument
2464 c4x_x_register(rtx op) argument
2471 c4x_immed_int_constant(rtx op) argument
2483 c4x_immed_float_constant(rtx op) argument
2497 c4x_shiftable_constant(rtx op) argument
2517 c4x_H_constant(rtx op) argument
2524 c4x_I_constant(rtx op) argument
2531 c4x_J_constant(rtx op) argument
2540 c4x_K_constant(rtx op) argument
2549 c4x_L_constant(rtx op) argument
2556 c4x_N_constant(rtx op) argument
2563 c4x_O_constant(rtx op) argument
2579 c4x_Q_constraint(rtx op) argument
2624 c4x_R_constraint(rtx op) argument
2665 c4x_R_indirect(rtx op) argument
2709 c4x_S_constraint(rtx op) argument
2768 c4x_S_indirect(rtx op) argument
2845 c4x_T_constraint(rtx op) argument
2874 c4x_U_constraint(rtx op) argument
2884 c4x_autoinc_operand(rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) argument
2904 mixed_subreg_operand(rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) argument
2918 reg_imm_operand(rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) argument
2927 not_modify_reg(rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) argument
2973 not_rc_reg(rtx op, enum machine_mode mode ATTRIBUTE_UNUSED) argument
2982 c4x_S_address_parse(rtx op, int *base, int *incdec, int *index, int *disp) argument
3593 group1_reg_operand(rtx op, enum machine_mode mode) argument
3604 group1_mem_operand(rtx op, enum machine_mode mode) argument
3632 arx_reg_operand(rtx op, enum machine_mode mode) argument
3643 c4x_arn_reg_operand(rtx op, enum machine_mode mode, unsigned int regno) argument
3654 c4x_arn_mem_operand(rtx op, enum machine_mode mode, unsigned int regno) argument
3706 ar0_reg_operand(rtx op, enum machine_mode mode) argument
3713 ar0_mem_operand(rtx op, enum machine_mode mode) argument
3720 ar1_reg_operand(rtx op, enum machine_mode mode) argument
3727 ar1_mem_operand(rtx op, enum machine_mode mode) argument
3734 ar2_reg_operand(rtx op, enum machine_mode mode) argument
3741 ar2_mem_operand(rtx op, enum machine_mode mode) argument
3748 ar3_reg_operand(rtx op, enum machine_mode mode) argument
3755 ar3_mem_operand(rtx op, enum machine_mode mode) argument
3762 ar4_reg_operand(rtx op, enum machine_mode mode) argument
3769 ar4_mem_operand(rtx op, enum machine_mode mode) argument
3776 ar5_reg_operand(rtx op, enum machine_mode mode) argument
3783 ar5_mem_operand(rtx op, enum machine_mode mode) argument
3790 ar6_reg_operand(rtx op, enum machine_mode mode) argument
3797 ar6_mem_operand(rtx op, enum machine_mode mode) argument
3804 ar7_reg_operand(rtx op, enum machine_mode mode) argument
3811 ar7_mem_operand(rtx op, enum machine_mode mode) argument
3818 ir0_reg_operand(rtx op, enum machine_mode mode) argument
3825 ir0_mem_operand(rtx op, enum machine_mode mode) argument
3832 ir1_reg_operand(rtx op, enum machine_mode mode) argument
3839 ir1_mem_operand(rtx op, enum machine_mode mode) argument
3849 c4x_operand_subword(rtx op, int i, int validate_address, enum machine_mode mode) argument
4088 c4x_rptb_rpts_p(rtx insn, rtx op) argument
[all...]
/openbsd-current/lib/libedit/
H A Deln.c113 el_set(EditLine *el, int op, ...) argument
120 va_start(ap, op);
122 switch (op) {
126 ret = prompt_set(el, p, 0, op, 0);
138 ret = el_wset(el, op, va_arg(ap, char *));
142 ret = el_wset(el, op, ct_decode_string(va_arg(ap, char *),
150 ret = el_wset(el, op, va_arg(ap, int));
176 switch (op) {
233 ret = el_wset(el, op, va_arg(ap, el_rfunc_t));
236 ret = el_wset(el, op, va_ar
263 el_get(EditLine *el, int op, ...) argument
[all...]
/openbsd-current/bin/ksh/
H A Dexpr.c44 #define IS_BINOP(op) (((int)op) >= (int)O_EQ && ((int)op) <= (int)O_COMMA)
45 #define IS_ASSIGNOP(op) ((int)(op) >= (int)O_ASN && (int)(op) <= (int)O_BORASN)
285 enum token op; local
289 op = es->tok;
290 if (op == O_BNOT || op
534 do_ppmm(Expr_state *es, enum token op, struct tbl *vasn, bool is_prefix) argument
554 assign_check(Expr_state *es, enum token op, struct tbl *vasn) argument
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/B/B/
H A DXref.pm153 my %done; # keyed by $$op: set when each $op is done
220 my $op;
221 for ($op = $start; $$op; $op = $op->next) {
222 last if $done{$$op}++;
224 warn peekop($op), "\n" if $debug_op;
225 my $opname = $op
[all...]

Completed in 231 milliseconds

1234567891011>>