Home
last modified time | relevance | path

Searched refs:new_field (Results 1 – 13 of 13) sorted by relevance

/freebsd-12-stable/contrib/ncurses/misc/
Dform.ref27 "new_field" @30 ;NONAME
Dform.def70 "new_field" @30 NONAME
/freebsd-12-stable/sys/arm64/arm64/
Didentcpu.c371 int i, j, cur_field, new_field; in update_user_regs() local
390 new_field = (value >> fields[j].shift) & 0xf; in update_user_regs()
393 (int)new_field < (int)cur_field) || in update_user_regs()
395 (u_int)new_field < (u_int)cur_field)) { in update_user_regs()
397 cur |= new_field << fields[j].shift; in update_user_regs()
/freebsd-12-stable/lib/ncurses/form/
DMakefile116 form_field_new.3 new_field.3 \
/freebsd-12-stable/contrib/gdb/gdb/
Ddwarf2read.c2568 struct nextfield *new_field; in dwarf2_add_field() local
2574 new_field = (struct nextfield *) xmalloc (sizeof (struct nextfield)); in dwarf2_add_field()
2575 make_cleanup (xfree, new_field); in dwarf2_add_field()
2576 memset (new_field, 0, sizeof (struct nextfield)); in dwarf2_add_field()
2577 new_field->next = fip->fields; in dwarf2_add_field()
2578 fip->fields = new_field; in dwarf2_add_field()
2585 new_field->accessibility = DW_ACCESS_public; in dwarf2_add_field()
2587 new_field->accessibility = DW_ACCESS_private; in dwarf2_add_field()
2588 new_field->virtuality = DW_VIRTUALITY_none; in dwarf2_add_field()
2592 new_field->accessibility = DW_UNSND (attr); in dwarf2_add_field()
[all …]
/freebsd-12-stable/contrib/ncurses/form/
Dfld_def.c277 new_field(int rows, int cols, int frow, int fcol, int nrow, int nbuf) in new_field() function
Dllib-lformtw159 #undef new_field
160 FIELD *new_field(
Dllib-lformt159 #undef new_field
160 FIELD *new_field(
Dllib-lformw159 #undef new_field
160 FIELD *new_field(
Dllib-lform159 #undef new_field
160 FIELD *new_field(
Dform.h324 extern NCURSES_EXPORT(FIELD *) new_field (int,int,int,int,int,int);
/freebsd-12-stable/contrib/ncurses/doc/
Dncurses-intro.doc1314 2. Create the form fields, using new_field().
1336 The basic function for creating fields is new_field():
1337 FIELD *new_field(int height, int width, /* new field size */
1343 multiple rows. So new_field() requires you to specify a width and
1400 Note that new_field() does not copy the pointer array into private
1419 When a field is created, the attributes not specified by the new_field
1434 This function is a sort of inverse of new_field(); instead of setting
/freebsd-12-stable/contrib/gcc/
Dsys-protos.h761 extern FIELD * new_field(int, int, int, int, int, int);