Searched refs:opname (Results 1 - 18 of 18) sorted by relevance

/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dcp-demint.c158 const char *opname, int args)
163 if (p == NULL || opname == NULL)
165 len = strlen (opname);
170 && strcmp (opname, cplus_demangle_operators[i].name) == 0)
157 cplus_demangle_fill_operator(struct demangle_component *p, const char *opname, int args) argument
H A Dcplus-dem.c636 cplus_demangle_opname (const char *opname, char *result, int options) argument
643 len = strlen(opname);
649 if (opname[0] == '_' && opname[1] == '_'
650 && opname[2] == 'o' && opname[3] == 'p')
654 tem = opname + 4;
663 else if (opname[0] == '_' && opname[1] == '_'
664 && ISLOWER((unsigned char)opname[
769 cplus_mangle_opname(const char *opname, int options) argument
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/include/
H A Ddemangle.h118 cplus_demangle_opname (const char *opname, char *result, int options);
121 cplus_mangle_opname (const char *opname, int options);
488 const char *opname, int args);
H A Dxtensa-isa.h358 xtensa_opcode_lookup (xtensa_isa isa, const char *opname);
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Ddisass.el178 op arg opname pc-value)
208 (string-match "^byte-" (setq opname (symbol-name op))))
209 (setq opname (substring opname 5))
210 (setq opname "<not-an-opcode>"))
213 (insert opname)
H A Dbytecomp.el504 (defmacro byte-defop (opcode stack-adjust opname &optional docstring)
518 (aset v1 opcode opname)
521 (list 'defconst opname opcode (concat "Byte code opcode " docstring "."))
522 (list 'defconst opname opcode)))
/macosx-10.10.1/JavaScriptCore-7600.1.17/disassembler/ARM64/
H A DA64DOpcode.cpp510 const char* opname = 0; local
516 opname = "svc";
519 opname = "hvc";
522 opname = "smc";
528 opname = "brk";
532 opname = "hlt";
537 opname = "dpcs1";
540 opname = "dpcs2";
543 opname = "dpcs3";
550 if (!opname)
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dexpr.c145 const char opname[3]; member in struct:Optable_s
288 if (*cp==optable[i].opname[0] && cp[1]==optable[i].opname[1])
H A Dcp.c191 char* opname; /* state.op message string */ member in struct:State_s
445 error(2, "%s: cannot %s existing directory", state->path, state->opname);
461 if ((n = astquery(-1, "%s %s? ", state->opname, state->path)) < 0 || sh_checksig(state->context))
468 error(2, "%s: cannot %s existing file", state->path, state->opname);
492 error(2, "%s: cannot %s %s protection", state->path, state->opname, protection);
750 state->opname = state->op == CP ? ERROR_translate(0, 0, 0, "overwrite") : ERROR_translate(0, 0, 0, "replace");
/macosx-10.10.1/bind9-45.101/bind9/bin/named/include/named/
H A Dclient.h317 const char *opname, dns_acl_t *acl,
323 * Log messages will refer to the request as an 'opname' request.
329 *\li 'opname' points to a null-terminated string.
/macosx-10.10.1/swig-12/Source/Modules/
H A Docaml.cxx482 String *opname = Copy(Getattr(n, "memberfunctionHandler:sym:name")); local
484 Replaceall(opname, "operator ", "");
490 Printf(f_class_ctors, " \"%s\", (fun args -> " "if args = (C_list [ raw_ptr ]) then %s args else %s args) ;\n", opname, mangled_name, set_name);
493 Printf(f_class_ctors, " \"%s\", (fun args -> " "if args = (C_list [ raw_ptr ]) then %s args else C_void) ;\n", opname, mangled_name);
498 Printf(f_class_ctors, " \"%s\", %s ;\n", opname, mangled_name);
501 Delete(opname);
/macosx-10.10.1/cxxfilt-11/cxxfilt/bfd/
H A Dxtensa-isa.c658 xtensa_opcode_lookup (xtensa_isa isa, const char *opname)
663 if (!opname || !*opname)
672 entry.key = opname;
681 sprintf (xtisa_error_msg, "opcode \"%s\" not recognized", opname);
654 xtensa_opcode_lookup(xtensa_isa isa, const char *opname) argument
H A Delf32-xtensa.c1682 const char *opname = xtensa_opcode_name (isa, opcode);
1705 *error_message = vsprint_msg (opname, ": %s", strlen (msg) + 2, msg);
1677 const char *opname = xtensa_opcode_name (isa, opcode); local
/macosx-10.10.1/uucp-11/uucp/contrib/
H A Dxchat.c89 char *opname; member in struct:script_opdef
504 if (strcmp(opc, sc_opdef[i].opname) == SAME)
/macosx-10.10.1/cxxfilt-11/cxxfilt/binutils/
H A Dstabs.c2883 const char *opname; local
2885 opname = cplus_mangle_opname (fieldname + 3, 0);
2886 if (opname == NULL)
2891 mangled_name_len += strlen (opname);
2894 strcpy (physname + 3, opname);
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dclient.c2671 const char *opname, dns_acl_t *acl,
2686 "%s approved", opname);
2690 log_level, "%s denied", opname);
2670 ns_client_checkacl(ns_client_t *client, isc_sockaddr_t *sockaddr, const char *opname, dns_acl_t *acl, isc_boolean_t default_allow, int log_level) argument
/macosx-10.10.1/tcl-105/tcl/tcl/tools/
H A Dtcltk-man2html.tcl429 proc split-directive {line opname restname} {
430 upvar 1 $opname op $restname rest
/macosx-10.10.1/tcl-105/tcl84/tcl/tools/
H A Dtcltk-man2html.tcl307 proc split-directive {line opname restname} {
308 upvar $opname op $restname rest

Completed in 326 milliseconds