/src/sys/arch/mips/sibyte/include/ |
ui_bitfields.h | 49 uint64_t field; member in struct:bitfield_s
|
/src/lib/libform/ |
field_types.c | 40 extern FIELD _formi_default_field; 50 * Process the arguments, if any, for the field type. 113 * Set the field type of the field to be the one given. 116 set_field_type(FIELD *fptr, FIELDTYPE *type, ...) 119 FIELD *field; local in function:set_field_type 124 field = (fptr == NULL)? &_formi_default_field : fptr; 126 field->type = type; 127 _formi_create_field_args(type, &field->args, &type->link, &args 143 FIELD *field; local in function:field_type 157 FIELD *field; local in function:field_arg [all...] |
field.c | 1 /* $NetBSD: field.c,v 1.32 2021/04/13 13:13:03 christos Exp $ */ 32 __RCSID("$NetBSD: field.c,v 1.32 2021/04/13 13:13:03 christos Exp $"); 43 FIELD _formi_default_field = { 44 0, /* rows in the field */ 45 0, /* columns in the field */ 52 0, /* index of this field in form fields array. */ 53 0, /* number of buffers associated with this field */ 55 NO_JUSTIFICATION, /* justification style of the field */ 56 FALSE, /* set to true if field is in overlay mode */ 59 NULL, /* starting line in field (vert scroll) * 554 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; local in function:set_max_field 572 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; local in function:set_field_fore 701 FIELD *field = (fptr == NULL)? &_formi_default_field : fptr; local in function:set_new_page [all...] |
form.c | 40 extern FIELD _formi_default_field; 45 FALSE, /* make field list circular if true */ 56 current field changes */ 58 before current field changes */ 60 0, /* current field */ 65 {NULL, NULL}, /* sorted field list */ 302 set_form_fields(FORM *form, FIELD **fields) 340 /* set the page number of the field */ 362 FIELD ** 384 * Move the given field to the row and column given 389 FIELD *field = (fptr == NULL) ? &_formi_default_field : fptr; local in function:move_field [all...] |
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/disp/ |
nouveau_nvkm_engine_disp_dacnv50.c | 81 const u32 field = 0xc0000000 | (0x00000055 << shift); local in function:nv50_dac_power 84 nvkm_mask(device, 0x61a004 + doff, field, state);
|
nouveau_nvkm_engine_disp_sornv50.c | 59 const u32 field = 0x80000000 | (0x00000001 << shift); local in function:nv50_sor_power 62 nvkm_mask(device, 0x61c004 + soff, field, state);
|
nouveau_nvkm_engine_disp_piornv50.c | 70 const u32 field = 0x80000000 | (0x00000101 << shift); local in function:nv50_pior_power 73 nvkm_mask(device, 0x61e004 + poff, field, state);
|
/src/usr.sbin/acpitools/aml/ |
aml_store.c | 64 struct aml_field *field; local in function:aml_store_to_fieldname 68 field = &name->property->field; 72 if (field->f.ftype == f_t_field) { 73 wname = aml_search_name(env, field->f.fld.regname); 85 aml_region_write(env, or->space, field->flags, 87 field->bitoffset, field->bitlen); 90 or->offset + field->bitoffset / 8); 101 field->flags, buffer, or->offset, field->bitoffset [all...] |
aml_evalobj.c | 74 struct aml_field *field; local in function:aml_eval_fieldobject 86 field = &name->property->field; 88 if (field->bitlen > 32) { 94 if (field->f.ftype == f_t_field) { 95 wname = aml_search_name(env, field->f.fld.regname); 106 env->tempobject.regfield.flags = field->flags; 108 env->tempobject.regfield.bitoffset = field->bitoffset; 109 env->tempobject.regfield.bitlen = field->bitlen; 113 or->space, field->flags, or->offset [all...] |
/src/lib/libc/posix1e/ |
acl_from_text_nfs4.c | 55 * Parse the tag field of ACL entry passed as "str". If qualifier 80 warnx("malformed ACL: invalid \"tag\" field"); 86 * Parse the qualifier field of ACL entry passed as "str". 105 warnx("malformed ACL: empty \"qualifier\" field"); 165 warnx("malformed ACL: invalid \"type\" field"); 179 warnx("malformed ACL: \"appended id\" field present, " 213 char *field, *qualifier_field = NULL; local in function:_nfs4_acl_entry_from_text 223 field = strsep(&str, ":"); 225 field = string_skip_whitespace(field); [all...] |
/src/sbin/wsconsctl/ |
wsconsctl.h | 52 struct field { struct 57 #define FMT_BITFIELD 3 /* bit field */ 79 void field_setup(struct field *, int); 80 struct field *field_by_name(char *); 81 struct field *field_by_value(void *); 83 void pr_field(struct field *, const char *); 84 void rd_field(struct field *, char *, int);
|
/src/sys/ufs/ffs/ |
ffs_subr.c | 148 int field, subfield; local in function:ffs_fragacct 156 field = around[siz]; 159 if ((fragmap & field) == subfield) { 164 field <<= siz; 167 field <<= 1;
|
/src/common/lib/libutil/ |
snprintb.c | 156 uint64_t field = 0; // valid if field_kind != '\0' local in function:new_style 192 field = s->val >> f_lsb; 194 field &= ((uint64_t) 1 << f_width) - 1; 202 store_num(s, s->num_fmt, field); 215 if (field != cmp) 234 if (store_num(s, s->bitfmt, field) < 0)
|
/src/usr.sbin/makefs/ffs/ |
ffs_alloc.c | 542 int blk, field, subfield, pos; local in function:ffs_mapsearch 585 field = around[allocsiz]; 588 if ((blk & field) == subfield) 590 field <<= 1;
|
/src/distrib/utils/edlabel/ |
edlabel.c | 52 struct field { struct 60 struct field label_head[] = { 79 void edit_head_field(void *, struct field *, int); 94 edit_head_field(void *v, struct field *f, int modify /* also modify */) 171 struct field *f; 463 /* Set the d_npartitions field correctly */
|
/src/sys/arch/arm/imx/ |
imx51_ccm.c | 583 uint32_t field = clk_src % CCMR_CCGR_NSOURCE; local in function:imx51_clk_gating 587 bit = (mode << field * 2); 589 reg &= ~(0x03 << field * 2);
|
/src/sys/dev/microcode/aic7xxx/ |
aicasm_symbol.c | 109 case FIELD: 235 int field; local in function:symlist_add 237 field = FALSE; 243 case FIELD: 247 field = TRUE; 257 || (field 262 || (!field && (curnode->symbol->info.rinfo->address > 277 if ((field 282 || (!field 502 case FIELD [all...] |
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce/ |
amdgpu_dce_audio.c | 414 uint32_t field = 0; local in function:dce_aud_az_configure 430 uint32_t field = 0;*/ 462 field = get_reg_field_value(value, 466 field &= ~0x1; 469 field,
|
/src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dce110/ |
amdgpu_dce110_timing_generator_v.c | 150 uint32_t field = 0; local in function:dce110_timing_generator_v_is_in_vertical_blank 154 field = get_reg_field_value(value, CRTCV_STATUS, CRTC_V_BLANK); 155 return field == 1; 612 uint32_t field = get_reg_field_value( local in function:dce110_timing_generator_v_get_vblank_counter 615 return field;
|
/src/usr.bin/audio/ctl/ |
ctl.c | 54 static struct field *findfield(const char *name); 55 static void prfield(const struct field *p, const char *sep); 56 static void rdfield(struct field *p, char *q); 71 static struct field { struct 154 static struct field * 165 prfield(const struct field *p, const char *sep) 237 rdfield(struct field *p, char *q) 405 struct field *p; 410 warnx("field %s does not exist " 414 warnx("field %s does not exist" [all...] |
/src/usr.bin/mixerctl/ |
mixerctl.c | 52 static struct field { struct 75 static struct field * 86 prfield(struct field *p, const char *sep, int prvalset) 150 rdfield(struct field *p, char *q) 218 incfield(struct field *p, int inc) 260 struct field *p; 291 warnx("field %s does not exist", arg); 318 struct field *p; 322 warnx("field %s does not exist", arg);
|
/src/usr.bin/sort/ |
sort.h | 81 #define R 0x01 /* Field is reversed */ 85 #define N 0x10 /* Field is a number */ 88 #define L 0x80 /* Sort by field length */ 124 /* This is the column as seen by struct field. It is used by enterfield. 142 /* A field has an initial and final column; an omitted final column 147 * The first field contain the global flags etc. 150 struct field { struct 162 typedef int (*get_func_t)(FILE *, RECHEADER *, u_char *, struct field *); 181 length_t enterkey(RECHEADER *, const u_char *, u_char *, size_t, struct field *); 183 void fldreset(struct field *); [all...] |
/src/usr.sbin/diskpart/ |
diskpart.c | 365 static struct field { struct 381 struct field *fp;
|
/src/games/worms/ |
worms.c | 211 const char *field; local in function:main 224 field = NULL; 234 if (field) 235 field = NULL; 237 field = "WORM"; 309 if (field == NULL) 310 field = "WORM"; 312 field = NULL; 477 if (field) { 478 const char *p = field; [all...] |
/src/usr.sbin/altq/altqstat/ |
quip_client.c | 223 char *field, *cp; local in function:quip_recvresponse 235 field = strsep(&cp, ":"); 236 if (strcmp(field, "Content-Length") == 0) {
|