Home
last modified time | relevance | path

Searched refs:supported_types (Results 1 – 11 of 11) sorted by relevance

/external/iptables/extensions/
Dlibxt_pkttype.c29 static const struct pkttypes supported_types[] = { variable
48 for (i = 0; i < ARRAY_SIZE(supported_types); ++i) in print_types()
49 if(supported_types[i].printhelp == 1) in print_types()
50 printf("\t%-14s\t\t%s\n", supported_types[i].name, supported_types[i].help); in print_types()
72 for (i = 0; i < ARRAY_SIZE(supported_types); ++i) in parse_pkttype()
73 if(strcasecmp(pkttype, supported_types[i].name)==0) in parse_pkttype()
75 info->pkttype=supported_types[i].pkttype; in parse_pkttype()
96 for (i = 0; i < ARRAY_SIZE(supported_types); ++i) in print_pkttype()
97 if(supported_types[i].pkttype==info->pkttype) in print_pkttype()
99 printf("%s", supported_types[i].name); in print_pkttype()
/external/vboot_reference/cgpt/
Dcgpt_common.c643 } supported_types[] = { variable
658 for (i = 0; i < ARRAY_COUNT(supported_types); ++i) { in ResolveType()
659 if (!memcmp(type, supported_types[i].type, sizeof(Guid))) { in ResolveType()
660 strcpy(buf, supported_types[i].description); in ResolveType()
669 for (i = 0; i < ARRAY_COUNT(supported_types); ++i) { in SupportedType()
670 if (!strcmp(name, supported_types[i].name)) { in SupportedType()
671 memcpy(type, supported_types[i].type, sizeof(Guid)); in SupportedType()
681 for (i = 0; i < ARRAY_COUNT(supported_types); ++i) { in PrintTypes()
682 printf(" %-10s %s\n", supported_types[i].name, in PrintTypes()
683 supported_types[i].description); in PrintTypes()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dxla_op_registry.cc106 gtl::ArraySlice<DataType> supported_types, BackendOpFilter op_filter) { in RegisterBackend() argument
112 result.first->second.supported_types.insert(supported_types.begin(), in RegisterBackend()
113 supported_types.end()); in RegisterBackend()
221 for (DataType dtype : backend.second.supported_types) { in RegisterCompilationKernels()
Dxla_op_registry.h97 gtl::ArraySlice<DataType> supported_types,
151 std::set<DataType> supported_types; member
/external/autotest/server/site_tests/display_EdidStress/
Ddisplay_EdidStress.py60 supported_types = self._EDID_TYPES[connector]
66 if edid_type not in supported_types:
/external/wpa_supplicant_8/src/eap_server/
Dtncs.c43 TNC_MessageTypeList supported_types; member
163 os_free(imv->supported_types); in TNC_TNCS_ReportMessageTypes()
164 imv->supported_types = os_memdup(supportedTypes, in TNC_TNCS_ReportMessageTypes()
166 if (imv->supported_types == NULL) in TNC_TNCS_ReportMessageTypes()
473 os_free(imv->supported_types); in tncs_free_imv()
492 if (imv == NULL || imv->supported_types == NULL) in tncs_supported_type()
500 svendor = imv->supported_types[i] >> 8; in tncs_supported_type()
501 ssubtype = imv->supported_types[i] & 0xff; in tncs_supported_type()
/external/wpa_supplicant_8/src/eap_peer/
Dtncc.c63 TNC_MessageTypeList supported_types; member
128 os_free(imc->supported_types); in TNC_TNCC_ReportMessageTypes()
129 imc->supported_types = os_memdup(supportedTypes, in TNC_TNCC_ReportMessageTypes()
131 if (imc->supported_types == NULL) in TNC_TNCC_ReportMessageTypes()
457 os_free(imc->supported_types); in tncc_unload_imc()
467 if (imc == NULL || imc->supported_types == NULL) in tncc_supported_type()
475 svendor = imc->supported_types[i] >> 8; in tncc_supported_type()
476 ssubtype = imc->supported_types[i] & 0xff; in tncc_supported_type()
/external/tensorflow/tensorflow/contrib/util/
Dconvert_graphdef_memmapped_format_lib.cc57 static std::unordered_set<int> supported_types{ in ConvertConstantsToImmutable() local
63 if (supported_types.count(static_cast<int>(tensor_data_type)) == 0) { in ConvertConstantsToImmutable()
/external/autotest/tko/
Djob_serializer.py437 supported_types = [int, long, str]
438 if vartype in supported_types:
/external/tensorflow/tensorflow/compiler/xla/service/cpu/
Dir_emitter.h276 tensorflow::gtl::ArraySlice<PrimitiveType> supported_types);
Dir_emitter.cc2915 gtl::ArraySlice<PrimitiveType> supported_types) { in ElementTypesSameAndSupported() argument
2923 if (std::find(supported_types.begin(), supported_types.end(), in ElementTypesSameAndSupported()
2924 primitive_type) == supported_types.end()) { in ElementTypesSameAndSupported()