| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/uAPI2/ |
| H A D | rk_aiq_user_api2_helper.h | 34 #define __RKAIQUAPI_SET(api_name, type_name) \ argument 37 type_name *__data = (type_name *)data; \ 41 #define __RKAIQUAPI_GET(api_name, type_name) \ argument 44 type_name *__data = (type_name *)data; \ 48 #define __RKAIQUAPI_CALLER(type_name) \ argument 49 inline int __rkaiq_uapi_##type_name##_call( \ 59 type_name real_obj; \ 64 ret = __rkaiq_uapi_##type_name##_call(desc, sys_ctx, cmd_js, &old_json, \ 67 XCAM_LOG_ERROR("sysctl for %s readback failed.", #type_name); \ 75 memset(&real_obj, 0, sizeof(type_name)); \ [all …]
|
| /OK3568_Linux_fs/u-boot/cmd/ |
| H A D | cbfs.c | 110 char *type_name = NULL; in do_cbfs_ls() local 117 type_name = "stage"; in do_cbfs_ls() 120 type_name = "payload"; in do_cbfs_ls() 123 type_name = "option rom"; in do_cbfs_ls() 126 type_name = "boot splash"; in do_cbfs_ls() 129 type_name = "raw"; in do_cbfs_ls() 132 type_name = "vsa"; in do_cbfs_ls() 135 type_name = "mbi"; in do_cbfs_ls() 138 type_name = "microcode"; in do_cbfs_ls() 141 type_name = "cmos default"; in do_cbfs_ls() [all …]
|
| H A D | efi.c | 14 static const char *const type_name[] = { variable 149 name = desc->type < ARRAY_SIZE(type_name) ? in efi_print_mem_table() 150 type_name[desc->type] : "<invalid>"; in efi_print_mem_table()
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | ubsan.c | 180 rhs_val_str, data->type->type_name); in __ubsan_handle_divrem_overflow() 197 data->type->type_name); in handle_null_ptr_deref() 212 (void *)ptr, data->type->type_name); in handle_misaligned_access() 228 pr_err("for an object of type %s\n", data->type->type_name); in handle_object_size_mismatch() 287 data->array_type->type_name); in __ubsan_handle_out_of_bounds() 317 lhs_type->type_name); in __ubsan_handle_shift_out_of_bounds() 325 lhs_type->type_name); in __ubsan_handle_shift_out_of_bounds() 357 val_str, data->type->type_name); in __ubsan_handle_load_invalid_value() 380 align, offset, data->type->type_name); in __ubsan_handle_alignment_assumption() 383 align, data->type->type_name); in __ubsan_handle_alignment_assumption()
|
| /OK3568_Linux_fs/kernel/drivers/hwmon/ |
| H A D | adm1021.c | 326 const char *type_name; in adm1021_detect() local 353 type_name = "max1617a"; in adm1021_detect() 356 type_name = "adm1023"; in adm1021_detect() 358 type_name = "adm1021"; in adm1021_detect() 362 type_name = "thmc10"; in adm1021_detect() 364 type_name = "gl523sm"; in adm1021_detect() 366 type_name = "mc1066"; in adm1021_detect() 403 type_name = "lm84"; in adm1021_detect() 408 type_name = "max1617"; in adm1021_detect() 413 type_name, i2c_adapter_id(adapter), client->addr); in adm1021_detect() [all …]
|
| H A D | max1668.c | 363 const char *type_name; in max1668_detect() local 378 type_name = NULL; in max1668_detect() 380 type_name = "max1668"; in max1668_detect() 382 type_name = "max1805"; in max1668_detect() 384 type_name = "max1989"; in max1668_detect() 386 if (!type_name) in max1668_detect() 389 strlcpy(info->type, type_name, I2C_NAME_SIZE); in max1668_detect()
|
| H A D | thmc50.c | 314 const char *type_name; in thmc50_detect() local 334 type_name = "adm1022"; in thmc50_detect() 346 type_name = "thmc50"; in thmc50_detect() 353 type_name, (revision >> 4) - 0xc, revision & 0xf); in thmc50_detect() 355 strlcpy(info->type, type_name, I2C_NAME_SIZE); in thmc50_detect()
|
| H A D | lm85.c | 1470 const char *type_name = NULL; in lm85_detect() local 1489 type_name = "lm85c"; in lm85_detect() 1492 type_name = "lm85b"; in lm85_detect() 1502 type_name = "lm96000"; in lm85_detect() 1508 type_name = "adm1027"; in lm85_detect() 1512 type_name = "adt7463"; in lm85_detect() 1516 type_name = "adt7468"; in lm85_detect() 1524 type_name = "emc6d100"; in lm85_detect() 1527 type_name = "emc6d102"; in lm85_detect() 1531 type_name = "emc6d103"; in lm85_detect() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/md/ |
| H A D | dm-exception-store.c | 72 static struct dm_exception_store_type *get_type(const char *type_name) in get_type() argument 77 type = _get_exception_store_type(type_name); in get_type() 81 type_name_dup = kstrdup(type_name, GFP_KERNEL); in get_type() 83 DMERR("No memory left to attempt load for \"%s\"", type_name); in get_type() 88 !(type = _get_exception_store_type(type_name))) { in get_type() 96 DMWARN("Module for exstore type \"%s\" not found.", type_name); in get_type()
|
| H A D | dm-log.c | 65 static struct dm_dirty_log_type *get_type(const char *type_name) in get_type() argument 70 if (!type_name) in get_type() 73 log_type = _get_dirty_log_type(type_name); in get_type() 77 type_name_dup = kstrdup(type_name, GFP_KERNEL); in get_type() 80 type_name); in get_type() 85 !(log_type = _get_dirty_log_type(type_name))) { in get_type() 93 DMWARN("Module for logging type \"%s\" not found.", type_name); in get_type() 147 struct dm_dirty_log *dm_dirty_log_create(const char *type_name, in dm_dirty_log_create() argument 159 type = get_type(type_name); in dm_dirty_log_create()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/ |
| H A D | terminal.hpp | 624 #define BOOST_SPIRIT_TERMINAL_NAME(name, type_name) \ argument 626 typedef boost::proto::terminal<tag::name>::type type_name; \ 627 type_name const name = {{}}; \ 633 #define BOOST_SPIRIT_TERMINAL_NAME(name, type_name) \ argument 635 typedef boost::proto::terminal<tag::name>::type type_name; \ 662 #define BOOST_SPIRIT_TERMINAL_NAME_EX(name, type_name) \ argument 664 typedef boost::spirit::terminal<tag::name> type_name; \ 665 type_name const name = type_name(); \ 671 #define BOOST_SPIRIT_TERMINAL_NAME_EX(name, type_name) \ argument 673 typedef boost::spirit::terminal<tag::name> type_name; \
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | ipa-utils.h | 259 tree type_name = TYPE_NAME (type); in get_odr_name_for_type() local 260 if (type_name == NULL_TREE in get_odr_name_for_type() 261 || TREE_CODE (type_name) != TYPE_DECL in get_odr_name_for_type() 262 || !DECL_ASSEMBLER_NAME_SET_P (type_name)) in get_odr_name_for_type() 265 return IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (type_name)); in get_odr_name_for_type()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | ipa-utils.h | 259 tree type_name = TYPE_NAME (type); in get_odr_name_for_type() local 260 if (type_name == NULL_TREE in get_odr_name_for_type() 261 || TREE_CODE (type_name) != TYPE_DECL in get_odr_name_for_type() 262 || !DECL_ASSEMBLER_NAME_SET_P (type_name)) in get_odr_name_for_type() 265 return IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (type_name)); in get_odr_name_for_type()
|
| /OK3568_Linux_fs/kernel/drivers/mfd/ |
| H A D | arizona-core.c | 988 const char *type_name = NULL; in arizona_dev_init() local 1184 type_name = "WM5102"; in arizona_dev_init() 1202 type_name = "WM5110"; in arizona_dev_init() 1205 type_name = "WM8280"; in arizona_dev_init() 1208 type_name = "WM5110"; in arizona_dev_init() 1225 type_name = "CS47L24"; in arizona_dev_init() 1229 type_name = "WM1831"; in arizona_dev_init() 1247 type_name = "WM8997"; in arizona_dev_init() 1264 type_name = "WM8998"; in arizona_dev_init() 1268 type_name = "WM1814"; in arizona_dev_init() [all …]
|
| /OK3568_Linux_fs/kernel/net/rfkill/ |
| H A D | rfkill-gpio.c | 78 const char *type_name; in rfkill_gpio_probe() local 86 device_property_read_string(&pdev->dev, "type", &type_name); in rfkill_gpio_probe() 91 rfkill->type = rfkill_find_type(type_name); in rfkill_gpio_probe()
|
| /OK3568_Linux_fs/kernel/arch/alpha/kernel/ |
| H A D | setup.c | 454 char *type_name, *var_name, *p; in setup_arch() local 578 cpu->type, &type_name, &var_name); in setup_arch() 589 type_name, (*var_name ? " variation " : ""), var_name, in setup_arch() 601 type_name, (*var_name ? " variation " : ""), in setup_arch() 1002 char **type_name, char **variation_name) in get_sysnames() argument 1009 *type_name = systype_names[type]; in get_sysnames() 1012 *type_name = api_names[type - ST_API_BIAS]; in get_sysnames() 1015 *type_name = unofficial_names[type - ST_UNOFFICIAL_BIAS]; in get_sysnames() 1017 *type_name = sys_unknown; in get_sysnames()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/ |
| H A D | vmwgfx_simple_resource.c | 175 " creation.\n", func->res_func.type_name); in vmw_simple_resource_create_ioctl() 243 func->res_func.type_name, in vmw_simple_resource_lookup() 251 func->res_func.type_name, in vmw_simple_resource_lookup()
|
| /OK3568_Linux_fs/kernel/drivers/hwtracing/coresight/mali/sources/itm/ |
| H A D | coresight_mali_source_itm_core.c | 44 static char *type_name = "mali-source-itm"; variable 195 drvdata->type_name = type_name; in coresight_mali_sources_init_drvdata()
|
| /OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/openembedded-layer/recipes-devtools/bpftrace/bpftrace/ |
| H A D | 0001-Fix-segfault-when-btf__type_by_id-returns-NULL.patch | 42 std::string type_name = type_of(type, field); 43 if (!type_name.empty()) 44 return type_name;
|
| /OK3568_Linux_fs/kernel/drivers/hwtracing/coresight/mali/sources/etm/ |
| H A D | coresight_mali_source_etm_core.c | 35 static char *type_name = "mali-source-etm"; variable 144 drvdata->type_name = type_name; in coresight_mali_sources_init_drvdata()
|
| /OK3568_Linux_fs/kernel/tools/lib/bpf/ |
| H A D | libbpf_internal.h | 114 const char *type_name) in libbpf_validate_opts() argument 117 pr_warn("%s size (%zu) is too small\n", type_name, user_sz); in libbpf_validate_opts() 126 type_name); in libbpf_validate_opts()
|
| /OK3568_Linux_fs/kernel/arch/x86/tools/ |
| H A D | relocs.c | 144 static const char *type_name[] = { in sym_type() local 156 if (type < ARRAY_SIZE(type_name)) { in sym_type() 157 name = type_name[type]; in sym_type() 197 static const char *type_name[] = { in rel_type() local 237 if (type < ARRAY_SIZE(type_name) && type_name[type]) { in rel_type() 238 name = type_name[type]; in rel_type()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/drivers/net/netdevsim/ |
| H A D | udp_tunnel_nic.sh | 128 type_name="vxlan" 131 type_name="geneve" 134 type_name="vxlan-gpe" 137 type_name="bit X" 141 echo "port $port, $type_name"
|
| /OK3568_Linux_fs/kernel/drivers/hwtracing/coresight/ |
| H A D | coresight-cti-platform.c | 269 const char *type_name) in cti_plat_read_trig_types() argument 280 items = cti_plat_count_sig_elements(fwnode, type_name); in cti_plat_read_trig_types() 290 err = fwnode_property_read_u32_array(fwnode, type_name, in cti_plat_read_trig_types()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tools/iq_check/src/ |
| H A D | parser.c | 98 char type_name[MAX_NAME]; /* Origin type name */ member 680 strncpy(obj->type_name, type, sizeof(obj->type_name)); in j2s_parse() 978 j2s_list_find(&ctx.structs, entry, struct_obj, obj->type_name); in main() 984 enum_obj, obj->type_name); in main() 988 obj->type_name, obj->line); in main()
|