Searched refs:field (Results 101 - 125 of 456) sorted by relevance

1234567891011>>

/freebsd-13-stable/crypto/openssl/crypto/ec/
H A Decp_smpl.c79 * non-trivial representations of field elements if necessary
93 group->field = BN_new();
96 if (group->field == NULL || group->a == NULL || group->b == NULL) {
97 BN_free(group->field);
108 BN_free(group->field);
115 BN_clear_free(group->field);
122 if (!BN_copy(dest->field, src->field))
159 /* group->field */
160 if (!BN_copy(group->field,
[all...]
/freebsd-13-stable/lib/libusb/
H A Dlibusb_global_linux.h81 #define TAILQ_FOREACH_SAFE(var, head, field, tvar) \
83 (var) && ((tvar) = TAILQ_NEXT((var), field), 1); \
/freebsd-13-stable/sys/dev/mlx5/mlx5_en/
H A Den_hw_tls.h36 #define MLX5E_TLS_STAT_INC(tag, field, num) \
37 counter_u64_add((tag)->tls->stats.field, num)
/freebsd-13-stable/sys/dev/isci/scil/
H A Dsci_util.h86 #define SCI_FIELD_OFFSET(type, field) ((POINTER_UINT)&(((type *)0)->field))
/freebsd-13-stable/contrib/ofed/infiniband-diags/src/
H A Drdma-ndd.c91 const char *field; local
101 field = hostname;
102 while (*field && (*field != '.') && (dest < end))
103 *dest++ = *field++;
106 field = device;
107 while (*field && (dest < end))
108 *dest++ = *field++;
/freebsd-13-stable/contrib/ofed/libibmad/
H A Dfields.c839 /* XXX: Q3/2010 errata lists offset 48, but that means field is not
1123 * Another PortCounters field
1208 /* field must be byte aligned */
1231 uint32_t mad_get_field(void *buf, int base_offs, enum MAD_FIELDS field) argument
1233 return _get_field(buf, base_offs, ib_mad_f + field);
1236 void mad_set_field(void *buf, int base_offs, enum MAD_FIELDS field, argument
1239 _set_field(buf, base_offs, ib_mad_f + field, val);
1242 uint64_t mad_get_field64(void *buf, int base_offs, enum MAD_FIELDS field) argument
1244 return _get_field64(buf, base_offs, ib_mad_f + field);
1247 void mad_set_field64(void *buf, int base_offs, enum MAD_FIELDS field, argument
1253 mad_set_array(void *buf, int base_offs, enum MAD_FIELDS field, void *val) argument
1258 mad_get_array(void *buf, int base_offs, enum MAD_FIELDS field, void *val) argument
1263 mad_decode_field(uint8_t * buf, enum MAD_FIELDS field, void *val) argument
1282 mad_encode_field(uint8_t * buf, enum MAD_FIELDS field, void *val) argument
1356 mad_print_field(enum MAD_FIELDS field, const char *name, void *val) argument
1363 mad_dump_field(enum MAD_FIELDS field, char *buf, int bufsz, void *val) argument
1370 mad_dump_val(enum MAD_FIELDS field, char *buf, int bufsz, void *val) argument
1377 mad_field_name(enum MAD_FIELDS field) argument
[all...]
/freebsd-13-stable/contrib/ntp/ntpdc/
H A Dnl.pl30 $field = $1;
31 print STDERR "\tfield = '$field'\n" if $debug;
32 printf " printf(\"offsetof($field) = %%d\\n\", \n\t (int) offsetof($type, $field));\n";
/freebsd-13-stable/contrib/ncurses/form/
H A Dfty_alnum.c152 | FIELD *field,
157 | Return Values : TRUE - field is valid
158 | FALSE - field is invalid
161 Check_This_Field(FIELD *field, const void *argp) argument
164 unsigned char *bp = (unsigned char *)field_buffer(field, 0);
H A Dfty_alpha.c152 | FIELD *field,
157 | Return Values : TRUE - field is valid
158 | FALSE - field is invalid
161 Check_This_Field(FIELD *field, const void *argp) argument
164 unsigned char *bp = (unsigned char *)field_buffer(field, 0);
H A Dfty_int.c155 | FIELD * field,
160 | Return Values : TRUE - field is valid
161 | FALSE - field is invalid
164 Check_This_Field(FIELD *field, const void *argp) argument
170 unsigned char *bp = (unsigned char *)field_buffer(field, 0);
239 set_field_buffer(field, 0, buf);
/freebsd-13-stable/sys/compat/linuxkpi/common/include/linux/
H A Dtimer.h54 #define from_timer(var, arg, field) \
55 container_of(arg, typeof(*(var)), field)
/freebsd-13-stable/usr.bin/procstat/
H A Dprocstat_rusage.c119 char *field, *threadid; local
145 asprintf(&field, "{e:%s/%%D}", rusage_info[i].ri_name);
146 if (field == NULL)
149 xo_emit(field, *lp);
150 free(field);
/freebsd-13-stable/libexec/getty/
H A Dsubr.c85 for (sp = gettystrs; sp->field; sp++)
123 for (sp = gettystrs; sp->field; sp++) {
124 if ((l = cgetstr(buf, sp->field, &p)) >= 0) {
141 for (np = gettynums; np->field; np++) {
142 if (cgetnum(buf, np->field, &n) == -1)
150 for (fp = gettyflags; fp->field; fp++) {
151 if (cgetcap(buf, fp->field, ':') == NULL)
167 for (sp = gettystrs; sp->field; sp++)
170 for (np = gettynums; np->field; np++)
173 for (fp = gettyflags; fp->field; f
[all...]
/freebsd-13-stable/usr.bin/mail/
H A Dcmd2.c460 char field[LINESIZE]; local
468 istrncpy(field, *ap, sizeof(field));
469 if (member(field, tab))
471 h = hash(field);
473 igp->i_field = calloc((unsigned)strlen(field) + 1,
475 strcpy(igp->i_field, field);
510 * Compare two names for sorting ignored field list.
/freebsd-13-stable/bin/sh/
H A Dmknodes.c64 /* field types */
65 #define T_NODE 1 /* union node *field */
66 #define T_NODELIST 2 /* struct nodelist *field */
68 #define T_INT 4 /* int field */
70 #define T_TEMP 6 /* don't copy this field */
73 struct field { /* a structure field */ struct
74 char *name; /* name of field */
75 int type; /* type of field */
76 char *decl; /* declaration of field */
83 struct field field[MAXFIELDS]; /* the fields of the structure */ member in struct:str
[all...]
/freebsd-13-stable/sys/contrib/octeon-sdk/
H A Dcvmx-qlm.c299 * Lookup the bit information for a JTAG field name
314 cvmx_dprintf("__cvmx_qlm_lookup_field: Illegal field name %s\n", name);
319 * Get a field in a QLM JTAG chain
323 * @param name String name of field
325 * @return JTAG field value
329 const __cvmx_qlm_jtag_field_t *field = __cvmx_qlm_lookup_field(name); local
333 if (!field)
339 cvmx_helper_qlm_jtag_shift_zeros(qlm, qlm_jtag_length * (num_lanes-1-lane)); /* Shift to the start of the field */
340 cvmx_helper_qlm_jtag_shift_zeros(qlm, field->start_bit);
342 return cvmx_helper_qlm_jtag_shift(qlm, field
358 const __cvmx_qlm_jtag_field_t *field = __cvmx_qlm_lookup_field(name); local
[all...]
H A Dcvmx-utils.h106 * This macro spins on a field waiting for it to reach a value. It
107 * is common in code to need to wait for a specific field in a CSR
111 * 2) Check if ("type".s."field" "op" "value")
114 #define CVMX_WAIT_FOR_FIELD64(address, type, field, op, value, timeout_usec)\
123 if ((c.s.field) op (value)) { \
/freebsd-13-stable/usr.sbin/makefs/ffs/
H A Dufs_inode.h97 #define DIP(ip, field) \
99 (ip)->i_ffs1_##field : (ip)->i_ffs2_##field)
/freebsd-13-stable/contrib/wpa/src/utils/
H A Dradiotap_iter.h12 uint8_t field; member in struct:radiotap_override
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Deapol_test.py43 def set_network(self, id, field, value):
44 res = self.request("SET_NETWORK " + str(id) + " " + field + " " + value)
49 def set_network_quoted(self, id, field, value):
50 res = self.request("SET_NETWORK " + str(id) + " " + field + ' "' + value + '"')
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dtxt_db.h46 int TXT_DB_create_index(TXT_DB *db, int field, int (*qual) (OPENSSL_STRING *),
/freebsd-13-stable/contrib/kyua/utils/config/
H A Dlua_module.cpp77 /// containing the name of the field being indexed.
86 const std::string field = state.to_string(field_index); local
87 if (!field.empty() && field[0] == '_')
90 "found %s") % field);
141 /// \pre state(-2) The field to index into the table. Must be a string.
142 /// \pre state(-1) The value to set the indexed table field to.
158 throw config::value_error("Invalid field in configuration object "
185 /// current level. If the field does not exist, a new table is created.
186 /// \pre state(-1) The field t
[all...]
/freebsd-13-stable/bin/ps/
H A Dps.h70 const char *field; /* xo field name */ member in struct:var
/freebsd-13-stable/sys/dev/drm2/
H A Ddrm_linux_list.h275 #define hlist_entry(ptr, type, field) container_of(ptr, type, field)
283 #define hlist_for_each_entry(tp, p, head, field) \
285 p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
287 #define hlist_for_each_entry_continue(tp, p, field) \
289 p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
291 #define hlist_for_each_entry_from(tp, p, field) \
292 for (; p ? (tp = hlist_entry(p, typeof(*tp), field)): NULL; p = p->next)
/freebsd-13-stable/sys/cam/
H A Dcam_sim.h84 #define spriv_field0 sim_priv.entries[0].field
85 #define spriv_field1 sim_priv.entries[1].field

Completed in 137 milliseconds

1234567891011>>