Home
last modified time | relevance | path

Searched refs:type_descr (Results 1 – 25 of 124) sorted by relevance

12345

/dports/devel/radare2/radare2-5.1.1/libr/asm/p/
H A Dasm_or1k.c23 insn_type_descr_t *type_descr = &types[INSN_X]; in insn_to_str() local
27 type_descr = &types[type]; in insn_to_str()
30 o.rd = get_operand_value(insn, type_descr, INSN_OPER_D); in insn_to_str()
42 if (!name || !type_descr->format) { in insn_to_str()
50 *line = sdb_fmt(type_descr->format, name); in insn_to_str()
53 *line = sdb_fmt(type_descr->format, name, in insn_to_str()
58 *line = sdb_fmt(type_descr->format, name, o.k); in insn_to_str()
67 *line = sdb_fmt(type_descr->format, name, o.rb); in insn_to_str()
70 *line = sdb_fmt(type_descr->format, name, o.rd); in insn_to_str()
94 *line = sdb_fmt(type_descr->format, name, in insn_to_str()
[all …]
/dports/devel/radare2/radare2-5.1.1/libr/anal/p/
H A Danal_or1k.c43 insn_type_descr_t *type_descr = &types[INSN_X]; in insn_to_op() local
47 type_descr = &types[type]; in insn_to_op()
58 o.n = get_operand_value(insn, type_descr, INSN_OPER_N); in insn_to_op()
65 o.n = get_operand_value(insn, type_descr, INSN_OPER_N); in insn_to_op()
72 o.n = get_operand_value(insn, type_descr, INSN_OPER_N); in insn_to_op()
80 o.n = get_operand_value(insn, type_descr, INSN_OPER_N); in insn_to_op()
88 o.rb = get_operand_value(insn, type_descr, INSN_OPER_B); in insn_to_op()
96 o.rb = get_operand_value(insn, type_descr, INSN_OPER_B); in insn_to_op()
107 o.k = get_operand_value(insn, type_descr, INSN_OPER_K); in insn_to_op()
118 o.i = get_operand_value(insn, type_descr, INSN_OPER_I); in insn_to_op()
[all …]
/dports/devel/radare2/radare2-5.1.1/libr/asm/arch/or1k/
H A Dor1k_disas.h151 static inline ut32 get_operand_mask(insn_type_descr_t *type_descr, insn_oper_t operand) { in get_operand_mask() argument
152 return type_descr->operands[operand].mask; in get_operand_mask()
155 static inline ut32 get_operand_shift(insn_type_descr_t *type_descr, insn_oper_t operand) { in get_operand_shift() argument
156 return type_descr->operands[operand].shift; in get_operand_shift()
159 static inline ut32 get_operand_value(ut32 insn, insn_type_descr_t *type_descr, insn_oper_t operand)… in get_operand_value() argument
160 return (insn & get_operand_mask(type_descr, operand)) >> get_operand_shift(type_descr, operand); in get_operand_value()
/dports/math/polymake/polymake-4.5/perllib/Polymake/Core/
H A DSerializer.pm80 my ($proto, $type_descr)=@_;
89 if ($type_descr->is_container) {
103 } elsif ($type_descr->is_composite) {
181 my ($type_descr) = @_;
190 my ($type_descr) = @_;
217 my ($type_descr) = @_;
257 my ($type_descr) = @_;
334 my ($proto, $type_descr) = @_;
335 my ($member_types, $member_descrs) = ($type_descr->member_types, $type_descr->member_descrs);
390 my ($type_descr) = @_;
[all …]
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/epydoc/docwriter/
H A Ddotgraph.py562 type_descr = self._type_descr(var) or self._type_descr(var.value)
565 m = self.SIMPLE_TYPE_RE.match(type_descr)
570 m = self.COLLECTION_TYPE_RE.match(type_descr)
576 m = self.OPTIONAL_TYPE_RE.match(type_descr)
582 m = self.MAPPING_TYPE_RE.match(type_descr)
591 m = self.MAPPING_TO_COLLECTION_TYPE_RE.match(type_descr)
652 if api_doc.type_descr in (None, UNKNOWN): return ''
653 type_descr = api_doc.type_descr.to_plaintext(self.linker).strip()
654 return plaintext_to_html(type_descr)
669 type_descr = (self._type_descr(var_doc) or
[all …]
/dports/deskutils/gnome-contacts/gnome-contacts-41.0/src/
H A Dcontacts-typeset.vala122 unowned TypeDescriptor? type_descr;
123 this.store.get (iter, 1, out type_descr);
125 if (display_name.ascii_casecmp (type_descr.display_name) == 0)
126 return type_descr;
127 if (display_name.ascii_casecmp (type_descr.name) == 0)
128 return type_descr;
/dports/www/phpgroupware/phpgroupware-0.9.16.017/addressbook/inc/
H A Dclass.soaddressbook.inc.php620 foreach($fields['tab_comms']['comm_data'] as $type_descr => $data)
624 $comms[] = array('comm_descr' => $this->contacts->search_comm_descr($type_descr),
626 'comm_preferred' => ($type_descr==$fields['tab_comms']['preferred']?'Y':'N'));
670 foreach($fields['tab_comms']['comm_data'] as $type_descr => $data)
674 $comms[] = array('comm_descr' => $this->contacts->search_comm_descr($type_descr),
676 'comm_preferred' => ($type_descr==$fields['tab_comms']['preferred']?'Y':'N'));
/dports/devel/pycharm-pro/pycharm-2020.2.3/plugins/python/helpers/epydoc/
H A Ddocstringparser.py367 if api_doc.type_descr is UNKNOWN:
368 api_doc.type_descr = None
735 if api_doc.type_descr is not None:
737 api_doc.type_descr = descr
807 if api_doc.type_descr is not None:
809 api_doc.type_descr = descr
894 if var_doc.type_descr not in (None, UNKNOWN):
896 var_doc.type_descr = descr
H A Dchecker.py296 doc.type_descr in (None, UNKNOWN) and
304 doc.type_descr in (None, UNKNOWN)):
/dports/math/polymake/polymake-4.5/lib/core/include/perl/
H A DValue.h993 Anchor* store_canned_value(SourceRef&& x, SV* type_descr, int n_anchors)
995 if (type_descr) {
996 auto place=allocate_canned(type_descr, n_anchors);
1006 Anchor* store_canned_ref(const Source& x, SV* type_descr, int n_anchors)
1008 if (type_descr)
1009 return store_canned_ref_impl((void*)&x, type_descr, options, n_anchors);
1096 Anchor* store_primitive_ref(const bool& x, SV* type_descr, int n_anchors);
1184 if (SV* type_descr=type_cache<std::unique_ptr<Source, Deleter>>::get_descr()) {
1211 SV* type_descr;
1215 (type_descr=type_cache<Source>::get_descr())) {
[all …]
/dports/lang/mosh/mosh-0.2.7/extlibs/gc-cvs/
H A Dptr_chck.c243 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
244 descr = *(word *)(type_descr in GC_is_visible()
/dports/databases/percona57-pam-for-mysql/boost_1_59_0/tools/build/src/engine/boehm_gc/
H A Dptr_chck.c246 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
247 descr = *(word *)(type_descr in GC_is_visible()
/dports/databases/mysqlwsrep57-server/boost_1_59_0/tools/build/src/engine/boehm_gc/
H A Dptr_chck.c246 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
247 descr = *(word *)(type_descr in GC_is_visible()
/dports/databases/xtrabackup/boost_1_59_0/tools/build/src/engine/boehm_gc/
H A Dptr_chck.c246 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
247 descr = *(word *)(type_descr in GC_is_visible()
/dports/databases/percona57-server/boost_1_59_0/tools/build/src/engine/boehm_gc/
H A Dptr_chck.c246 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
247 descr = *(word *)(type_descr in GC_is_visible()
/dports/databases/percona57-client/boost_1_59_0/tools/build/src/engine/boehm_gc/
H A Dptr_chck.c246 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
247 descr = *(word *)(type_descr in GC_is_visible()
/dports/astro/py-astropy/astropy-5.0/astropy/wcs/src/
H A Dpyutil.c27 PyArray_Descr* type_descr = NULL; in _PyArrayProxy_New() local
30 type_descr = (PyArray_Descr*)PyArray_DescrFromType(typenum); in _PyArrayProxy_New()
31 if (type_descr == NULL) { in _PyArrayProxy_New()
37 type_descr, in _PyArrayProxy_New()
/dports/math/gap/gap-4.11.0/hpcgap/extern/gc/
H A Dptr_chck.c242 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
243 descr = *(word *)(type_descr in GC_is_visible()
/dports/lang/gauche/Gauche-0.9.10/gc/
H A Dptr_chck.c244 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
245 descr = *(word *)(type_descr in GC_is_visible()
/dports/devel/boehm-gc-threaded/gc-8.0.6/
H A Dptr_chck.c244 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
245 descr = *(word *)(type_descr in GC_is_visible()
/dports/devel/boehm-gc/gc-8.0.6/
H A Dptr_chck.c244 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
245 descr = *(word *)(type_descr in GC_is_visible()
/dports/devel/boehm-gc-redirect/gc-8.0.6/
H A Dptr_chck.c244 ptr_t type_descr = *(ptr_t *)base; in GC_is_visible() local
245 descr = *(word *)(type_descr in GC_is_visible()
/dports/lang/mono/mono-5.10.1.57/libgc/
H A Dptr_chck.c287 ptr_t type_descr = *(ptr_t *)base; local
288 descr = *(word *)(type_descr
/dports/lang/gnat_util/gcc-6-20180516/boehm-gc/
H A Dptr_chck.c287 ptr_t type_descr = *(ptr_t *)base; local
288 descr = *(word *)(type_descr
/dports/lang/gcc48/gcc-4.8.5/boehm-gc/
H A Dptr_chck.c287 ptr_t type_descr = *(ptr_t *)base; local
288 descr = *(word *)(type_descr

12345