Home
last modified time | relevance | path

Searched refs:optype (Results 1 – 25 of 42) sorted by relevance

12

/openbsd-src/gnu/gcc/gcc/
H A Dvalue-prof.c187 tree optype = TREE_TYPE (operation); in tree_divmod_fixed_value() local
194 tmpv = create_tmp_var (optype, "PROF"); in tree_divmod_fixed_value()
195 tmp1 = create_tmp_var (optype, "PROF"); in tree_divmod_fixed_value()
196 stmt1 = build2 (MODIFY_EXPR, optype, tmpv, fold_convert (optype, value)); in tree_divmod_fixed_value()
197 stmt2 = build2 (MODIFY_EXPR, optype, tmp1, op2); in tree_divmod_fixed_value()
207 tmp2 = create_tmp_var (optype, "PROF"); in tree_divmod_fixed_value()
209 stmt1 = build2 (MODIFY_EXPR, optype, tmp2, in tree_divmod_fixed_value()
210 build2 (TREE_CODE (operation), optype, op1, tmpv)); in tree_divmod_fixed_value()
216 stmt1 = build2 (MODIFY_EXPR, optype, tmp2, in tree_divmod_fixed_value()
217 build2 (TREE_CODE (operation), optype, op1, op2)); in tree_divmod_fixed_value()
[all …]
/openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoZicbo.td38 class CBO_r<bits<12> optype, string opcodestr>
41 let imm12 = optype;
46 class Prefetch_ri<bits<5> optype, string opcodestr>
50 let rs2 = optype;
H A DRISCVInstrInfoV.td375 class VALUVI<bits<6> funct6, string opcodestr, Operand optype = simm5>
377 (ins VR:$vs2, optype:$imm, VMaskOp:$vm),
381 class VALUmVI<bits<6> funct6, string opcodestr, Operand optype = simm5>
383 (ins VR:$vs2, optype:$imm, VMV0:$v0),
389 class VALUVINoVm<bits<6> funct6, string opcodestr, Operand optype = simm5>
391 (ins VR:$vs2, optype:$imm),
440 multiclass VALU_IV_V_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v">…
447 def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
461 multiclass VALU_IV_X_I<string opcodestr, bits<6> funct6, Operand optype = simm5, string vw = "v"> {
465 def I : VALUVI<funct6, opcodestr # "." # vw # "i", optype>,
[all …]
/openbsd-src/lib/libcrypto/evp/
H A Dpmeth_lib.c215 EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, int cmd, in EVP_PKEY_CTX_ctrl() argument
232 if ((optype != -1) && !(ctx->operation & optype)) { in EVP_PKEY_CTX_ctrl()
300 EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md_name) in EVP_PKEY_CTX_md()
308 return EVP_PKEY_CTX_ctrl(ctx, -1, optype, cmd, 0, (void *)md); in EVP_PKEY_CTX_get_operation()
295 EVP_PKEY_CTX_md(EVP_PKEY_CTX * ctx,int optype,int cmd,const char * md_name) EVP_PKEY_CTX_md() argument
H A Devp_local.h366 int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md_name);
/openbsd-src/gnu/usr.bin/binutils-2.17/include/opcode/
H A Dtic54x.h31 enum optype { enum
124 enum optype operand_types[MAX_OPERANDS];
148 enum optype paroperand_types[MAX_OPERANDS];
/openbsd-src/gnu/usr.bin/binutils/include/opcode/
H A Dtic54x.h31 enum optype { enum
124 enum optype operand_types[MAX_OPERANDS];
148 enum optype paroperand_types[MAX_OPERANDS];
/openbsd-src/gnu/usr.bin/perl/regen/
H A Dregcomp.pl114 } elsif (!$node->{optype}) {
116 } elsif ($node->{optype} eq "op") {
118 } elsif ($node->{optype} eq "state") {
148 optype => "op",
220 optype => "state",
/openbsd-src/gnu/usr.bin/perl/dist/Storable/
H A DStorable.xs351 int optype; /* type of traversal operation */ member
1556 cxt->optype &= ~(ST_STORE|ST_RETRIEVE); /* Leave ST_CLONE alone */ in reset_context()
1567 int optype, in init_store_context() argument
1582 cxt->optype = optype; /* A store, or a deep clone */ in init_store_context()
1672 ASSERT(cxt->optype & ST_STORE, ("was performing a store()")); in clean_store_context()
1756 stcxt_t *cxt, int optype, int is_tainted) in init_retrieve_context() argument
1792 cxt->optype = optype; in init_retrieve_context()
1817 ASSERT(cxt->optype & ST_RETRIEVE, ("was performing a retrieve()")); in clean_retrieve_context()
1876 if (cxt->optype & ST_RETRIEVE) in clean_context()
1878 else if (cxt->optype & ST_STORE) in clean_context()
[all …]
/openbsd-src/gnu/usr.bin/perl/amigaos4/
H A Damigaio.h51 Pid_t amigaos_waitpid(pTHX_ int optype, Pid_t pid, void *argflags);
/openbsd-src/gnu/usr.bin/perl/
H A Ddoop.c987 Perl_do_vop(pTHX_ I32 optype, SV *sv, SV *left, SV *right) in Perl_do_vop()
1014 if (sv != left || (optype != OP_BIT_AND && !SvOK(sv))) in Perl_do_vop()
1070 Perl_croak(aTHX_ FATAL_ABOVE_FF_MSG, PL_op_desc[optype]); in Perl_do_vop()
1089 needlen = optype == OP_BIT_AND in Perl_do_vop()
1109 switch (optype) { in Perl_do_vop()
1142 switch (optype) { in Perl_do_vop()
965 Perl_do_vop(pTHX_ I32 optype,SV * sv,SV * left,SV * right) Perl_do_vop() argument
H A Ddoio.c3045 Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp)
3048 SV *nsv = optype == OP_MSGGET ? NULL : *++mark;
3055 switch (optype)
3072 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
3079 Perl_do_ipcctl(pTHX_ I32 optype, SV **mark, SV **sp)
3085 const I32 n = (optype == OP_SEMCTL) ? SvIVx(*++mark) : 0;
3095 switch (optype)
3132 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
3139 Perl_croak(aTHX_ "%s not implemented", PL_op_desc[optype]);
3160 PL_op_desc[optype],
3001 Perl_do_ipcget(pTHX_ I32 optype,SV ** mark,SV ** sp) global() argument
3035 Perl_do_ipcctl(pTHX_ I32 optype,SV ** mark,SV ** sp) global() argument
3306 Perl_do_shmio(pTHX_ I32 optype,SV ** mark,SV ** sp) global() argument
[all...]
H A Dpp_sys.c2607 int optype; in PP()
2636 optype = PL_op->op_type; in PP()
2637 TAINT_PROPER(PL_op_desc[optype]); in PP()
2639 if (optype == OP_IOCTL) in PP()
2931 const int optype = PL_op->op_type; in PP()
2932 SV * const sv = (optype == OP_GSOCKOPT) ? sv_2mortal(newSV(PERL_GETSOCKOPT_SIZE+1)) : POPs; in PP()
2946 switch (optype) { in PP()
3001 const int optype = PL_op->op_type; in PP()
3023 switch (optype) { in PP()
4577 const int optype in PP()
2379 int optype; PP() local
2703 const int optype = PL_op->op_type; PP() local
2773 const int optype = PL_op->op_type; PP() local
4350 const int optype = POPi; PP() local
[all...]
H A Dpad.c712 C<optype> should be an opcode indicating the type of operation that the
720 Perl_pad_alloc(pTHX_ I32 optype, U32 tmptype) in Perl_pad_alloc()
725 PERL_UNUSED_ARG(optype); in Perl_pad_alloc()
785 PL_op_name[optype])); in Perl_pad_alloc()
787 sv->sv_debug_optype = optype;
804 C<optype> should be an opcode indicating the type of operation that the
812 Perl_pad_add_anon(pTHX_ CV* func, I32 optype) in Perl_pad_add_anon()
824 ix = pad_alloc(optype, SVs_PADMY); in Perl_pad_add_anon()
715 Perl_pad_alloc(pTHX_ I32 optype,U32 tmptype) Perl_pad_alloc() argument
807 Perl_pad_add_anon(pTHX_ CV * func,I32 optype) Perl_pad_add_anon() argument
/openbsd-src/gnu/usr.bin/binutils/opcodes/
H A Dtic54x-dis.c32 const enum optype [], int, int);
173 const enum optype tm_operands[];
183 enum optype src = OP_None;
184 enum optype dst = OP_None;
/openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/
H A Dtic54x-dis.c32 const enum optype [], int, int);
173 const enum optype tm_operands[];
183 enum optype src = OP_None;
184 enum optype dst = OP_None;
/openbsd-src/gnu/usr.bin/perl/ext/B/
H A DB.pm42 defstash curstash warnhook diehook inc_gv @optype
83 our @optype = qw(OP UNOP BINOP LOGOP LISTOP PMOP SVOP PADOP PVOP LOOP COP
520 =item @optype
522 my $op_type = $optype[$op_type_num];
/openbsd-src/lib/libcrypto/rsa/
H A Drsa_lib.c416 RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2) in RSA_pkey_ctx_ctrl() argument
424 return EVP_PKEY_CTX_ctrl(ctx, -1, optype, cmd, p1, p2); in RSA_pkey_ctx_ctrl()
H A Drsa.h273 int RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2);
/openbsd-src/gnu/usr.bin/binutils/gas/config/
H A Dtc-tic54x.c94 enum optype type;
321 static int is_type PARAMS ((struct opstruct *, enum optype));
322 static int operands_match PARAMS ((tic54x_insn *, struct opstruct *, int, const enum optype *, i…
331 static int encode_operand PARAMS ((tic54x_insn *, enum optype, struct opstruct *));
3599 enum optype type;
3707 const enum optype *refoptype;
4107 enum optype type;
4396 enum optype type = insn->operands[i].type;
4404 enum optype partype = insn->paroperands[i].type;
H A Dtc-i960.c1974 parse_memop (memP, argP, optype) in parse_memop() argument
1977 int optype; /* MEM1, MEM2, MEM4, MEM8, MEM12, or MEM16 */
2019 scale = def_scale[optype - MEM1];
/openbsd-src/gnu/usr.bin/binutils-2.17/gas/config/
H A Dtc-tic54x.c95 enum optype type;
319 static int is_type PARAMS ((struct opstruct *, enum optype));
320 static int operands_match PARAMS ((tic54x_insn *, struct opstruct *, int, const enum optype *, i…
329 static int encode_operand PARAMS ((tic54x_insn *, enum optype, struct opstruct *));
3547 enum optype type;
3655 const enum optype *refoptype;
4055 enum optype type;
4344 enum optype type = insn->operands[i].type;
4352 enum optype partype = insn->paroperands[i].type;
H A Dtc-i960.c882 int optype) /* MEM1, MEM2, MEM4, MEM8, MEM12, or MEM16. */ in parse_memop() argument
924 scale = def_scale[optype - MEM1]; in parse_memop()
/openbsd-src/gnu/gcc/gcc/cp/
H A Dsearch.c1154 build_baselink (tree binfo, tree access_binfo, tree functions, tree optype) in build_baselink() argument
1162 gcc_assert (!optype || TYPE_P (optype)); in build_baselink()
1170 BASELINK_OPTYPE (baselink) = optype; in build_baselink()
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Dsearch.c1422 build_baselink (tree binfo, tree access_binfo, tree functions, tree optype) in build_baselink() argument
1431 my_friendly_assert (!optype || TYPE_P (optype), 20020730); in build_baselink()
1439 BASELINK_OPTYPE (baselink) = optype; in build_baselink()

12