Searched refs:prefix (Results 1 - 25 of 102) sorted by relevance

12345

/u-boot/fs/yaffs2/
H A Dyaffscfg.h33 const YCHAR *prefix; member in struct:yaffsfs_DeviceConfiguration
/u-boot/include/linux/
H A Dcompiler-clang.h13 #define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __COUNTER__)
H A Dcompiler.h177 # define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__)
323 # define __compiletime_assert(condition, msg, prefix, suffix) \
325 extern void prefix ## suffix(void) __compiletime_error(msg); \
327 prefix ## suffix(); \
330 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0)
333 #define _compiletime_assert(condition, msg, prefix, suffix) \
334 __compiletime_assert(condition, msg, prefix, suffix)
H A Dcompiler-gcc.h71 #define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __COUNTER__)
/u-boot/drivers/pinctrl/
H A Dpinctrl-generic.c237 static const char *alloc_name_with_prefix(const char *name, const char *prefix) argument
239 if (prefix) {
240 char *name_with_prefix = malloc(strlen(prefix) + strlen(name) + 1);
242 sprintf(name_with_prefix, "%s%s", prefix, name);
249 static void free_name_with_prefix(const char *name_with_prefix, const char *prefix) argument
251 if (prefix)
269 const char *prefix,
282 function_propname = alloc_name_with_prefix("function", prefix);
289 free_name_with_prefix(function_propname, prefix);
299 free_name_with_prefix(function_propname, prefix);
267 pinctrl_generic_set_state_one(struct udevice *dev, struct udevice *config, const char *prefix, enum pinmux_subnode_type subnode_type, unsigned selector) argument
341 pinctrl_generic_get_subnode_type(struct udevice *dev, struct udevice *config, const char *prefix, int *count) argument
389 pinctrl_generic_set_state_subnode(struct udevice *dev, struct udevice *config, const char *prefix) argument
462 pinctrl_generic_set_state_prefix(struct udevice *dev, struct udevice *config, const char *prefix) argument
[all...]
/u-boot/tools/binman/btool/
H A Dlzma_alone.py67 with tempfile.NamedTemporaryFile(prefix='comp.tmp',
70 with tempfile.NamedTemporaryFile(prefix='compo.otmp',
85 with tempfile.NamedTemporaryFile(prefix='decomp.tmp',
88 with tempfile.NamedTemporaryFile(prefix='compo.otmp',
H A Dlz4.py90 with tempfile.NamedTemporaryFile(prefix='comp.tmp',
105 with tempfile.NamedTemporaryFile(prefix='decomp.tmp',
/u-boot/drivers/power/pmic/
H A Dpmic_tps65910_dm.c17 { .prefix = "ldo_", .driver = TPS65910_LDO_DRIVER },
18 { .prefix = "buck_", .driver = TPS65910_BUCK_DRIVER },
19 { .prefix = "boost_", .driver = TPS65910_BOOST_DRIVER },
24 { .prefix = "ldo", .driver = TPS65911_LDO_DRIVER },
25 { .prefix = "vdd", .driver = TPS65911_VDD_DRIVER },
H A Dpca9450.c25 { .prefix = "b", .driver = PCA9450_REGULATOR_DRIVER},
26 { .prefix = "B", .driver = PCA9450_REGULATOR_DRIVER},
28 { .prefix = "l", .driver = PCA9450_REGULATOR_DRIVER},
29 { .prefix = "L", .driver = PCA9450_REGULATOR_DRIVER},
H A Dtps80031.c12 { .prefix = "ldo", .driver = TPS80031_LDO_DRIVER },
13 { .prefix = "smps", .driver = TPS80031_SMPS_DRIVER },
H A Dmax77686.c19 { .prefix = "LDO", .driver = MAX77686_LDO_DRIVER },
20 { .prefix = "BUCK", .driver = MAX77686_BUCK_DRIVER },
H A Dlp873x.c20 { .prefix = "ldo", .driver = LP873X_LDO_DRIVER },
21 { .prefix = "buck", .driver = LP873X_BUCK_DRIVER },
H A Ds2mps11.c18 { .prefix = S2MPS11_OF_LDO_PREFIX, .driver = S2MPS11_LDO_DRIVER },
19 { .prefix = S2MPS11_OF_BUCK_PREFIX, .driver = S2MPS11_BUCK_DRIVER },
H A Dsandbox.c21 { .prefix = SANDBOX_OF_LDO_PREFIX, .driver = SANDBOX_LDO_DRIVER },
22 { .prefix = SANDBOX_OF_BUCK_PREFIX, .driver = SANDBOX_BUCK_DRIVER },
H A Ds5m8767.c18 { .prefix = "LDO", .driver = S5M8767_LDO_DRIVER },
19 { .prefix = "BUCK", .driver = S5M8767_BUCK_DRIVER },
H A Dtps65219.c19 { .prefix = "ldo", .driver = TPS65219_LDO_DRIVER },
20 { .prefix = "buck", .driver = TPS65219_BUCK_DRIVER },
H A Dstpmic1.c34 { .prefix = "ldo", .driver = "stpmic1_ldo" },
35 { .prefix = "buck", .driver = "stpmic1_buck" },
36 { .prefix = "vref_ddr", .driver = "stpmic1_vref_ddr" },
37 { .prefix = "vref-ddr", .driver = "stpmic1_vref_ddr" },
38 { .prefix = "pwr_sw", .driver = "stpmic1_pwr_sw" },
39 { .prefix = "pwr-sw", .driver = "stpmic1_pwr_sw" },
40 { .prefix = "boost", .driver = "stpmic1_boost" },
H A Dmax77663.c12 { .prefix = "ldo", .driver = MAX77663_LDO_DRIVER },
13 { .prefix = "sd", .driver = MAX77663_SD_DRIVER },
H A Dbd71837.c21 { .prefix = "b", .driver = BD718XX_REGULATOR_DRIVER},
23 { .prefix = "l", .driver = BD718XX_REGULATOR_DRIVER},
H A Dda9063.c19 { .prefix = "ldo", .driver = DA9063_LDO_DRIVER },
20 { .prefix = "b", .driver = DA9063_BUCK_DRIVER },
/u-boot/tools/binman/etype/
H A Dvblock.py71 prefix = self.keydir + '/'
74 keyblock=prefix + self.keyblock,
75 signprivate=prefix + self.signprivate,
78 kernelkey=prefix + self.kernelkey,
/u-boot/lib/crypt/
H A Dcrypt.c37 const char *prefix; member in struct:__anon177
52 if (!crypt_algos[n].prefix)
54 if (strncmp(should, crypt_algos[n].prefix, 3) == 0)
/u-boot/arch/arm/include/asm/arch-mx6/
H A Dmx6-pins.h10 #define MX6_PAD_DECLARE(prefix, name, pco, mc, mm, sio, si, pc) \
11 prefix##name = IOMUX_PAD(pco, mc, mm, sio, si, pc)
/u-boot/scripts/dtc/
H A Dsrcpos.h110 extern void PRINTF(3, 0) srcpos_verror(struct srcpos *pos, const char *prefix,
112 extern void PRINTF(3, 4) srcpos_error(struct srcpos *pos, const char *prefix,
/u-boot/drivers/usb/eth/
H A Dlan7x.h134 const char *prefix, const u32 reg,
163 debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg,
175 const char *prefix,
205 debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg,
133 lan7x_wait_for_bit(struct usb_device *udev, const char *prefix, const u32 reg, const u32 mask, const bool set, const unsigned int timeout_ms, const bool breakable) argument
174 lan7x_mdio_wait_for_bit(struct usb_device *udev, const char *prefix, int phy_id, const u32 reg, const u32 mask, const bool set, const unsigned int timeout_ms, const bool breakable) argument

Completed in 220 milliseconds

12345