Searched refs:field (Results 76 - 100 of 568) sorted by relevance

1234567891011>>

/openbsd-current/gnu/gcc/gcc/
H A Dstor-layout.c316 however, the front-end may set the explicit width of the field, so its
321 layout_type setting DECL_FIELD_BITPOS correctly for the field. Set the
354 /* A zero-length bit-field affects the alignment of the next
355 field. In essence such bit-fields are not influenced by
378 /* See if we can use an ordinary integer mode for a bit-field.
409 alignment explicitly specified on the field decl. */;
413 /* If the field is of variable size, we can't misalign it since we
429 /* Some targets (i.e. i386, VMS) limit struct field alignment
666 update_alignment_for_field (record_layout_info rli, tree field,
671 /* The type of this field
662 update_alignment_for_field(record_layout_info rli, tree field, unsigned int known_align) argument
770 place_union_field(record_layout_info rli, tree field) argument
819 place_field(record_layout_info rli, tree field) argument
1315 tree field; local
1824 tree field; local
[all...]
H A Dtree-nested.c192 insert_field_into_struct (tree type, tree field) argument
196 DECL_CONTEXT (field) = type;
199 if (DECL_ALIGN (field) >= DECL_ALIGN (*p))
202 TREE_CHAIN (field) = *p;
203 *p = field;
263 /* Given DECL, a non-locally accessed variable, find or create a field
272 tree field; local
285 field = make_node (FIELD_DECL);
286 DECL_NAME (field) = DECL_NAME (decl);
290 TREE_TYPE (field)
305 insert_field_into_struct (get_frame_type (info), field); local
364 tree field = info->chain_field; local
375 insert_field_into_struct (get_frame_type (info), field); local
473 tree field; local
491 insert_field_into_struct (get_frame_type (info), field); local
513 tree field = info->nl_goto_field; local
541 insert_field_into_struct (get_frame_type (info), field); local
811 tree field = get_chain_field (i); local
827 get_frame_field(struct nesting_info *info, tree target_context, tree field, tree_stmt_iterator *tsi) argument
845 tree field = get_chain_field (i); local
870 tree x, field, new_decl; local
1198 get_local_debug_decl(struct nesting_info *info, tree decl, tree field) argument
1255 tree t = *tp, field, x; local
1445 tree field = lookup_field_for_decl (info, decl, NO_INSERT); local
1492 tree t = *tp, label, new_label, target_context, x, arg, field; local
1814 tree field, x, y; local
1848 tree arg, x, field; local
[all...]
H A Dcoverage.c596 tree field, fields;
603 field = build_decl (FIELD_DECL, NULL_TREE, get_gcov_unsigned_t ());
604 TREE_CHAIN (field) = fields;
605 fields = field;
612 field = build_decl (FIELD_DECL, NULL_TREE, array_type);
613 TREE_CHAIN (field) = fields;
614 fields = field;
670 tree field, fields = NULL_TREE;
675 field = build_decl (FIELD_DECL, NULL_TREE, get_gcov_unsigned_t ());
676 TREE_CHAIN (field)
592 tree field, fields; local
666 tree field, fields = NULL_TREE; local
765 tree field, fields = NULL_TREE; local
[all...]
H A Dtree-dump.h82 #define dump_child(field, child) \
83 queue_and_dump_index (di, field, child, DUMP_NONE)
/openbsd-current/gnu/usr.bin/perl/t/class/
H A Dinherit.t16 field $inita = "base";
18 field $adja;
24 field $initb = "derived";
26 field $adjb;
37 is($obj->initb, "derived", 'Object has derived class initialised field');
38 is($obj->adjb, "derived class", 'Object has derived class ADJUSTed field');
41 is($obj->inita, "base", 'Object has base class initialised field');
43 is($obj->adja, "base class", 'Object has base class ADJUSTed field');
64 field $x :param;
/openbsd-current/sys/arch/octeon/dev/
H A Doctrtc.c70 uint64_t op:4; /* Opcode field */
75 uint64_t a:10; /* Address field */
79 } field; member in union:mio_tws_sw_twsi_reg
197 twsi.field.v = 1;
198 twsi.field.r = 1;
199 twsi.field.sovr = 1;
200 twsi.field.a = OCTRTC_REG;
202 twsi.field.op = 1;
210 } while (twsi.field.v);
214 * The data field i
[all...]
/openbsd-current/usr.sbin/tcpdump/
H A Dprint-nsh.c105 uint32_t field, len, proto; local
120 field = (nsh.base & NSH_VER_MASK) >> NSH_VER_SHIFT;
121 switch (field) {
128 printf(" Unknown version %u", field);
132 field = (nsh.sp & NSH_SPI_MASK) >> NSH_SPI_SHIFT;
133 printf(" spi %u", field);
134 field = (nsh.sp & NSH_SI_MASK) >> NSH_SI_SHIFT;
135 printf(" si %u", field);
139 field = (nsh.base & NSH_TTL_MASK) >> NSH_TTL_SHIFT;
140 printf(" (ttl %u, len %u)", field, le
[all...]
H A Dpfctl_osfp.c166 fprintf(stderr, "%s:%d excess field\n", fp_filename,
539 #define EXPAND(field) do { \
542 if (isdigit(fp->field[_i]) && fp->field[_i+1] == '.') { \
543 _dot = fp->field[_i] - '0'; \
546 if (isdigit(fp->field[_i])) \
547 _start = fp->field[_i++] - '0'; \
550 if (isdigit(fp->field[_i])) \
551 _start = (_start * 10) + fp->field[_i++] - '0'; \
552 if (fp->field[_
767 u_char *field; local
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/t/
H A Dsigaction.t218 for my $field (sort keys %{{ %siginfo, %opt_val }}) {
220 skip("siginfo_t has no $field field", 1)
221 unless %always{$field} or ($Config{"d_siginfo_si_$field"} || '') eq 'define';
222 skip("no constant defined for SA_SIGINFO $field value $opt_val{$field}", 1)
223 unless defined $siginfo{$field};
224 skip("SA_SIGINFO $field value is wrong on $^O: $skip{$field}{
[all...]
/openbsd-current/gnu/usr.bin/binutils/bfd/
H A Dcpu-ia64-opc.c65 if (value >= 1u << self->field[0].bits)
68 *code |= value << self->field[0].shift;
75 *valuep = ((code >> self->field[0].shift)
76 & ((1u << self->field[0].bits) - 1));
86 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
88 new |= ((value & ((((ia64_insn) 1) << self->field[i].bits) - 1))
89 << self->field[i].shift);
90 value >>= self->field[i].bits;
105 for (i = 0; i < NELEMS (self->field)
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/bfd/
H A Dcpu-ia64-opc.c65 if (value >= 1u << self->field[0].bits)
68 *code |= value << self->field[0].shift;
75 *valuep = ((code >> self->field[0].shift)
76 & ((1u << self->field[0].bits) - 1));
86 for (i = 0; i < NELEMS (self->field) && self->field[i].bits; ++i)
88 new |= ((value & ((((ia64_insn) 1) << self->field[i].bits) - 1))
89 << self->field[i].shift);
90 value >>= self->field[i].bits;
105 for (i = 0; i < NELEMS (self->field)
[all...]
/openbsd-current/lib/libform/
H A Dform.priv.h79 #define _WINDOW_MODIFIED (0x10U) /* Current field window has been modified */
80 #define _FCHECK_REQUIRED (0x20U) /* Current field needs validation */
82 /* field status values */
85 #define _NEWPAGE (0x04U) /* field begins new page of form */
86 #define _MAY_GROW (0x08U) /* dynamic field may still grow */
93 #define _GENERIC (0x10U) /* A generic field type */
95 /* This are the field options required to be a selectable field in field
103 /* If field i
[all...]
H A Dfty_ipv4.c44 | FIELD * field,
49 | Return Values : TRUE - field is valid
50 | FALSE - field is invalid
53 Check_IPV4_Field(FIELD *field, const void *argp GCC_UNUSED) argument
55 char *bp = field_buffer(field, 0);
/openbsd-current/libexec/getty/
H A Dsubr.c65 for (sp = gettystrs; sp->field; sp++)
66 cgetstr(buf, sp->field, &sp->value);
67 for (np = gettynums; np->field; np++) {
68 if (cgetnum(buf, np->field, &n) == -1)
75 for (fp = gettyflags; fp->field; fp++) {
76 if (cgetcap(buf, fp->field, ':') == NULL)
85 for (sp = gettystrs; sp->field; sp++)
86 printf("cgetstr: %s=%s\n", sp->field, sp->value);
87 for (np = gettynums; np->field; np++)
88 printf("cgetnum: %s=%d\n", np->field, n
[all...]
/openbsd-current/sys/ufs/ufs/
H A Dinode.h268 #define DIP(ip, field) \
270 (ip)->i_ffs1_##field : (ip)->i_ffs2_##field)
272 #define DIP(ip, field) \
273 ((ip)->i_ffs1_##field)
277 #define DIP_OP(ip, field, op, value) \
280 (ip)->i_ffs1_##field op (value); \
282 (ip)->i_ffs2_##field op (value); \
285 #define DIP_OP(ip, field, op, value) \
287 (ip)->i_ffs1_##field o
[all...]
/openbsd-current/sys/dev/pci/drm/amd/amdgpu/
H A Dsoc15.h96 #define SOC15_REG_FIELD(reg, field) reg##__##field##_MASK, reg##__##field##__SHIFT
100 #define SOC15_RAS_REG_FIELD_VAL(val, entry, field) SOC15_REG_FIELD_VAL((val), (entry).field##_count_mask, (entry).field##_count_shift)
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dtree-dump.h77 #define dump_child(field, child) \
78 queue_and_dump_index (di, field, child, DUMP_NONE)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20001203-2.c23 struct field struct in struct:type
59 (struct field *) ((result_type)->objfile != ((void *)0)
66 int __len = ((sizeof (struct field)));
87 }) : xmalloc (sizeof (struct field)));
/openbsd-current/gnu/gcc/gcc/cp/
H A Dtypeck2.c99 fmt = "%s of constant field %qD";
303 error ("cannot declare field %q+D to be of abstract type %qT",
473 the field was set for all the elements. This is usually done
881 tree field;
893 for (field = TYPE_FIELDS (type); field; field = TREE_CHAIN (field))
897 if (!DECL_NAME (field) && DECL_C_BIT_FIELD (field))
877 tree field; local
999 tree field; local
1022 tree field = TYPE_FIELDS (type); local
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/Hash-Util-FieldHash/
H A DFieldHash.xs122 /* Delete an object from all field hashes it may occur in. Also delete
124 * the uf_set field of the uvar magic of a trigger.
139 SV* field = SvRV(field_ref);
140 (void) hv_delete_ent((HV*)field, ob_id, 0, 0);
189 /* mark an object (trigger) as having been used with a field
193 HUF_mark_field(pTHX_ SV *trigger, SV *field) {
196 SV* field_ref = newRV_inc(field);
197 UV field_addr = PTR2UV(field);
207 static I32 HUF_watch_key_safe(pTHX_ IV action, SV* field) {
208 MAGIC* mg = mg_find(field, PERL_MAGIC_uva
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN-Meta/lib/CPAN/Meta/
H A DHistory.pm123 Added 'release_status' field to indicate stable, testing or unstable
128 Added 'description' field for a longer description of the distribution
216 Added required 'abstract' field
220 Added required 'author' field
224 Added required 'meta-spec' field to define 'version' (and 'url') of the
229 Added 'provides' field
233 Added 'no_index' field and deprecated 'private' field. 'no_index'
238 Added 'keywords' field
242 Added 'resources' field wit
[all...]
/openbsd-current/sbin/isakmpd/
H A Disakmp_cfg.c101 char *id_string, *cfg_mode, *field; local
192 if (strcasecmp(anode->field, "Address") == 0) {
196 } else if (strcasecmp(anode->field, "Netmask")
201 } else if (strcasecmp(anode->field,
206 } else if (strcasecmp(anode->field,
211 } else if (strcasecmp(anode->field,
216 } else if (strcasecmp(anode->field,
223 "section [%s]", anode->field,
308 field = "Address";
312 field
743 char *field; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/cp/
H A Dtypeck2.c103 fmt = "%s of constant field `%D'";
163 error ("cannot declare field `%D' to be of type `%T'",
835 register tree field;
858 for (field = TYPE_FIELDS (type); field;
859 field = TREE_CHAIN (field))
861 if (! DECL_NAME (field) && DECL_C_BIT_FIELD (field))
863 members = tree_cons (field, integer_zero_nod
832 register tree field; local
954 register tree field = TYPE_FIELDS (type); local
[all...]
/openbsd-current/sbin/pfctl/
H A Dpfctl_osfp.c161 fprintf(stderr, "%s:%d excess field\n", fp_filename,
541 #define EXPAND(field) do { \
544 if (isdigit((unsigned char)fp->field[_i]) && \
545 fp->field[_i+1] == '.') { \
546 _dot = fp->field[_i] - '0'; \
549 if (isdigit((unsigned char)fp->field[_i])) \
550 _start = fp->field[_i++] - '0'; \
553 if (isdigit((unsigned char)fp->field[_i])) \
554 _start = (_start * 10) + fp->field[_i++] - '0'; \
555 if (fp->field[_
770 char *field; local
[all...]
/openbsd-current/lib/libcurses/base/
H A Dwresize.c71 #define REPAIR1(field, limit) \
72 if (tst->field > cmp->limit) \
73 tst->field = cmp->limit
78 #define REPAIR2(field, limit) \
79 if (tst->limit + tst->field > cmp->limit) \
80 tst->limit = (NCURSES_SIZE_T) (cmp->limit - tst->field)
85 #define REPAIR3(field, limit) \
86 if (tst->field > tst->limit) \
87 tst->field = tst->limit

Completed in 407 milliseconds

1234567891011>>