Home
last modified time | relevance | path

Searched full:current (Results 1 – 25 of 8160) sorted by relevance

12345678910>>...327

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/
H A Dpbf_reader.hpp68 // The wire type of the current field.
71 // The tag of the current field.
146 * @post There is no current field.
163 * @post There is no current field.
180 * @post There is no current field.
197 * @post There is no current field.
249 * Return the length in bytes of the current message. If you have
262 * Set next field in the message as the current field. This is usually
273 * @pre There must be no current field.
274 * @post If it returns `true` there is a current field now.
[all …]
/OK3568_Linux_fs/external/mpp/mpp/codec/dec/av1/
H A Dav1d_cbs.c327 xf(width, name, current->name, 0, MAX_UINT_BITS(width), 0, )
329 xf(width, name, current->name, range_min, range_max, 0, )
332 xsu(width, name, current->name, 0, )
335 xf(width, name, current->name, 0, MAX_UINT_BITS(width), subs, __VA_ARGS__)
337 xf(width, name, current->name, range_min, range_max, subs, __VA_ARGS__)
339 xf(1, name, current->name, 0, 1, subs, __VA_ARGS__)
341 xsu(width, name, current->name, subs, __VA_ARGS__)
363 current->name = value; \
370 current->name = value; \
376 current->name = value; \
[all …]
/OK3568_Linux_fs/kernel/Documentation/hwmon/
H A Dmax16601.rst58 curr1_input VCORE input current, derived from duty cycle and output
59 current.
60 curr1_max Maximum input current.
61 curr1_max_alarm Current high alarm.
64 curr2_input VCORE phase 0 input current.
67 curr3_input VCORE phase 1 input current.
70 curr4_input VCORE phase 2 input current.
73 curr5_input VCORE phase 3 input current.
76 curr6_input VCORE phase 4 input current.
79 curr7_input VCORE phase 5 input current.
[all …]
H A Dina3221.rst21 The Texas Instruments INA3221 monitors voltage, current, and power on the high
23 and supply voltage, with programmable conversion times and averaging, current
33 curr[123]_input Current(mA) measurement channels
35 curr[123]_crit Critical alert current(mA) setting, activates the
36 corresponding alarm when the respective current
38 curr[123]_crit_alarm Critical alert current limit exceeded
39 curr[123]_max Warning alert current(mA) setting, activates the
40 corresponding alarm when the respective current
42 curr[123]_max_alarm Warning alert current limit exceeded
46 curr4_input Sum of current(mA) measurement channels,
[all …]
/OK3568_Linux_fs/u-boot/arch/x86/lib/
H A Dacpi_table.c189 int acpi_create_madt_lapics(u32 current) in acpi_create_madt_lapics() argument
199 (struct acpi_madt_lapic *)current, in acpi_create_madt_lapics()
201 current += length; in acpi_create_madt_lapics()
246 static int acpi_create_madt_irq_overrides(u32 current) in acpi_create_madt_irq_overrides() argument
252 irqovr = (void *)current; in acpi_create_madt_irq_overrides()
255 irqovr = (void *)(current + length); in acpi_create_madt_irq_overrides()
261 __weak u32 acpi_fill_madt(u32 current) in acpi_fill_madt() argument
263 current += acpi_create_madt_lapics(current); in acpi_fill_madt()
265 current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current, in acpi_fill_madt()
268 current += acpi_create_madt_irq_overrides(current); in acpi_fill_madt()
[all …]
/OK3568_Linux_fs/u-boot/net/
H A Deth-uclass.c32 * @current: The Ethernet device that the network functions are using
35 struct udevice *current; member
55 if (uc_priv->current) in eth_set_current_to_next()
56 uclass_next_device(&uc_priv->current); in eth_set_current_to_next()
57 if (!uc_priv->current) in eth_set_current_to_next()
58 uclass_first_device(UCLASS_ETH, &uc_priv->current); in eth_set_current_to_next()
72 if (!uc_priv->current) in eth_get_dev()
74 &uc_priv->current); in eth_get_dev()
75 return uc_priv->current; in eth_get_dev()
91 eth_get_uclass_priv()->current = dev; in eth_set_dev()
[all …]
/OK3568_Linux_fs/kernel/tools/power/cpupower/lib/
H A Dcpufreq.c265 struct cpufreq_available_governors *current = NULL; in cpufreq_get_available_governors() local
280 if (current) { in cpufreq_get_available_governors()
281 current->next = malloc(sizeof(*current)); in cpufreq_get_available_governors()
282 if (!current->next) in cpufreq_get_available_governors()
284 current = current->next; in cpufreq_get_available_governors()
289 current = first; in cpufreq_get_available_governors()
291 current->first = first; in cpufreq_get_available_governors()
292 current->next = NULL; in cpufreq_get_available_governors()
294 current->governor = malloc(i - pos + 1); in cpufreq_get_available_governors()
295 if (!current->governor) in cpufreq_get_available_governors()
[all …]
/OK3568_Linux_fs/kernel/arch/sparc/kernel/
H A Dsigutil_32.c19 if (test_tsk_thread_flag(current, TIF_USEDFPU)) { in save_fpu_state()
21 fpsave(&current->thread.float_regs[0], &current->thread.fsr, in save_fpu_state()
22 &current->thread.fpqueue[0], &current->thread.fpqdepth); in save_fpu_state()
24 clear_tsk_thread_flag(current, TIF_USEDFPU); in save_fpu_state()
27 if (current == last_task_used_math) { in save_fpu_state()
29 fpsave(&current->thread.float_regs[0], &current->thread.fsr, in save_fpu_state()
30 &current->thread.fpqueue[0], &current->thread.fpqdepth); in save_fpu_state()
36 &current->thread.float_regs[0], in save_fpu_state()
38 err |= __put_user(current->thread.fsr, &fpu->si_fsr); in save_fpu_state()
39 err |= __put_user(current->thread.fpqdepth, &fpu->si_fpqdepth); in save_fpu_state()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-graphics/libsdl/libsdl-1.2.15/
H A DCVE-2019-7637.patch107 + if (!current->pitch) {
117 current -> w = width ;
118 current -> h = height ;
119 current -> pitch = SDL_CalculatePitch (current) ;
120 + if (!current->pitch) {
121 + current = NULL;
124 NX_ResizeImage (this, current, flags) ;
131 current->w = width;
132 current->h = height;
133 current->pitch = SDL_CalculatePitch(current);
[all …]
/OK3568_Linux_fs/kernel/drivers/tty/
H A Dtty_jobctrl.c17 return (sigismember(&current->blocked, sig) || in is_ignored()
18 current->sighand->action[sig-1].sa.sa_handler == SIG_IGN); in is_ignored()
37 if (current->signal->tty != tty) in __tty_check_change()
41 pgrp = task_pgrp(current); in __tty_check_change()
105 tty->pgrp = get_pid(task_pgrp(current)); in __proc_set_tty()
106 tty->session = get_pid(task_session(current)); in __proc_set_tty()
108 if (current->signal->tty) { in __proc_set_tty()
109 tty_debug(tty, "current tty %s not NULL!!\n", in __proc_set_tty()
110 current->signal->tty->name); in __proc_set_tty()
111 tty_kref_put(current->signal->tty); in __proc_set_tty()
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/kernel/
H A Dsignal_32.c234 * Save the current user registers on the user stack.
245 flush_fp_to_thread(current); in save_user_regs()
253 if (current->thread.used_vr) { in save_user_regs()
254 flush_altivec_to_thread(current); in save_user_regs()
255 if (__copy_to_user(&frame->mc_vregs, &current->thread.vr_state, in save_user_regs()
268 * Note that the current VRSAVE value is in the SPR at this point. in save_user_regs()
271 current->thread.vrsave = mfspr(SPRN_VRSAVE); in save_user_regs()
272 if (__put_user(current->thread.vrsave, (u32 __user *)&frame->mc_vregs[32])) in save_user_regs()
275 if (copy_fpr_to_user(&frame->mc_fregs, current)) in save_user_regs()
290 if (current->thread.used_vsr && ctx_has_vsx_region) { in save_user_regs()
[all …]
/OK3568_Linux_fs/kernel/include/linux/platform_data/
H A Dad7793.h54 * enum ad7793_current_source_direction - AD7793 excitation current direction
55 * @AD7793_IEXEC1_IOUT1_IEXEC2_IOUT2: Current source IEXC1 connected to pin
56 * IOUT1, current source IEXC2 connected to pin IOUT2.
57 * @AD7793_IEXEC1_IOUT2_IEXEC2_IOUT1: Current source IEXC2 connected to pin
58 * IOUT1, current source IEXC1 connected to pin IOUT2.
59 * @AD7793_IEXEC1_IEXEC2_IOUT1: Both current sources connected to pin IOUT1.
60 * Only valid when the current sources are set to 10 uA or 210 uA.
61 * @AD7793_IEXEC1_IEXEC2_IOUT2: Both current sources connected to Pin IOUT2.
62 * Only valid when the current ources are set to 10 uA or 210 uA.
72 * enum ad7793_excitation_current - AD7793 excitation current selection
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/support/
H A Dmodify.hpp33 template <typename Current, typename New, typename Enable = void>
34 struct compound_modifier : Current, New
37 : Current(), New() {} in compound_modifier()
39 compound_modifier(Current const& current, New const& new_) in compound_modifier()
40 : Current(current), New(new_) {} in compound_modifier()
43 // Don't add if New is already in Current
44 template <typename Current, typename New>
46 Current, New, typename enable_if<has_modifier<Current, New> >::type>
47 : Current
50 : Current() {} in compound_modifier()
[all …]
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.20/
H A D0011-mpegtsdemux-Create-new-PCR-group-for-big-gap.patch6 Currently it would try to reuse the current group and handle the gap by
19 * Initialize current to that group
21 GST_DEBUG ("No current window estimator, Checking for group to use");
27 if (G_UNLIKELY (corpcr - current->pending[current->last].pcr >
33 + * Create new discont group instead of reusing the current, otherwise
39 /* Take values from current and put them in the current group (closing it) */
40 /* Create new group with pcr/offset just after the current group
43 _append_group_values (current->group, current->pending[current->last]);
44 _set_current_group (pcrtable, current->group, pcr, offset, TRUE);
49 if (G_UNLIKELY (corpcr == current->last_value.pcr)) {
/OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-bad/
H A D0011-mpegtsdemux-Create-new-PCR-group-for-big-gap.patch6 Currently it would try to reuse the current group and handle the gap by
19 * Initialize current to that group
21 GST_DEBUG ("No current window estimator, Checking for group to use");
27 if (G_UNLIKELY (corpcr - current->pending[current->last].pcr >
33 + * Create new discont group instead of reusing the current, otherwise
39 /* Take values from current and put them in the current group (closing it) */
40 /* Create new group with pcr/offset just after the current group
43 _append_group_values (current->group, current->pending[current->last]);
44 _set_current_group (pcrtable, current->group, pcr, offset, TRUE);
49 if (G_UNLIKELY (corpcr == current->last_value.pcr)) {
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad_1.22/
H A D0011-mpegtsdemux-Create-new-PCR-group-for-big-gap.patch6 Currently it would try to reuse the current group and handle the gap by
19 * Initialize current to that group
21 GST_DEBUG ("No current window estimator, Checking for group to use");
27 if (G_UNLIKELY (corpcr - current->pending[current->last].pcr >
33 + * Create new discont group instead of reusing the current, otherwise
39 /* Take values from current and put them in the current group (closing it) */
40 /* Create new group with pcr/offset just after the current group
43 _append_group_values (current->group, current->pending[current->last]);
44 _set_current_group (pcrtable, current->group, pcr, offset, TRUE);
49 if (G_UNLIKELY (corpcr == current->last_value.pcr)) {
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power/supply/
H A Dgpio-charger.yaml42 charge-current-limit-gpios:
45 description: GPIOs used for current limiting
47 charge-current-limit-mapping:
48 description: List of tuples with current in uA and a GPIO bitmap (in
50 current limit.
55 Current limit in uA
58 charge-current-limit-gpios property. Bit 1 second to last
70 - charge-current-limit-gpios
73 charge-current-limit-gpios: [ charge-current-limit-mapping ]
74 charge-current-limit-mapping: [ charge-current-limit-gpios ]
[all …]
H A Dbq25890.txt15 - ti,charge-current: integer, maximum charging current (in uA);
16 - ti,termination-current: integer, charge will be terminated when current in
18 - ti,precharge-current: integer, maximum charge current during precharge
24 - ti,boost-max-current: integer, maximum allowed current draw in boost mode
31 input current will be the lower between the resistor setting and the IINLIM
34 current is lowered, to avoid overheating (in degrees Celsius). If omitted,
51 ti,charge-current = <1000000>;
52 ti,termination-current = <50000>;
53 ti,precharge-current = <128000>;
56 ti,boost-max-current = <1000000>;
H A Drohm,bd99954.yaml28 # Curve (1) represents charging current.
32 # a) Trickle-charge with constant current (8).
33 # b) pre-charge with constant current (6)
35 # First a constant current (5) phase (CC)
37 # target level - until charging current has dropped to termination
69 # - trickle-charge-current-microamp:
70 # Current used at trickle-charge phase (8 in above chart)
74 # - precharge-current-microamp:
75 # Current used at pre-charge phase (6 in above chart)
79 # - constant-charge-current-max-microamp
[all …]
H A Dsummit,smb347-charger.yaml55 summit,mains-current-limit-microamp:
56 description: Maximum input current from AC/DC input (in uA)
58 summit,usb-current-limit-microamp:
59 description: Maximum input current from USB input (in uA)
61 summit,charge-current-compensation-microamp:
62 description: Charge current compensation (in uA)
73 - 1 # SMB3XX_SOFT_TEMP_COMPENSATE_CURRENT Current compensation
86 summit,mains-current-limit-microamp:
90 summit,usb-current-limit-microamp:
94 summit,charge-current-compensation-microamp:
[all …]
H A Dsc89890-charger.txt11 - sc,charge-current: integer, maximum charging current (in uA);
12 - sc,termination-current: integer, charge will be terminated when current in
14 - sc,precharge-current: integer, maximum charge current during precharge
20 - sc,boost-max-current: integer, maximum allowed current draw in boost mode
33 sc,charge-current = <1000000>;
34 sc,termination-current = <50000>;
35 sc,precharge-current = <128000>;
38 sc,boost-max-current = <1000000>;
/OK3568_Linux_fs/kernel/tools/testing/selftests/cgroup/
H A Dtest_memcontrol.c93 long anon, current; in alloc_anon_50M_check() local
100 current = cg_read_long(cgroup, "memory.current"); in alloc_anon_50M_check()
101 if (current < size) in alloc_anon_50M_check()
104 if (!values_close(size, current, 3)) in alloc_anon_50M_check()
111 if (!values_close(anon, current, 3)) in alloc_anon_50M_check()
124 long current, file; in alloc_pagecache_50M_check() local
134 current = cg_read_long(cgroup, "memory.current"); in alloc_pagecache_50M_check()
135 if (current < size) in alloc_pagecache_50M_check()
142 if (!values_close(file, current, 10)) in alloc_pagecache_50M_check()
155 * and check memory.current and some memory.stat values.
[all …]
/OK3568_Linux_fs/kernel/arch/s390/kernel/
H A Dguarded_storage.c25 if (!current->thread.gs_cb) { in gs_enable()
33 current->thread.gs_cb = gs_cb; in gs_enable()
41 if (current->thread.gs_cb) { in gs_disable()
43 kfree(current->thread.gs_cb); in gs_disable()
44 current->thread.gs_cb = NULL; in gs_disable()
55 gs_cb = current->thread.gs_bc_cb; in gs_set_bc_cb()
60 current->thread.gs_bc_cb = gs_cb; in gs_set_bc_cb()
71 gs_cb = current->thread.gs_bc_cb; in gs_clear_bc_cb()
72 current->thread.gs_bc_cb = NULL; in gs_clear_bc_cb()
83 gs_cb = current->thread.gs_bc_cb; in gs_load_bc_cb()
[all …]
/OK3568_Linux_fs/kernel/Documentation/power/regulator/
H A Doverview.rst2 Linux voltage and current regulator framework
9 voltage and current regulators.
13 regulators (where voltage output is controllable) and current sinks (where
14 current limit is controllable).
29 some can control their output voltage and or current.
44 current limit. It only needs to enable or disable its
49 current limit to meet operation demands.
101 - regulator current output limit is 20mA @ 5V but is
110 - Domain-3 current limit is 0mA -> 20mA.
113 dynamically setting voltage or current limit levels.
[all …]
/OK3568_Linux_fs/kernel/tools/testing/selftests/arm64/signal/
H A Dtest_signals.c15 struct tdescr *current; variable
19 current = &tde; in main()
21 ksft_print_msg("%s :: %s\n", current->name, current->descr); in main()
22 if (test_setup(current) && test_init(current)) { in main()
23 test_run(current); in main()
24 test_cleanup(current); in main()
26 test_result(current); in main()
28 return current->result; in main()

12345678910>>...327