Home
last modified time | relevance | path

Searched refs:args (Results 7476 - 7500 of 10334) sorted by relevance

1...<<291292293294295296297298299300>>...414

/kernel/linux/linux-6.6/block/
H A Dblk-iocost.c3246 substring_t args[MAX_OPT_ARGS]; in ioc_qos_write() local
3254 switch (match_token(p, qos_ctrl_tokens, args)) { in ioc_qos_write()
3256 if (match_u64(&args[0], &v)) in ioc_qos_write()
3261 match_strlcpy(buf, &args[0], sizeof(buf)); in ioc_qos_write()
3271 tok = match_token(p, qos_tokens, args); in ioc_qos_write()
3275 if (match_strlcpy(buf, &args[0], sizeof(buf)) >= in ioc_qos_write()
3286 if (match_u64(&args[0], &v)) in ioc_qos_write()
3292 if (match_strlcpy(buf, &args[0], sizeof(buf)) >= in ioc_qos_write()
3439 substring_t args[MAX_OPT_ARGS]; in ioc_cost_model_write() local
3447 switch (match_token(p, cost_ctrl_tokens, args)) { in ioc_cost_model_write()
[all...]
/third_party/python/Lib/test/
H A Dtest_statistics.py340 args = [-23, -2, 5, 107, 93568]
342 for a in args:
634 def do_test(self, args):
635 actual_msg = NumericTestCase._make_std_err_msg(*args)
636 expected = self.generate_substrings(*args)
646 args = (2.5, 4.0, 0.5, 0.25, None)
647 self.do_test(args)
651 args = (3.75, 8.25, 1.25, 0.5, 7)
652 self.do_test(args)
1037 errmsg = e.args[
[all...]
H A Dtest_collections.py156 self.assertEqual(ChainMap().maps, [{}]) # no-args --> one new dict
201 def __init__(self, *args, **kwds):
203 UserDict.__init__(self, *args, **kwds)
337 self.assertRaises(TypeError, Point._make, [11]) # catch too few args
338 self.assertRaises(TypeError, Point._make, [11, 22, 33]) # catch too many args
358 with self.assertRaises(TypeError): # catch too few args
360 with self.assertRaises(TypeError): # catch too many args
373 with self.assertRaises(TypeError): # catch too few args
470 self.assertRaises(TypeError, Point, 1) # too few args
471 self.assertRaises(TypeError, Point, 1, 2, 3) # too many args
[all...]
/third_party/vk-gl-cts/external/vulkancts/scripts/
H A Dohos_gen_framework.py1114 def argListToStr (args):
1116 # args can be instance of FunctionArgument or CompositeMember
1133 return ", ".join(argumentToString(arg) for arg in args)
3110 args = parseCmdLineArgs() variable
3113 outputPath = DEFAULT_OUTPUT_DIR[args.api] if args.outdir == '' else args.outdir
3118 if args.api == '':
3126 elif args.api=='SC':
3147 writeDeviceFeatureTest (args
[all...]
/kernel/linux/linux-5.10/drivers/gpio/
H A Dgpio-pxa.c337 if (gpiospec->args[0] > pxa_last_gpio) in pxa_gpio_of_xlate()
341 *flags = gpiospec->args[1]; in pxa_gpio_of_xlate()
343 return gpiospec->args[0]; in pxa_gpio_of_xlate()
/kernel/linux/linux-5.10/arch/parisc/kernel/
H A Dunaligned.c23 #define DPRINTF(fmt, args...) do { printk(KERN_DEBUG "%s:%d:%s ", __FILE__, __LINE__, __func__ ); printk(KERN_DEBUG fmt, ##args ); } while (0)
25 #define DPRINTF(fmt, args...)
/kernel/linux/linux-5.10/arch/alpha/kernel/
H A Dcore_titan.c50 # define DBG_CFG(args) printk args
52 # define DBG_CFG(args)
H A Dcore_wildfire.c31 # define DBG_CFG(args) printk args
33 # define DBG_CFG(args)
/kernel/linux/linux-5.10/arch/arm/mach-at91/
H A Dpm.c1001 substring_t args[MAX_OPT_ARGS]; in at91_pm_modes_select() local
1008 standby = match_token(s, pm_modes, args); in at91_pm_modes_select()
1012 suspend = match_token(str, pm_modes, args); in at91_pm_modes_select()
/kernel/linux/linux-6.6/arch/alpha/kernel/
H A Dcore_titan.c50 # define DBG_CFG(args) printk args
52 # define DBG_CFG(args)
H A Dcore_wildfire.c31 # define DBG_CFG(args) printk args
33 # define DBG_CFG(args)
/kernel/linux/linux-6.6/arch/parisc/kernel/
H A Dunaligned.c22 #define DPRINTF(fmt, args...) do { printk(KERN_DEBUG "%s:%d:%s ", __FILE__, __LINE__, __func__ ); printk(KERN_DEBUG fmt, ##args ); } while (0)
24 #define DPRINTF(fmt, args...)
/kernel/linux/linux-5.10/drivers/ide/
H A Dide-atapi.c20 #define debug_log(fmt, args...) \
21 printk(KERN_INFO "ide: " fmt, ## args)
23 #define debug_log(fmt, args...) do {} while (0)
/kernel/linux/linux-5.10/drivers/mailbox/
H A Dti-msgmgr.c549 req_pid = p->args[0]; in ti_msgmgr_of_xlate()
551 req_qid = p->args[0]; in ti_msgmgr_of_xlate()
552 req_pid = p->args[1]; in ti_msgmgr_of_xlate()
/kernel/linux/linux-5.10/drivers/net/wireless/intel/ipw2x00/
H A Dlibipw.h61 #define LIBIPW_DEBUG(level, fmt, args...) \
63 printk(KERN_DEBUG "libipw: %s " fmt, __func__ , ## args); } while (0)
65 #define LIBIPW_DEBUG(level, fmt, args...) do {} while (0)
/kernel/linux/linux-5.10/drivers/phy/broadcom/
H A Dphy-brcm-usb.c178 struct of_phandle_args *args) in brcm_usb_phy_xlate()
186 switch (args->args[0]) { in brcm_usb_phy_xlate()
177 brcm_usb_phy_xlate(struct device *dev, struct of_phandle_args *args) brcm_usb_phy_xlate() argument
/kernel/linux/linux-5.10/drivers/thermal/
H A Dthermal_of.c452 *id = sensor_specs.args_count ? sensor_specs.args[0] : 0; in thermal_zone_of_get_sensor_id()
736 __tcbp[i].min = cooling_spec.args[0]; in thermal_of_populate_bind_params()
737 __tcbp[i].max = cooling_spec.args[1]; in thermal_of_populate_bind_params()
/kernel/linux/linux-5.10/drivers/video/fbdev/sis/
H A Dsis.h33 #define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __func__ , ## args)
36 #define DPRINTK(fmt, args...)
/kernel/linux/linux-5.10/net/sunrpc/
H A Dauth.c225 rpcauth_create(const struct rpc_auth_create_args *args, struct rpc_clnt *clnt) in rpcauth_create() argument
229 u32 flavor = pseudoflavor_to_flavor(args->pseudoflavor); in rpcauth_create()
235 auth = ops->create(args, clnt); in rpcauth_create()
/kernel/linux/linux-5.10/sound/pci/
H A Dals300.c79 #define snd_als300_dbgplay(format, args...) printk(KERN_ERR format, ##args)
81 #define snd_als300_dbgplay(format, args...)
/kernel/linux/linux-5.10/tools/lib/traceevent/
H A Devent-parse.h220 struct tep_print_arg *args; member
265 struct tep_print_arg *args; member
312 unsigned long long *args);
/kernel/linux/linux-5.10/net/ipv6/ila/
H A Dila_xlat.c519 cb->args[0] = (long)iter; in ila_xlat_nl_dump_start()
526 struct ila_dump_iter *iter = (struct ila_dump_iter *)cb->args[0]; in ila_xlat_nl_dump_done()
537 struct ila_dump_iter *iter = (struct ila_dump_iter *)cb->args[0]; in ila_xlat_nl_dump()
/kernel/linux/linux-5.10/net/llc/
H A Dllc_c_ev.c45 #define dprintk(args...) printk(KERN_DEBUG args)
47 #define dprintk(args...)
/kernel/linux/linux-5.10/drivers/pinctrl/ti/
H A Dpinctrl-ti-iodelay.c449 cfg[pin_index].offset = pinctrl_spec->args[0]; in ti_iodelay_node_iterator()
450 cfg[pin_index].a_delay = pinctrl_spec->args[1] & 0xffff; in ti_iodelay_node_iterator()
451 cfg[pin_index].g_delay = pinctrl_spec->args[2] & 0xffff; in ti_iodelay_node_iterator()
/kernel/linux/linux-6.6/drivers/net/ethernet/microchip/lan966x/
H A Dlan966x_main.h593 irqreturn_t lan966x_ptp_irq_handler(int irq, void *args);
594 irqreturn_t lan966x_ptp_ext_irq_handler(int irq, void *args);
608 irqreturn_t lan966x_fdma_irq_handler(int irq, void *args);

Completed in 48 milliseconds

1...<<291292293294295296297298299300>>...414