Home
last modified time | relevance | path

Searched refs:elsz (Results 1 – 7 of 7) sorted by relevance

/NextBSD/sys/dev/ofw/
HDopenfirm.c436 OF_getprop_alloc(phandle_t package, const char *propname, int elsz, void **buf) in OF_getprop_alloc() argument
442 len % elsz != 0) in OF_getprop_alloc()
451 return (len / elsz); in OF_getprop_alloc()
455 OF_getencprop_alloc(phandle_t package, const char *name, int elsz, void **buf) in OF_getencprop_alloc() argument
461 retval = OF_getprop_alloc(package, name, elsz, buf); in OF_getencprop_alloc()
464 if (retval * elsz % 4 != 0) { in OF_getencprop_alloc()
471 for (i = 0; i < retval * elsz / 4; i++) in OF_getencprop_alloc()
HDopenfirm.h117 int elsz, void **buf);
119 int elsz, void **buf);
/NextBSD/usr.bin/xlint/lint1/
HDtree.c2650 int elem, elsz; in plength() local
2658 elsz = 0; in plength()
2676 if ((elsz = tp->t_str->size) == 0) in plength()
2687 if ((elsz = size(tp->t_tspec)) == 0) { in plength()
2690 } else if (elsz == -1) { in plength()
2696 if (elem == 0 && elsz != 0) { in plength()
2701 if (elsz == 0) in plength()
2702 elsz = CHAR_BIT; in plength()
2710 return (getinode(st, (int64_t)(elem * elsz / CHAR_BIT))); in plength()
3020 int elem, elsz; in bldszof() local
[all …]
HDdecl.c767 int elem, elsz; in length() local
788 elsz = tp->t_str->size; in length()
797 elsz = size(tp->t_tspec); in length()
798 if (elsz <= 0) in length()
802 return (elem * elsz); in length()
/NextBSD/contrib/gcc/
HDtree-ssa-structalias.c3707 tree elsz = TYPE_SIZE (TREE_TYPE (type)); in push_fields_onto_fieldstack() local
3714 || ! elsz in push_fields_onto_fieldstack()
3715 || ! host_integerp (elsz, 1) in push_fields_onto_fieldstack()
3716 || TREE_INT_CST_LOW (elsz) == 0) in push_fields_onto_fieldstack()
3719 nr = TREE_INT_CST_LOW (sz) / TREE_INT_CST_LOW (elsz); in push_fields_onto_fieldstack()
3737 offset + i * TREE_INT_CST_LOW (elsz), has_union))) in push_fields_onto_fieldstack()
3749 pair->size = elsz; in push_fields_onto_fieldstack()
3751 pair->offset = offset + i * TREE_INT_CST_LOW (elsz); in push_fields_onto_fieldstack()
/NextBSD/contrib/llvm/lib/Target/X86/
HDX86InstrAVX512.td2926 string elty, string elsz, string vsz512,
2931 !cast<ValueType>("v"##vsz512##elty##elsz), VR512,
2937 !cast<ValueType>("v"##vsz256##elty##elsz), VR256X,
2942 !cast<ValueType>("v"##vsz128##elty##elsz), VR128X,
/NextBSD/contrib/binutils/gas/config/
HDtc-arm.c5509 #define po_scalar_or_goto(elsz, label) do { \ in parse_operands() argument
5510 val = parse_scalar (&str, elsz, &inst.operands[i].vectype); \ in parse_operands()