HomeSort by: relevance | last modified time | path
    Searched refs:attr_type (Results 1 - 25 of 65) sorted by relevancy

1 2 3

  /src/external/ibm-public/postfix/dist/src/util/
attr_print0.c 115 int attr_type; local
137 while ((attr_type = va_arg(ap, int)) != ATTR_TYPE_END) {
138 switch (attr_type) {
197 msg_panic("%s: unknown type code: %d", myname, attr_type);
attr_print_plain.c 116 int attr_type; local
138 while ((attr_type = va_arg(ap, int)) != ATTR_TYPE_END) {
139 switch (attr_type) {
193 msg_panic("%s: unknown type code: %d", myname, attr_type);
attr_print64.c 150 int attr_type; local
171 while ((attr_type = va_arg(ap, int)) != ATTR_TYPE_END) {
172 switch (attr_type) {
238 msg_panic("%s: unknown type code: %d", myname, attr_type);
  /src/external/gpl3/binutils/dist/binutils/
sysinfo.y 52 %type <s> attr_desc attr_id attr_type
256 '(' attr_desc '(' attr_type attr_size ')' attr_id
366 attr_type: label
  /src/external/gpl3/binutils.old/dist/binutils/
sysinfo.y 52 %type <s> attr_desc attr_id attr_type
256 '(' attr_desc '(' attr_type attr_size ')' attr_id
366 attr_type: label
  /src/external/bsd/tcpdump/dist/
print-radius.c 616 } attr_type[]= variable in typeref:struct:attrtype
910 if (attr_type[attr_code].siz_subtypes) {
913 table = attr_type[attr_code].subtypes;
925 if ( data_value <= (uint32_t)(attr_type[attr_code].siz_subtypes - 1 +
926 attr_type[attr_code].first_subtype) &&
927 data_value >= attr_type[attr_code].first_subtype )
1386 if (type != 0 && type < TAM_SIZE(attr_type))
1387 attr_string = attr_type[type].name;
1405 if (type < TAM_SIZE(attr_type)) {
1407 if ( attr_type[type].print_func
    [all...]
print-l2tp.c 574 uint16_t attr_type; local
619 attr_type = GET_BE_U_2(dat); dat += 2;
620 ND_PRINT("%s", tok2str(l2tp_avp2str, "AVP-#%u", attr_type));
625 switch (attr_type) {
  /src/external/gpl3/gcc/dist/gcc/config/i386/
x86-tune-sched.cc 148 ix86_flags_dependent (rtx_insn *insn, rtx_insn *dep_insn, enum attr_type insn_type)
268 enum attr_type insn_type, dep_insn_type;
644 enum attr_type condgen_type;
x86-tune-sched-bd.cc 184 enum attr_type type;
  /src/external/gpl3/gcc.old/dist/gcc/config/i386/
x86-tune-sched.cc 126 ix86_flags_dependent (rtx_insn *insn, rtx_insn *dep_insn, enum attr_type insn_type)
246 enum attr_type insn_type, dep_insn_type;
597 enum attr_type condgen_type;
x86-tune-sched-bd.cc 184 enum attr_type type;
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
cortex-a57-fma-steering.cc 315 is_fmac_op (enum attr_type t)
323 is_fmul_op (enum attr_type t)
334 enum attr_type t;
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
cortex-a57-fma-steering.cc 315 is_fmac_op (enum attr_type t)
323 is_fmul_op (enum attr_type t)
334 enum attr_type t;
  /src/external/gpl3/gcc/dist/gcc/config/rs6000/
rs6000-pcrel-opt.cc 581 enum attr_type type)
668 enum attr_type use_insn_type = get_attr_type (use_insn);
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-pcrel-opt.cc 581 enum attr_type type)
668 enum attr_type use_insn_type = get_attr_type (use_insn);
  /src/external/mit/expat/dist/tests/
handlers.h 446 const XML_Char *attr_type; member in struct:AttTest
453 const XML_Char *attr_type, const XML_Char *default_value, int is_required);
handlers.c 1565 const XML_Char *attr_type,
1573 if (xcstrcmp(attr_type, at->attr_type) != 0)
  /src/external/gpl3/binutils/dist/gas/config/
obj-elf-attr.c 819 int attr_type = bfd_elf_obj_attrs_arg_type (abfd, vendor, tag); local
821 if (attr_type == (ATTR_TYPE_FLAG_STR_VAL | ATTR_TYPE_FLAG_INT_VAL))
823 else if (attr_type == ATTR_TYPE_FLAG_STR_VAL)
tc-msp430.c 1614 attr_type is 0 for .mspabi_attribute or 1 for .gnu_attribute.
1620 msp430_object_attribute (int attr_type)
1635 tag_name_s, tag_value_s, (attr_type ? ".gnu_attribute"
1637 else if (attr_type == 0)
1695 else if (attr_type == 1)
1724 attr_type);
  /src/external/gpl3/gcc/dist/gcc/config/visium/
visium.cc 540 enum attr_type attr_type = get_attr_type (insn); local
541 if (attr_type == TYPE_REG_MEM
542 || (attr_type == TYPE_MEM_REG
557 enum attr_type attr_type; local
580 enum attr_type dep_attr_type = get_attr_type (dep_insn);
600 attr_type = get_attr_type (insn);
608 if (attr_type == TYPE_REG_FP && visium_cpu == PROCESSOR_GR5)
650 else if (attr_type == TYPE_RET && visium_cpu == PROCESSOR_GR6
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/visium/
visium.cc 540 enum attr_type attr_type = get_attr_type (insn); local
541 if (attr_type == TYPE_REG_MEM
542 || (attr_type == TYPE_MEM_REG
557 enum attr_type attr_type; local
580 enum attr_type dep_attr_type = get_attr_type (dep_insn);
600 attr_type = get_attr_type (insn);
608 if (attr_type == TYPE_REG_FP && visium_cpu == PROCESSOR_GR5)
650 else if (attr_type == TYPE_RET && visium_cpu == PROCESSOR_GR6
    [all...]
  /src/external/bsd/wpa/dist/src/crypto/
crypto.h 1263 * @attr_type: ASN.1 type of @value buffer
1269 int attr_type, const u8 *value, size_t len);
  /src/external/bsd/wpa/dist/src/common/
dpp_crypto.c 2157 int attr_type; local
2172 &attr_len, &attr_type);
2180 if (attr_type != ASN1_TAG_UTF8STRING &&
2181 attr_type != ASN1_TAG_PRINTABLESTRING &&
2182 attr_type != ASN1_TAG_IA5STRING) {
2185 attr_type);
  /src/external/gpl3/gcc/dist/gcc/config/c6x/
c6x.cc 2971 shadow_type_p (enum attr_type type)
2990 enum attr_type type;
3116 enum attr_type type;
4225 enum attr_type type;
4481 enum attr_type insn_type = TYPE_UNKNOWN, dep_insn_type = TYPE_UNKNOWN;
5256 enum attr_type type;
5327 enum attr_type type;
  /src/external/gpl3/gcc.old/dist/gcc/config/c6x/
c6x.cc 2970 shadow_type_p (enum attr_type type)
2989 enum attr_type type;
3115 enum attr_type type;
4224 enum attr_type type;
4480 enum attr_type insn_type = TYPE_UNKNOWN, dep_insn_type = TYPE_UNKNOWN;
5255 enum attr_type type;
5326 enum attr_type type;

Completed in 101 milliseconds

1 2 3