Searched refs:form (Results 1 - 25 of 447) sorted by relevance

1234567891011>>

/netbsd-current/external/gpl3/gdb/dist/gdb/dwarf2/
H A Dattribute.c41 if (form != DW_FORM_addr && form != DW_FORM_addrx
42 && form != DW_FORM_GNU_addr_index)
45 contain an address must always be in DW_FORM_addr form.
52 a list of legitimate cases where a non-address form is allowed,
69 return (form == DW_FORM_strp || form == DW_FORM_line_strp
70 || form == DW_FORM_string
71 || form == DW_FORM_strx
72 || form
[all...]
H A Dstringify.h29 /* Convert a DWARF value form code into its string name. */
30 extern const char *dwarf_form_name (unsigned form);
32 /* Convert a boolean to a string form. */
H A Dattribute.h47 attribute's form into account. */
50 /* If the attribute has a string form, return the string value;
54 /* Return the block value. The attribute must have block form. */
62 form. */
65 gdb_assert (form == DW_FORM_ref_sig8);
70 form. */
86 /* Return the unsigned value. Requires that the form be an unsigned
87 form, and that reprocessing not be needed. */
152 return (form == DW_FORM_ref_addr
153 || form
309 ENUM_BITFIELD(dwarf_form) form : 15; member in struct:attribute
[all...]
H A Dstringify.c82 dwarf_form_name (unsigned form) argument
84 const char *name = get_DW_FORM_name (form);
87 return dwarf_unknown ("FORM", form);
/netbsd-current/lib/libform/
H A Dpost.c35 #include "form.h"
39 * Post the form to the screen.
42 post_form(FORM *form) argument
46 if (form == NULL)
49 if (form->posted == 1)
52 if ((form->fields == NULL) || (form->fields[0] == NULL))
55 if (form->in_init == 1)
58 if (scale_form(form, &rows, &cols) != E_OK)
61 if ((form
88 unpost_form(FORM *form) argument
[all...]
H A Dform.c1 /* $NetBSD: form.c,v 1.17 2021/04/13 13:13:04 christos Exp $ */
33 __RCSID("$NetBSD: form.c,v 1.17 2021/04/13 13:13:04 christos Exp $");
37 #include <form.h>
44 FALSE, /* the form is posted */
46 NULL, /* window for the form */
47 NULL, /* subwindow for the form */
50 0, /* options for the form */
51 NULL, /* function called when form posted and
53 NULL, /* function called when form is unposted and
55 NULL, /* function called when form poste
73 set_form_win(FORM *form, WINDOW *win) argument
94 form_win(FORM *form) argument
106 set_form_sub(FORM *form, WINDOW *window) argument
127 form_sub(FORM *form) argument
139 scale_form(FORM *form, int *rows, int *cols) argument
166 set_form_userptr(FORM *form, void *ptr) argument
180 form_userptr(FORM *form) argument
193 set_form_opts(FORM *form, Form_Options options) argument
207 form_opts_on(FORM *form, Form_Options options) argument
221 form_opts_off(FORM *form, Form_Options options) argument
236 form_opts(FORM *form) argument
248 set_form_init(FORM *form, Form_Hook func) argument
262 form_init(FORM *form) argument
274 set_form_term(FORM *form, Form_Hook function) argument
288 form_term(FORM *form) argument
302 set_form_fields(FORM *form, FIELD **fields) argument
363 form_fields(FORM *form) argument
375 field_count(FORM *form) argument
404 set_form_page(FORM *form, int page) argument
423 form_max_page(FORM *form) argument
435 form_page(FORM *form) argument
447 set_current_field(FORM *form, FIELD *field) argument
471 current_field(FORM *form) argument
514 free_form(FORM *form) argument
539 data_ahead(FORM *form) argument
560 data_behind(FORM *form) argument
580 pos_form_cursor(FORM *form) argument
[all...]
H A Ddriver.c36 #include "form.h"
40 traverse_form_links(FORM *form, int direction);
50 traverse_form_links(FORM *form, int direction) argument
54 idx = form->cur_field;
59 if (form->fields[idx]->left == NULL)
61 idx = form->fields[idx]->left->index;
65 if (form->fields[idx]->right == NULL)
67 idx = form->fields[idx]->right->index;
71 if (form->fields[idx]->up == NULL)
73 idx = form
97 form_driver(FORM *form, int c) argument
[all...]
H A Dinternals.h33 #include "form.h"
42 /* define the default options for a form... */
107 _formi_draw_page(FORM *form);
109 _formi_find_pages(FORM *form);
111 _formi_field_choice(FORM *form, int c);
115 _formi_manipulate_field(FORM *form, int c);
117 _formi_pos_first_field(FORM *form);
119 _formi_pos_new_field(FORM *form, unsigned direction, unsigned use_sorted);
121 _formi_redraw_field(FORM *form, int field);
123 _formi_sort_fields(FORM *form);
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/dwarf2/
H A Dattribute.c39 if (form != DW_FORM_addr && form != DW_FORM_addrx
40 && form != DW_FORM_GNU_addr_index)
43 contain an address must always be in DW_FORM_addr form.
50 a list of legitimate cases where a non-address form is allowed,
67 if (form == DW_FORM_strp || form == DW_FORM_line_strp
68 || form == DW_FORM_string
69 || form == DW_FORM_strx
70 || form
[all...]
H A Dstringify.h29 /* Convert a DWARF value form code into its string name. */
30 extern const char *dwarf_form_name (unsigned form);
32 /* Convert a boolean to a string form. */
H A Dattribute.h46 attribute's form into account. */
49 /* If the attribute has a string form, return the string value;
87 return (form == DW_FORM_ref_addr
88 || form == DW_FORM_ref1
89 || form == DW_FORM_ref2
90 || form == DW_FORM_ref4
91 || form == DW_FORM_ref8
92 || form == DW_FORM_ref_udata
93 || form == DW_FORM_GNU_ref_alt);
96 /* Check if the attribute's form i
120 ENUM_BITFIELD(dwarf_form) form : 15; member in struct:attribute
[all...]
H A Dstringify.c82 dwarf_form_name (unsigned form) argument
84 const char *name = get_DW_FORM_name (form);
87 return dwarf_unknown ("FORM", form);
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/man/
H A Dngettext.x2 ngettext \- translate message and choose plural form
7 chooses the appropriate plural form, which depends on the number \fICOUNT\fP
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Dcde.s5 # vcx1{a} encoding has the following form
6 # 111a110i0d10iiiidddd0pppi1iiiiii (vector form)
8 # 111a110s0d10iiiidddd0pppi0iiiiii (S/D register form)
16 # vcx2{a} encoding has the following form
17 # 111a110i0d11iiiidddd0pppi1mimmmm (vector form)
18 # 111a110s0d11iiiidddd0pppi0mimmmm (S/D register form)
26 # vcx3{a} encoding has the following form
27 # 111a110i1diinnnndddd0pppn1mimmmm (vector form)
28 # 111a110s1diinnnndddd0pppn0mimmmm (S/D register form)
H A Darch7m-bad.l2 [^:]*:5: Error: selected processor does not support 'A' form of this instruction -- `cpsie a'
3 [^:]*:6: Error: Thumb does not support the 2-argument form of this instruction -- `cpsie i,#0x10'
H A Dadd-shift-two.d1 # name: Two register form of data processing instruction with register shifted register operand
/netbsd-current/lib/libc/gen/
H A Dgetbsize.c12 * 2. Redistributions in binary form must reproduce the above copyright
59 const char *form; local
65 form = "";
75 form = "G";
80 form = "K";
85 form = "M";
106 form = "";
114 snprintf(header, sizeof(header), "%ld%s-blocks", n, form);
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/pe/
H A Daligncomm-c.d4 # Test the aligned form of the .comm pseudo-op.
H A Daligncomm-d.d4 # Test the aligned form of the .comm pseudo-op.
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A Dec2_oct.c114 point_conversion_form_t form,
123 if ((form != POINT_CONVERSION_COMPRESSED)
124 && (form != POINT_CONVERSION_UNCOMPRESSED)
125 && (form != POINT_CONVERSION_HYBRID)) {
145 (form ==
172 buf[0] = form;
173 if ((form != POINT_CONVERSION_UNCOMPRESSED) && !BN_is_zero(x)) {
198 if (form == POINT_CONVERSION_UNCOMPRESSED
199 || form == POINT_CONVERSION_HYBRID) {
239 point_conversion_form_t form; local
113 ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Decp_oct.c155 point_conversion_form_t form,
164 if ((form != POINT_CONVERSION_COMPRESSED)
165 && (form != POINT_CONVERSION_UNCOMPRESSED)
166 && (form != POINT_CONVERSION_HYBRID)) {
186 (form ==
212 if ((form == POINT_CONVERSION_COMPRESSED
213 || form == POINT_CONVERSION_HYBRID) && BN_is_odd(y))
214 buf[0] = form + 1;
216 buf[0] = form;
236 if (form
154 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
272 point_conversion_form_t form; local
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec2_oct.c127 point_conversion_form_t form,
138 if ((form != POINT_CONVERSION_COMPRESSED)
139 && (form != POINT_CONVERSION_UNCOMPRESSED)
140 && (form != POINT_CONVERSION_HYBRID)) {
160 (form ==
189 buf[0] = form;
190 if ((form != POINT_CONVERSION_UNCOMPRESSED) && !BN_is_zero(x)) {
215 if (form == POINT_CONVERSION_UNCOMPRESSED
216 || form == POINT_CONVERSION_HYBRID) {
260 point_conversion_form_t form; local
125 ossl_ec_GF2m_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
[all...]
H A Decp_oct.c160 point_conversion_form_t form,
169 if ((form != POINT_CONVERSION_COMPRESSED)
170 && (form != POINT_CONVERSION_UNCOMPRESSED)
171 && (form != POINT_CONVERSION_HYBRID)) {
191 (form ==
217 if ((form == POINT_CONVERSION_COMPRESSED
218 || form == POINT_CONVERSION_HYBRID) && BN_is_odd(y))
219 buf[0] = form + 1;
221 buf[0] = form;
241 if (form
159 ossl_ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
278 point_conversion_form_t form; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/h8300/
H A Dgenmova.sh97 # There doesn't seem to be a well-established canonical form for
100 for form in mult ashift; do
101 case $form in
113 (plus:$d ($form:$d $operand
133 ($form:$d (zero_extend:$d $operand)
142 (plus:$d ($form:$d (zero_extend:$d $operand)
163 # memory form first since register_operand accepts mem subregs
172 (and:$d ($form:$d $paradoxical
182 (plus:$d (and:$d ($form:$d $paradoxical
/netbsd-current/external/gpl3/gcc/dist/gcc/config/h8300/
H A Dgenmova.sh96 # There doesn't seem to be a well-established canonical form for
99 for form in mult ashift; do
100 case $form in
112 (plus:$d ($form:$d $operand
131 ($form:$d (zero_extend:$d $operand)
139 (plus:$d ($form:$d (zero_extend:$d $operand)
159 # memory form first since register_operand accepts mem subregs
168 (and:$d ($form:$d $paradoxical
177 (plus:$d (and:$d ($form:$d $paradoxical

Completed in 216 milliseconds

1234567891011>>