Searched refs:field (Results 126 - 150 of 352) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-utils.h104 * This macro spins on a field waiting for it to reach a value. It
105 * is common in code to need to wait for a specific field in a CSR
109 * 2) Check if ("type".s."field" "op" "value")
112 #define CVMX_WAIT_FOR_FIELD64(address, type, field, op, value, timeout_usec)\
121 if ((c.s.field) op (value)) { \
/freebsd-9.3-release/sys/contrib/rdma/
H A Dtypes.h39 #define container_of(p, stype, field) ((stype *)(((uint8_t *)(p)) - offsetof(stype, field)))
/freebsd-9.3-release/sys/dev/cxgb/ulp/iw_cxgb/
H A Diw_cxgb.h116 #define container_of(p, stype, field) ((stype *)(((uint8_t *)(p)) - offsetof(stype, field)))
/freebsd-9.3-release/sys/fs/nfs/
H A Dnfs.h587 #define LIST_NEWHEAD(nhead, ohead, field) do { \
589 (ohead)->lh_first->field.le_prev = &(nhead)->lh_first; \
593 #define LIST_PREPEND(head, phead, lelm, field) do { \
595 (lelm)->field.le_next = (head)->lh_first; \
596 (lelm)->field.le_next->field.le_prev = \
597 &(lelm)->field.le_next; \
600 (head)->lh_first->field.le_prev = &(head)->lh_first; \
/freebsd-9.3-release/crypto/openssl/crypto/ec/
H A Dec2_mult.c298 bn_wexpand(x1, group->field.top);
299 bn_wexpand(z1, group->field.top);
300 bn_wexpand(x2, group->field.top);
301 bn_wexpand(z2, group->field.top);
333 BN_consttime_swap(scalar->d[i] & mask, x1, x2, group->field.top);
334 BN_consttime_swap(scalar->d[i] & mask, z1, z2, group->field.top);
339 BN_consttime_swap(scalar->d[i] & mask, x1, x2, group->field.top);
340 BN_consttime_swap(scalar->d[i] & mask, z1, z2, group->field.top);
360 /* GF(2^m) field elements should always have BIGNUM::neg = 0 */
H A Decp_nist.c201 if (!group->field_mod_func(r, r, &group->field, ctx))
227 if (!group->field_mod_func(r, r, &group->field, ctx))
/freebsd-9.3-release/contrib/binutils/binutils/
H A Ddwarf.c56 byte_get_little_endian (unsigned char *field, int size) argument
61 return *field;
64 return ((unsigned int) (field[0]))
65 | (((unsigned int) (field[1])) << 8);
68 return ((unsigned long) (field[0]))
69 | (((unsigned long) (field[1])) << 8)
70 | (((unsigned long) (field[2])) << 16)
71 | (((unsigned long) (field[3])) << 24);
75 return ((dwarf_vma) (field[0]))
76 | (((dwarf_vma) (field[
99 byte_get_big_endian(unsigned char *field, int size) argument
143 byte_get_signed(unsigned char *field, int size) argument
[all...]
/freebsd-9.3-release/contrib/binutils/gas/
H A Dwrite.h103 /* This field is sort of misnamed. It appears to be a sort of random
104 scratch field, for use by the back ends. The main gas code doesn't
107 coff targets pass the `addend' field from the cpu file via this
108 field. I don't know why the `fx_offset' field above can't be used
124 struct cgen_maybe_multi_ifield * field; member in struct:fix::__anon495
125 /* is this field is the MSB field in a set? */
/freebsd-9.3-release/contrib/ncurses/form/
H A Dfrm_post.c65 if (!(form->field))
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-zephyr.c156 #define PARSE_FIELD_INT(field) \
158 if (!lose) field = strtol(s, 0, 16);
160 #define PARSE_FIELD_STR(field) \
162 if (!lose) field = s;
/freebsd-9.3-release/contrib/wpa/wpa_supplicant/
H A Dconfig_file.c482 const struct global_parse_data *field = &global_fields[i]; local
483 size_t flen = os_strlen(field->name);
484 if (os_strncmp(pos, field->name, flen) != 0 ||
488 if (field->parser(field, config, line, pos + flen + 1)) {
496 wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
579 static void write_str(FILE *f, const char *field, struct wpa_ssid *ssid) argument
581 char *value = wpa_config_get(ssid, field);
584 fprintf(f, "\t%s=%s\n", field, value);
589 static void write_int(FILE *f, const char *field, in argument
715 char field[20], *value; local
[all...]
/freebsd-9.3-release/lib/libc/isc/
H A Deventlib_p.h191 #define emulMaskInit(ctx, field, ev, lastnext) \
192 ctx->field.ctx = ctx; \
193 ctx->field.type = ev; \
194 ctx->field.result = lastnext;
/freebsd-9.3-release/contrib/ntp/ntpsnmpd/
H A DntpSnmpSubagentObject.h14 size_t ntpsnmpd_parse_string(const char *string, char *field, size_t
/freebsd-9.3-release/sys/ofed/drivers/infiniband/core/
H A Dsa_query.c126 #define PATH_REC_FIELD(field) \
127 .struct_offset_bytes = offsetof(struct ib_sa_path_rec, field), \
128 .struct_size_bytes = sizeof ((struct ib_sa_path_rec *) 0)->field, \
129 .field_name = "sa_path_rec:" #field
226 #define MCMEMBER_REC_FIELD(field) \
227 .struct_offset_bytes = offsetof(struct ib_sa_mcmember_rec, field), \
228 .struct_size_bytes = sizeof ((struct ib_sa_mcmember_rec *) 0)->field, \
229 .field_name = "sa_mcmember_rec:" #field
310 #define SERVICE_REC_FIELD(field) \
311 .struct_offset_bytes = offsetof(struct ib_sa_service_rec, field), \
[all...]
/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_subr.c145 int field, subfield; local
153 field = around[siz];
156 if ((fragmap & field) == subfield) {
159 field <<= siz;
162 field <<= 1;
/freebsd-9.3-release/crypto/openssl/crypto/x509/
H A Dx509name.c158 /* else we need to fixup the set field */
209 int X509_NAME_add_entry_by_txt(X509_NAME *name, const char *field, int type, argument
215 ne = X509_NAME_ENTRY_create_by_txt(NULL, field, type, bytes, len);
285 const char *field, int type,
292 obj = OBJ_txt2obj(field, 0);
296 ERR_add_error_data(2, "name=", field);
284 X509_NAME_ENTRY_create_by_txt(X509_NAME_ENTRY **ne, const char *field, int type, const unsigned char *bytes, int len) argument
/freebsd-9.3-release/contrib/gdb/gdb/
H A Ddwarfread.c238 field is valid (I.E. we found a matching attribute in the DIE). Since
240 such as AT_low_pc, without restricting the values of the field,
321 /* We put a pointer to this structure in the read_symtab_private field
927 struct field field; member in struct:nextfield
1006 /* Get space to record the next field's data. */
1011 list->field.name =
1014 FIELD_TYPE (list->field) = decode_die_type (&mbr);
1015 FIELD_BITPOS (list->field) = 8 * locval (&mbr);
1016 FIELD_STATIC_KIND (list->field)
1645 struct field field; member in struct:nextfield
[all...]
/freebsd-9.3-release/crypto/heimdal/kadmin/
H A Dget.c162 format_field(kadm5_principal_ent_t princ, unsigned int field, argument
165 switch(field) {
401 char *field, *header; local
406 field = strsep(&q, "=");
409 if(strcasecmp(field, f->fieldname) == 0) {
415 krb5_warnx(context, "unknown field name \"%s\"", field);
/freebsd-9.3-release/lib/libc/gen/
H A Dgetpwent.c975 #define STRING(field) do { \
976 (field) = p; \
983 #define SCALAR(field) do { \
984 if (p + sizeof(field) > eom) \
986 memcpy(&(field), p, sizeof(field)); \
987 p += sizeof(field); \
1046 #define STRING(field) do { \
1047 (field) = p; \
1054 #define SCALAR(field) d
[all...]
H A Ddisklabel.c95 #define getnumdflt(field, dname, dflt) \
96 { long f; (field) = (cgetnum(buf, dname, &f) == -1) ? (dflt) : f; }
/freebsd-9.3-release/sys/sys/
H A Dcdefs.h398 #define __offsetof(type, field) __builtin_offsetof(type, field)
401 #define __offsetof(type, field) \
402 ((__size_t)(__uintptr_t)((const volatile void *)&((type *)0)->field))
404 #define __offsetof(type, field) \
407 (static_cast<type *> (0)->field))))
H A Dtypes.h274 #define offsetof(type, field) __offsetof(type, field)
/freebsd-9.3-release/contrib/binutils/opcodes/
H A Dia64-gen.c126 list). This field is filled in by compute_completer_bits (). */
892 irf_operand (int op, const char *field)
894 if (!field)
903 return ((op == IA64_OPND_RR_R3 && strstr (field, "rr"))
904 || (op == IA64_OPND_DBR_R3 && strstr (field, "dbr"))
905 || (op == IA64_OPND_IBR_R3 && strstr (field, "ibr"))
906 || (op == IA64_OPND_PKR_R3 && strstr (field, "pkr"))
907 || (op == IA64_OPND_PMC_R3 && strstr (field, "pmc"))
908 || (op == IA64_OPND_PMD_R3 && strstr (field, "pmd"))
909 || (op == IA64_OPND_MSR_R3 && strstr (field, "ms
890 irf_operand(int op, const char *field) argument
915 in_iclass_mov_x(struct ia64_opcode *idesc, struct iclass *ic, const char *format, const char *field) argument
1029 in_iclass(struct ia64_opcode *idesc, struct iclass *ic, const char *format, const char *field, int *notep) argument
1057 ic->comment, field); local
[all...]
/freebsd-9.3-release/contrib/gcc/cp/
H A Dsearch.c380 figure out whether it can access this field. (Since it is only one
386 tree field;
421 field = NULL_TREE;
423 /* We might have a nested class and a field with the
426 field with this name. */
430 field = fields[i--];
432 if (TREE_CODE (field) != TYPE_DECL
433 && !DECL_CLASS_TEMPLATE_P (field))
434 field = NULL_TREE;
439 field
384 tree field; local
[all...]
/freebsd-9.3-release/sys/dev/random/
H A Dnehemiah.c76 } field; member in union:VIA_ACE_CW
139 acw.field.round_count = 12;

Completed in 374 milliseconds

1234567891011>>