Home
last modified time | relevance | path

Searched refs:n (Results 126 – 150 of 7998) sorted by relevance

12345678910>>...320

/openbmc/linux/lib/
H A Dsort.c62 *(u32 *)(a + n) = *(u32 *)(b + n); in swap_words_32()
63 *(u32 *)(b + n) = t; in swap_words_32()
64 } while (n); in swap_words_32()
88 *(u64 *)(a + n) = *(u64 *)(b + n); in swap_words_64()
89 *(u64 *)(b + n) = t; in swap_words_64()
93 *(u32 *)(a + n) = *(u32 *)(b + n); in swap_words_64()
97 *(u32 *)(a + n) = *(u32 *)(b + n); in swap_words_64()
100 } while (n); in swap_words_64()
115 ((char *)a)[n] = ((char *)b)[n]; in swap_bytes()
116 ((char *)b)[n] = t; in swap_bytes()
[all …]
/openbmc/rest-dbus/resources/
H A Djsrender.min.js3n=t.jQuery;"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports… argument
/openbmc/linux/tools/include/linux/
H A Dlist.h438 pos = n, n = pos->next)
449 pos = n, n = pos->prev)
535 pos = n, n = list_next_entry(n, member))
551 pos = n, n = list_next_entry(n, member))
566 pos = n, n = list_next_entry(n, member))
582 pos = n, n = list_prev_entry(n, member))
656 h->first = n; in hlist_add_head()
667 *(n->pprev) = n; in hlist_add_before()
677 if (n->next) in hlist_add_behind()
678 n->next->pprev = &n->next; in hlist_add_behind()
[all …]
/openbmc/linux/tools/perf/util/
H A Ddwarf-regs.c34 #define __get_dwarf_regstr(tbl, n) (((n) < ARRAY_SIZE(tbl)) ? (tbl)[(n)] : NULL) argument
41 return get_arch_regstr(n); in get_dwarf_regstr()
43 return __get_dwarf_regstr(x86_32_regstr_tbl, n); in get_dwarf_regstr()
45 return __get_dwarf_regstr(x86_64_regstr_tbl, n); in get_dwarf_regstr()
47 return __get_dwarf_regstr(arm_regstr_tbl, n); in get_dwarf_regstr()
49 return __get_dwarf_regstr(aarch64_regstr_tbl, n); in get_dwarf_regstr()
51 return __get_dwarf_regstr(sh_regstr_tbl, n); in get_dwarf_regstr()
53 return __get_dwarf_regstr(s390_regstr_tbl, n); in get_dwarf_regstr()
59 return __get_dwarf_regstr(sparc_regstr_tbl, n); in get_dwarf_regstr()
61 return __get_dwarf_regstr(xtensa_regstr_tbl, n); in get_dwarf_regstr()
[all …]
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/
H A Dlcdc.h78 #define SUNXI_LCDC_TCON0_CTRL_CLK_DELAY(n) (((n) & 0x1f) << 4) argument
80 #define SUNXI_LCDC_TCON0_DCLK_DIV(n) ((n) << 0) argument
82 #define SUNXI_LCDC_TCON0_TIMING_H_BP(n) (((n) - 1) << 0) argument
83 #define SUNXI_LCDC_TCON0_TIMING_H_TOTAL(n) (((n) - 1) << 16) argument
84 #define SUNXI_LCDC_TCON0_TIMING_V_BP(n) (((n) - 1) << 0) argument
85 #define SUNXI_LCDC_TCON0_TIMING_V_TOTAL(n) (((n) * 2) << 16) argument
91 #define SUNXI_LCDC_TCON0_LVDS_INTF_BITWIDTH(n) ((n) << 26) argument
97 #define SUNXI_LCDC_TCON1_TIMING_H_BP(n) (((n) - 1) << 0) argument
98 #define SUNXI_LCDC_TCON1_TIMING_H_TOTAL(n) (((n) - 1) << 16) argument
99 #define SUNXI_LCDC_TCON1_TIMING_V_BP(n) (((n) - 1) << 0) argument
[all …]
H A Dclock_sun6i.h206 #define CCM_PLL1_CTRL_M(n) ((((n) - 1) & 0x3) << 0) argument
207 #define CCM_PLL1_CTRL_K(n) ((((n) - 1) & 0x3) << 4) argument
208 #define CCM_PLL1_CTRL_N(n) ((((n) - 1) & 0x1f) << 8) argument
209 #define CCM_PLL1_CTRL_P(n) (((n) & 0x3) << 16) argument
214 #define CCM_PLL3_CTRL_M(n) ((((n) - 1) & 0xf) << 0) argument
217 #define CCM_PLL3_CTRL_N(n) ((((n) - 1) & 0x7f) << 8) argument
222 #define CCM_PLL5_CTRL_M(n) ((((n) - 1) & 0x3) << 0) argument
223 #define CCM_PLL5_CTRL_K(n) ((((n) - 1) & 0x3) << 4) argument
224 #define CCM_PLL5_CTRL_N(n) ((((n) - 1) & 0x1f) << 8) argument
443 #define CCM_TVE_CTRL_M(n) ((((n) - 1) & 0xf) << 0) argument
[all …]
/openbmc/linux/include/linux/
H A Drculist_nulls.h35 if (!hlist_nulls_unhashed(n)) { in hlist_nulls_del_init_rcu()
36 __hlist_nulls_del(n); in hlist_nulls_del_init_rcu()
37 WRITE_ONCE(n->pprev, NULL); in hlist_nulls_del_init_rcu()
76 __hlist_nulls_del(n); in hlist_nulls_del_rcu()
77 WRITE_ONCE(n->pprev, LIST_POISON2); in hlist_nulls_del_rcu()
104 WRITE_ONCE(n->next, first); in hlist_nulls_add_head_rcu()
105 WRITE_ONCE(n->pprev, &h->first); in hlist_nulls_add_head_rcu()
140 WRITE_ONCE(n->next, last->next); in hlist_nulls_add_tail_rcu()
141 n->pprev = &last->next; in hlist_nulls_add_tail_rcu()
144 hlist_nulls_add_head_rcu(n, h); in hlist_nulls_add_tail_rcu()
[all …]
H A Drio_regs.h224 #define RIO_PORT_N_MNT_REQ_CSR(n, m) (0x40 + (n) * (0x20 * (m))) argument
227 #define RIO_PORT_N_MNT_RSP_CSR(n, m) (0x44 + (n) * (0x20 * (m))) argument
231 #define RIO_PORT_N_ACK_STS_CSR(n) (0x48 + (n) * 0x20) /* Only in RM-I */ argument
236 #define RIO_PORT_N_CTL2_CSR(n, m) (0x54 + (n) * (0x20 * (m))) argument
238 #define RIO_PORT_N_ERR_STS_CSR(n, m) (0x58 + (n) * (0x20 * (m))) argument
246 #define RIO_PORT_N_CTL_CSR(n, m) (0x5c + (n) * (0x20 * (m))) argument
255 #define RIO_PORT_N_OB_ACK_CSR(n) (0x60 + (n) * 0x40) /* Only in RM-II */ argument
259 #define RIO_PORT_N_IB_ACK_CSR(n) (0x64 + (n) * 0x40) /* Only in RM-II */ argument
267 #define RIO_DEV_PORT_N_MNT_REQ_CSR(d, n) \ argument
276 #define RIO_DEV_PORT_N_CTL2_CSR(d, n) \ argument
[all …]
/openbmc/linux/scripts/gcc-plugins/
H A Dgcc-generate-ipa-pass.h30 #define __GCC_PLUGIN_STRINGIFY(n) #n argument
31 #define _GCC_PLUGIN_STRINGIFY(n) __GCC_PLUGIN_STRINGIFY(n) argument
35 #define __PASS_NAME_PASS_DATA(n) _GCC_PLUGIN_CONCAT2(n, _pass_data) argument
38 #define __PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT2(n, _pass) argument
43 #define __MAKE_PASS_NAME_PASS(n) _GCC_PLUGIN_CONCAT3(make_, n, _pass) argument
49 #define __GENERATE_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _generate_summary) argument
56 #define __READ_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _read_summary) argument
63 #define __WRITE_SUMMARY(n) _GCC_PLUGIN_CONCAT2(n, _write_summary) argument
84 #define __STMT_FIXUP(n) _GCC_PLUGIN_CONCAT2(n, _stmt_fixup) argument
106 #define __GATE(n) _GCC_PLUGIN_CONCAT2(n, _gate) argument
[all …]
/openbmc/linux/drivers/clk/at91/
H A Dat91sam9rl.c32 char *n; member
41 char *n; member
44 { .n = "pioA_clk", .id = 2, },
45 { .n = "pioB_clk", .id = 3, },
46 { .n = "pioC_clk", .id = 4, },
47 { .n = "pioD_clk", .id = 5, },
48 { .n = "usart0_clk", .id = 6, },
49 { .n = "usart1_clk", .id = 7, },
50 { .n = "usart2_clk", .id = 8, },
51 { .n = "usart3_clk", .id = 9, },
[all …]
/openbmc/linux/mm/
H A Dusercopy.c121 unsigned long n, bool to_user) in check_kernel_text_object() argument
127 if (overlaps(ptr, n, textlow, texthigh)) in check_kernel_text_object()
147 ptr - textlow_linear, n); in check_kernel_text_object()
154 if (ptr + (n - 1) < ptr) in check_bogus_address()
171 if (n > PAGE_SIZE - offset) in check_heap_object()
182 if (n > area->va_end - addr) { in check_heap_object()
199 if (n > folio_size(folio) - offset) in check_heap_object()
219 if (!n) in __check_object_size()
226 switch (check_stack_object(ptr, n)) { in __check_object_size()
247 n); in __check_object_size()
[all …]
/openbmc/linux/sound/pci/ice1712/
H A Dwm8766.c212 if (wm->ctl[n].get) in snd_wm8766_ctl_get()
215 val1 = wm->regs[wm->ctl[n].reg1] & wm->ctl[n].mask1; in snd_wm8766_ctl_get()
218 val2 = wm->regs[wm->ctl[n].reg2] & wm->ctl[n].mask2; in snd_wm8766_ctl_get()
225 val1 = wm->ctl[n].max - (val1 - wm->ctl[n].min); in snd_wm8766_ctl_get()
227 val2 = wm->ctl[n].max - (val2 - wm->ctl[n].min); in snd_wm8766_ctl_get()
247 regval1 = wm->ctl[n].max - (regval1 - wm->ctl[n].min); in snd_wm8766_ctl_put()
248 regval2 = wm->ctl[n].max - (regval2 - wm->ctl[n].min); in snd_wm8766_ctl_put()
253 val = wm->regs[wm->ctl[n].reg1] & ~wm->ctl[n].mask1; in snd_wm8766_ctl_put()
257 wm->ctl[n].reg1 == wm->ctl[n].reg2) { in snd_wm8766_ctl_put()
264 wm->ctl[n].reg1 != wm->ctl[n].reg2) { in snd_wm8766_ctl_put()
[all …]
/openbmc/u-boot/lib/efi_loader/
H A Defi_freestanding.c23 int memcmp(const void *s1, const void *s2, size_t n) in memcmp() argument
28 for (; n; --n) { in memcmp()
45 void *memmove(void *dest, const void *src, size_t n) in memmove() argument
51 for (; n; --n) in memmove()
54 d += n; in memmove()
55 s += n; in memmove()
56 for (; n; --n) in memmove()
70 void *memcpy(void *dest, const void *src, size_t n) in memcpy() argument
72 return memmove(dest, src, n); in memcpy()
83 void *memset(void *s, int c, size_t n) in memset() argument
[all …]
/openbmc/linux/drivers/staging/wlan-ng/
H A Dp80211hdr.h114 #define WLAN_GET_FC_FTYPE(n) ((((u16)(n)) & GENMASK(3, 2)) >> 2) argument
115 #define WLAN_GET_FC_FSTYPE(n) ((((u16)(n)) & GENMASK(7, 4)) >> 4) argument
116 #define WLAN_GET_FC_TODS(n) ((((u16)(n)) & (BIT(8))) >> 8) argument
117 #define WLAN_GET_FC_FROMDS(n) ((((u16)(n)) & (BIT(9))) >> 9) argument
118 #define WLAN_GET_FC_ISWEP(n) ((((u16)(n)) & (BIT(14))) >> 14) argument
120 #define WLAN_SET_FC_FTYPE(n) (((u16)(n)) << 2) argument
121 #define WLAN_SET_FC_FSTYPE(n) (((u16)(n)) << 4) argument
122 #define WLAN_SET_FC_TODS(n) (((u16)(n)) << 8) argument
123 #define WLAN_SET_FC_FROMDS(n) (((u16)(n)) << 9) argument
124 #define WLAN_SET_FC_ISWEP(n) (((u16)(n)) << 14) argument
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Dlinked_list.c27 if (n) { in list_push_pop()
36 if (n) { in list_push_pop()
52 if (!n) in list_push_pop()
67 if (!n) in list_push_pop()
79 if (n) { in list_push_pop()
87 if (n) { in list_push_pop()
131 if (!n) in list_push_pop_multiple()
150 if (!n) in list_push_pop_multiple()
162 if (n) { in list_push_pop_multiple()
170 if (n) { in list_push_pop_multiple()
[all …]
/openbmc/u-boot/include/linux/
H A Dlist.h390 pos = n, n = pos->next)
401 pos = n, n = pos->prev)
487 pos = n, n = list_entry(n->member.next, typeof(*n), member))
503 pos = n, n = list_entry(n->member.next, typeof(*n), member))
518 pos = n, n = list_entry(n->member.next, typeof(*n), member))
534 pos = n, n = list_entry(n->member.prev, typeof(*n), member))
581 __hlist_del(n); in hlist_del()
600 h->first = n; in hlist_add_head()
611 *(n->pprev) = n; in hlist_add_before()
633 pos = n)
[all …]
/openbmc/linux/lib/zlib_deflate/
H A Ddeftree.c188 for (n = 0; n < (1<<extra_lbits[code]); n++) { in tr_static_init()
203 for (n = 0; n < (1<<extra_dbits[code]); n++) { in tr_static_init()
231 for (n = 0; n < D_CODES; n++) { in tr_static_init()
279 for (n = 0; n < L_CODES; n++) s->dyn_ltree[n].Freq = 0; in init_block()
280 for (n = 0; n < D_CODES; n++) s->dyn_dtree[n].Freq = 0; in init_block()
281 for (n = 0; n < BL_CODES; n++) s->bl_tree[n].Freq = 0; in init_block()
465 for (n = 0; n <= max_code; n++) { in gen_codes()
502 for (n = 0; n < elems; n++) { in build_tree()
528 for (n = s->heap_len/2; n >= 1; n--) pqdownheap(s, tree, n); in build_tree()
589 for (n = 0; n <= max_code; n++) { in scan_tree()
[all …]
/openbmc/linux/tools/testing/selftests/rcutorture/configs/rcu/
H A DTREE091 CONFIG_SMP=n
3 CONFIG_PREEMPT_NONE=n
4 CONFIG_PREEMPT_VOLUNTARY=n
7 CONFIG_HZ_PERIODIC=n
9 CONFIG_NO_HZ_FULL=n
10 CONFIG_RCU_TRACE=n
11 CONFIG_RCU_NOCB_CPU=n
12 CONFIG_DEBUG_LOCK_ALLOC=n
13 CONFIG_RCU_BOOST=n
16 CONFIG_KPROBES=n
[all …]
H A DTREE104 CONFIG_PREEMPT_VOLUNTARY=n
5 CONFIG_PREEMPT=n
6 CONFIG_PREEMPT_DYNAMIC=n
8 CONFIG_HZ_PERIODIC=n
10 CONFIG_NO_HZ_FULL=n
11 CONFIG_RCU_TRACE=n
12 CONFIG_RCU_NOCB_CPU=n
13 CONFIG_DEBUG_LOCK_ALLOC=n
14 CONFIG_PROVE_LOCKING=n
16 CONFIG_DEBUG_OBJECTS=n
[all …]
/openbmc/linux/arch/ia64/kernel/
H A Dmca_drv.h57 #define peidx_cache_check_idx(p, n) (n) argument
58 #define peidx_tlb_check_idx(p, n) (peidx_cache_check_idx(p, peidx_cache_check_num(p)) + n) argument
59 #define peidx_bus_check_idx(p, n) (peidx_tlb_check_idx(p, peidx_tlb_check_num(p)) + n) argument
60 #define peidx_reg_file_check_idx(p, n) (peidx_bus_check_idx(p, peidx_bus_check_num(p)) + n) argument
61 #define peidx_ms_check_idx(p, n) (peidx_reg_file_check_idx(p, peidx_reg_file_check_num(p)) + argument
66 if (peidx_##name##_num(p) > n) /*BUG*/ \
70 #define peidx_cache_check(p, n) peidx_mod_error_info(p, cache_check, n) argument
71 #define peidx_tlb_check(p, n) peidx_mod_error_info(p, tlb_check, n) argument
72 #define peidx_bus_check(p, n) peidx_mod_error_info(p, bus_check, n) argument
73 #define peidx_reg_file_check(p, n) peidx_mod_error_info(p, reg_file_check, n) argument
[all …]
/openbmc/qemu/hw/core/
H A Dsysbus.c127 return (n < dev->num_mmio); in sysbus_has_mmio()
133 assert(n >= 0 && n < dev->num_mmio); in sysbus_mmio_map_common()
143 dev->mmio[n].addr = addr; in sysbus_mmio_map_common()
159 assert(n >= 0 && n < dev->num_mmio); in sysbus_mmio_unmap()
192 int n; in sysbus_init_mmio() local
195 n = dev->num_mmio++; in sysbus_init_mmio()
196 dev->mmio[n].addr = -1; in sysbus_init_mmio()
202 assert(n >= 0 && n < QDEV_MAX_MMIO); in sysbus_mmio_get_region()
232 int n; in sysbus_create_varargs() local
241 n = 0; in sysbus_create_varargs()
[all …]
/openbmc/linux/drivers/pinctrl/mvebu/
H A Dpinctrl-mvebu.c86 for (n = 0; n < pctl->num_groups; n++) { in mvebu_pinctrl_find_group_by_pid()
100 for (n = 0; n < pctl->num_groups; n++) { in mvebu_pinctrl_find_group_by_name()
114 for (n = 0; n < grp->num_settings; n++) { in mvebu_pinctrl_find_setting_by_val()
131 for (n = 0; n < grp->num_settings; n++) { in mvebu_pinctrl_find_setting_by_name()
147 for (n = 0; n < grp->num_settings; n++) { in mvebu_pinctrl_find_gpio_setting()
164 for (n = 0; n < pctl->num_functions; n++) { in mvebu_pinctrl_find_function_by_name()
236 for (n = 0; n < grp->num_settings; n++) { in mvebu_pinconf_group_dbg_show()
612 for (n = 0; n < soc->ncontrols; n++) { in mvebu_pinctrl_probe()
640 for (n = 0; n < pctl->desc.npins; n++) in mvebu_pinctrl_probe()
657 for (n = 0; n < soc->ncontrols; n++) { in mvebu_pinctrl_probe()
[all …]
/openbmc/u-boot/arch/arm/mach-tegra/
H A Dcpu.c108 { .n = 108, .m = 1, .p = 1 }, /* OSC: 13.0 MHz */
109 { .n = 73, .m = 1, .p = 1 }, /* OSC: 19.2 MHz */
110 { .n = 116, .m = 1, .p = 1 }, /* OSC: 12.0 MHz */
111 { .n = 108, .m = 2, .p = 1 }, /* OSC: 26.0 MHz */
112 { .n = 0, .m = 0, .p = 0 }, /* OSC: 38.4 MHz (N/A) */
113 { .n = 0, .m = 0, .p = 0 }, /* OSC: 48.0 MHz (N/A) */
126 { .n = 108, .m = 1, .p = 1 }, /* OSC: 13.0 MHz */
127 { .n = 73, .m = 1, .p = 1 }, /* OSC: 19.2 MHz */
128 { .n = 116, .m = 1, .p = 1 }, /* OSC: 12.0 MHz */
129 { .n = 108, .m = 2, .p = 1 }, /* OSC: 26.0 MHz */
[all …]
/openbmc/linux/lib/crypto/mpi/
H A Dmpi-bit.c42 unsigned n; in mpi_get_nbits() local
51 n = BITS_PER_MPI_LIMB; in mpi_get_nbits()
52 n = BITS_PER_MPI_LIMB - n + (a->nlimbs - 1) * BITS_PER_MPI_LIMB; in mpi_get_nbits()
54 n = 0; in mpi_get_nbits()
55 return n; in mpi_get_nbits()
161 mpi_size_t n = a->nlimbs; in mpi_rshift_limbs() local
164 if (count >= n) { in mpi_rshift_limbs()
254 int n = a->nlimbs; in mpi_lshift_limbs() local
257 if (!count || !n) in mpi_lshift_limbs()
278 if (x == a && !n) in mpi_lshift()
[all …]
/openbmc/linux/drivers/gpu/drm/omapdrm/dss/
H A Dhdmi_common.c95 *n = 8192; in hdmi_compute_acr()
98 *n = 12544; in hdmi_compute_acr()
101 *n = 8192; in hdmi_compute_acr()
104 *n = 25088; in hdmi_compute_acr()
107 *n = 16384; in hdmi_compute_acr()
110 *n = 50176; in hdmi_compute_acr()
113 *n = 32768; in hdmi_compute_acr()
121 *n = 4096; in hdmi_compute_acr()
124 *n = 6272; in hdmi_compute_acr()
127 *n = 6144; in hdmi_compute_acr()
[all …]

12345678910>>...320