Home
last modified time | relevance | path

Searched refs:g (Results 1 – 200 of 982) sorted by relevance

12345

/linux-4.1.27/tools/perf/bench/
Dnuma.c36 #define tprintf(x...) do { if (g && g->p.show_details >= 0) printf(x); } while (0)
41 #define dprintf(x...) do { if (g && g->p.show_details >= 1) printf(x); } while (0)
146 static struct global_info *g = NULL; variable
219 for (cpu = 0; cpu < g->p.nr_cpus; cpu++) in bind_to_cpu()
222 BUG_ON(target_cpu < 0 || target_cpu >= g->p.nr_cpus); in bind_to_cpu()
234 int cpus_per_node = g->p.nr_cpus/g->p.nr_nodes; in bind_to_node()
239 BUG_ON(cpus_per_node*g->p.nr_nodes != g->p.nr_cpus); in bind_to_node()
248 for (cpu = 0; cpu < g->p.nr_cpus; cpu++) in bind_to_node()
254 BUG_ON(cpu_stop > g->p.nr_cpus); in bind_to_node()
278 ret = set_mempolicy(MPOL_DEFAULT, NULL, g->p.nr_nodes-1); in mempol_restore()
[all …]
/linux-4.1.27/drivers/media/platform/vivid/
Dvivid-tpg-colors.c712 static void mult_matrix(double *r, double *g, double *b, const double m[3][3]) in mult_matrix() argument
716 ir = m[0][0] * (*r) + m[0][1] * (*g) + m[0][2] * (*b); in mult_matrix()
717 ig = m[1][0] * (*r) + m[1][1] * (*g) + m[1][2] * (*b); in mult_matrix()
718 ib = m[2][0] * (*r) + m[2][1] * (*g) + m[2][2] * (*b); in mult_matrix()
720 *g = ig; in mult_matrix()
767 static void csc(enum v4l2_colorspace colorspace, double *r, double *g, double *b) in csc() argument
775 *g = transfer_srgb_to_rgb(*g); in csc()
777 mult_matrix(r, g, b, rec709_to_240m); in csc()
781 *g = transfer_srgb_to_rgb(*g); in csc()
783 mult_matrix(r, g, b, rec709_to_170m); in csc()
[all …]
Dvivid-tpg.c444 static void rgb2ycbcr(const int m[3][3], int r, int g, int b, in rgb2ycbcr() argument
447 *y = ((m[0][0] * r + m[0][1] * g + m[0][2] * b) >> 16) + (y_offset << 4); in rgb2ycbcr()
448 *cb = ((m[1][0] * r + m[1][1] * g + m[1][2] * b) >> 16) + (128 << 4); in rgb2ycbcr()
449 *cr = ((m[2][0] * r + m[2][1] * g + m[2][2] * b) >> 16) + (128 << 4); in rgb2ycbcr()
452 static void color_to_ycbcr(struct tpg_data *tpg, int r, int g, int b, in color_to_ycbcr() argument
495 rgb2ycbcr(full ? bt601_full : bt601, r, g, b, y_offset, y, cb, cr); in color_to_ycbcr()
498 rgb2ycbcr(bt2020, r, g, b, 16, y, cb, cr); in color_to_ycbcr()
502 COEFF(0.6780, 255) * rec709_to_linear(g) + in color_to_ycbcr()
516 rgb2ycbcr(smpte240m, r, g, b, 16, y, cb, cr); in color_to_ycbcr()
521 rgb2ycbcr(full ? rec709_full : rec709, r, g, b, y_offset, y, cb, cr); in color_to_ycbcr()
[all …]
Dvivid-tpg-colors.h24 unsigned char r, g, b; member
28 int r, g, b; member
/linux-4.1.27/drivers/pinctrl/qcom/
Dpinctrl-msm.c143 const struct msm_pingroup *g; in msm_pinmux_set_mux() local
148 g = &pctrl->soc->groups[group]; in msm_pinmux_set_mux()
150 for (i = 0; i < g->nfuncs; i++) { in msm_pinmux_set_mux()
151 if (g->funcs[i] == function) in msm_pinmux_set_mux()
155 if (WARN_ON(i == g->nfuncs)) in msm_pinmux_set_mux()
160 val = readl(pctrl->regs + g->ctl_reg); in msm_pinmux_set_mux()
161 val &= ~(0x7 << g->mux_bit); in msm_pinmux_set_mux()
162 val |= i << g->mux_bit; in msm_pinmux_set_mux()
163 writel(val, pctrl->regs + g->ctl_reg); in msm_pinmux_set_mux()
178 const struct msm_pingroup *g, in msm_config_reg() argument
[all …]
/linux-4.1.27/drivers/pinctrl/
Dpinctrl-tegra.c271 const struct tegra_pingroup *g; in tegra_pinctrl_set_mux() local
275 g = &pmx->soc->groups[group]; in tegra_pinctrl_set_mux()
277 if (WARN_ON(g->mux_reg < 0)) in tegra_pinctrl_set_mux()
280 for (i = 0; i < ARRAY_SIZE(g->funcs); i++) { in tegra_pinctrl_set_mux()
281 if (g->funcs[i] == function) in tegra_pinctrl_set_mux()
284 if (WARN_ON(i == ARRAY_SIZE(g->funcs))) in tegra_pinctrl_set_mux()
287 val = pmx_readl(pmx, g->mux_bank, g->mux_reg); in tegra_pinctrl_set_mux()
288 val &= ~(0x3 << g->mux_bit); in tegra_pinctrl_set_mux()
289 val |= i << g->mux_bit; in tegra_pinctrl_set_mux()
290 pmx_writel(pmx, val, g->mux_bank, g->mux_reg); in tegra_pinctrl_set_mux()
[all …]
Dpinctrl-palmas.c575 const struct palmas_pingroup *g; in palmas_pinctrl_get_pin_mux() local
581 g = &pci->pin_groups[i]; in palmas_pinctrl_get_pin_mux()
582 if (g->mux_reg_base == PALMAS_NONE_BASE) { in palmas_pinctrl_get_pin_mux()
586 ret = palmas_read(pci->palmas, g->mux_reg_base, in palmas_pinctrl_get_pin_mux()
587 g->mux_reg_add, &val); in palmas_pinctrl_get_pin_mux()
590 g->mux_reg_add, ret); in palmas_pinctrl_get_pin_mux()
593 val &= g->mux_reg_mask; in palmas_pinctrl_get_pin_mux()
594 pci->pins_current_opt[i] = val >> g->mux_bit_shift; in palmas_pinctrl_get_pin_mux()
693 const struct palmas_pingroup *g; in palmas_pinctrl_set_mux() local
697 g = &pci->pin_groups[group]; in palmas_pinctrl_set_mux()
[all …]
Dpinctrl-adi2.h48 #define ADI_PMX_FUNCTION(n, g) \ argument
51 .groups = g, \
52 .num_groups = ARRAY_SIZE(g), \
Dpinctrl-tz1090.c895 unsigned int g, p; in tz1090_init_mux_pins() local
903 for (g = 0, grp = tz1090_mux_groups; in tz1090_init_mux_pins()
904 g < ARRAY_SIZE(tz1090_mux_groups); ++g, ++grp) in tz1090_init_mux_pins()
906 tz1090_mux_pins[*pin] = g; in tz1090_init_mux_pins()
1764 const struct tz1090_pingroup *g, in tz1090_pinconf_group_reg() argument
1771 if (!g->drv) { in tz1090_pinconf_group_reg()
1775 __func__, g->name); in tz1090_pinconf_group_reg()
1796 *shift = g->slw_bit * *width; in tz1090_pinconf_group_reg()
1807 const struct tz1090_pingroup *g; in tz1090_pinconf_group_get() local
1819 g = &tz1090_groups[group]; in tz1090_pinconf_group_get()
[all …]
Dpinctrl-tz1090-pdc.c770 const struct tz1090_pdc_pingroup *g, in tz1090_pdc_pinconf_group_reg() argument
776 if (!g->drv) { in tz1090_pdc_pinconf_group_reg()
780 __func__, g->name); in tz1090_pdc_pinconf_group_reg()
817 const struct tz1090_pdc_pingroup *g = &tz1090_pdc_groups[group]; in tz1090_pdc_pinconf_group_get() local
824 ret = tz1090_pdc_pinconf_group_reg(pctldev, g, param, true, in tz1090_pdc_pinconf_group_get()
847 const struct tz1090_pdc_pingroup *g = &tz1090_pdc_groups[group]; in tz1090_pdc_pinconf_group_set() local
861 __func__, g->name, configs[j]); in tz1090_pdc_pinconf_group_set()
864 ret = tz1090_pdc_pinconf_group_reg(pctldev, g, param, true, in tz1090_pdc_pinconf_group_set()
873 for (i = 0, pit = g->pins; i < g->npins; ++i, ++pit) { in tz1090_pdc_pinconf_group_set()
/linux-4.1.27/arch/ia64/scripts/
Dpvcheck.sed4 s/ssm.*psr\.ic.*/.warning \"ssm psr.ic should not be used directly\"/g
5 s/rsm.*psr\.ic.*/.warning \"rsm psr.ic should not be used directly\"/g
6 s/ssm.*psr\.i.*/.warning \"ssm psr.i should not be used directly\"/g
7 s/rsm.*psr\.i.*/.warning \"rsm psr.i should not be used directly\"/g
8 s/ssm.*psr\.dt.*/.warning \"ssm psr.dt should not be used directly\"/g
9 s/rsm.*psr\.dt.*/.warning \"rsm psr.dt should not be used directly\"/g
10 s/mov.*=.*cr\.ifa/.warning \"cr.ifa should not used directly\"/g
11 s/mov.*=.*cr\.itir/.warning \"cr.itir should not used directly\"/g
12 s/mov.*=.*cr\.isr/.warning \"cr.isr should not used directly\"/g
13 s/mov.*=.*cr\.iha/.warning \"cr.iha should not used directly\"/g
[all …]
/linux-4.1.27/arch/x86/purgatory/
Dsha256.c50 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
64 e = state[4]; f = state[5]; g = state[6]; h = state[7]; in sha256_transform()
67 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform()
69 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1]; in sha256_transform()
70 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha256_transform()
72 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha256_transform()
74 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha256_transform()
76 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha256_transform()
78 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha256_transform()
79 t1 = b + e1(g) + Ch(g, h, a) + 0x923f82a4 + W[6]; in sha256_transform()
[all …]
/linux-4.1.27/crypto/
Dsha256_generic.c57 u32 a, b, c, d, e, f, g, h, t1, t2; in sha256_transform() local
71 e=state[4]; f=state[5]; g=state[6]; h=state[7]; in sha256_transform()
74 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0]; in sha256_transform()
76 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1]; in sha256_transform()
77 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha256_transform()
79 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha256_transform()
81 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha256_transform()
83 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha256_transform()
85 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha256_transform()
86 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6]; in sha256_transform()
[all …]
Dsha512_generic.c84 u64 a, b, c, d, e, f, g, h, t1, t2; in sha512_transform() local
91 e=state[4]; f=state[5]; g=state[6]; h=state[7]; in sha512_transform()
109 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform()
111 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform()
112 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha512_transform()
114 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha512_transform()
116 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha512_transform()
118 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha512_transform()
120 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha512_transform()
121 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6]; in sha512_transform()
[all …]
Dgf128mul.c266 struct gf128mul_64k *gf128mul_init_64k_lle(const be128 *g) in gf128mul_init_64k_lle() argument
284 t->t[0]->t[128] = *g; in gf128mul_init_64k_lle()
308 struct gf128mul_64k *gf128mul_init_64k_bbe(const be128 *g) in gf128mul_init_64k_bbe() argument
326 t->t[0]->t[1] = *g; in gf128mul_init_64k_bbe()
402 struct gf128mul_4k *gf128mul_init_4k_lle(const be128 *g) in gf128mul_init_4k_lle() argument
411 t->t[128] = *g; in gf128mul_init_4k_lle()
424 struct gf128mul_4k *gf128mul_init_4k_bbe(const be128 *g) in gf128mul_init_4k_bbe() argument
433 t->t[1] = *g; in gf128mul_init_4k_bbe()
/linux-4.1.27/drivers/usb/gadget/udc/
Dgadget_chips.h30 #define gadget_is_at91(g) (!strcmp("at91_udc", (g)->name)) argument
31 #define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name)) argument
32 #define gadget_is_musbhdrc(g) (!strcmp("musb-hdrc", (g)->name)) argument
33 #define gadget_is_net2280(g) (!strcmp("net2280", (g)->name)) argument
34 #define gadget_is_pxa(g) (!strcmp("pxa25x_udc", (g)->name)) argument
35 #define gadget_is_pxa27x(g) (!strcmp("pxa27x_udc", (g)->name)) argument
Ds3c2410_udc.h98 #define to_s3c2410(g) (container_of((g), struct s3c2410_udc, gadget)) argument
Dat91_udc.h145 static inline struct at91_udc *to_udc(struct usb_gadget *g) in to_udc() argument
147 return container_of(g, struct at91_udc, gadget); in to_udc()
Dfotg210.h253 #define gadget_to_fotg210(g) container_of((g), struct fotg210_udc, gadget) argument
Dpxa25x_udc.h129 #define to_pxa25x(g) (container_of((g), struct pxa25x_udc, gadget)) argument
/linux-4.1.27/arch/x86/include/asm/
Ddesc_defs.h32 unsigned limit: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8; member
75 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8; member
84 #define gate_offset(g) ((g).offset_low | ((unsigned long)(g).offset_middle << 16) | ((unsigned long… argument
85 #define gate_segment(g) ((g).segment) argument
90 #define gate_offset(g) (((g).b & 0xffff0000) | ((g).a & 0x0000ffff)) argument
91 #define gate_segment(g) ((g).a >> 16) argument
Datomic64_32.h26 #define __alternative_atomic64(f, g, out, in...) \ argument
28 : out : [func] "i" (atomic64_##g##_cx8), ## in)
32 #define __alternative_atomic64(f, g, out, in...) \ argument
33 alternative_call(atomic64_##f##_386, atomic64_##g##_cx8, \
/linux-4.1.27/drivers/pinctrl/sirf/
Dpinctrl-sirf.h16 #define SIRFSOC_GPIO_PAD_EN(g) ((g)*0x100 + 0x84) argument
17 #define SIRFSOC_GPIO_PAD_EN_CLR(g) ((g)*0x100 + 0x90) argument
18 #define SIRFSOC_GPIO_CTRL(g, i) ((g)*0x100 + (i)*4) argument
20 #define SIRFSOC_GPIO_INT_STATUS(g) ((g)*0x100 + 0x8C) argument
97 #define SIRFSOC_PMX_FUNCTION(n, g, m) \ argument
100 .groups = g, \
101 .num_groups = ARRAY_SIZE(g), \
/linux-4.1.27/drivers/gpio/
Dgpio-davinci.c70 struct davinci_gpio_regs __iomem *g; in irq2regs() local
72 g = (__force struct davinci_gpio_regs __iomem *)irq_get_chip_data(irq); in irq2regs()
74 return g; in irq2regs()
86 struct davinci_gpio_regs __iomem *g = d->regs; in __davinci_direction() local
92 temp = readl_relaxed(&g->dir); in __davinci_direction()
95 writel_relaxed(mask, value ? &g->set_data : &g->clr_data); in __davinci_direction()
99 writel_relaxed(temp, &g->dir); in __davinci_direction()
126 struct davinci_gpio_regs __iomem *g = d->regs; in davinci_gpio_get() local
128 return (1 << offset) & readl_relaxed(&g->in_data); in davinci_gpio_get()
138 struct davinci_gpio_regs __iomem *g = d->regs; in davinci_gpio_set() local
[all …]
/linux-4.1.27/arch/alpha/kernel/
Dmodule.c47 struct got_entry *g; in process_reloc_for_got() local
52 for (g = chains + r_sym; g ; g = g->next) in process_reloc_for_got()
53 if (g->r_addend == r_addend) { in process_reloc_for_got()
54 if (g->got_offset == 0) { in process_reloc_for_got()
55 g->got_offset = *poffset; in process_reloc_for_got()
61 g = kmalloc (sizeof (*g), GFP_KERNEL); in process_reloc_for_got()
62 g->next = chains[r_sym].next; in process_reloc_for_got()
63 g->r_addend = r_addend; in process_reloc_for_got()
64 g->got_offset = *poffset; in process_reloc_for_got()
66 chains[r_sym].next = g; in process_reloc_for_got()
[all …]
/linux-4.1.27/arch/ia64/include/asm/sn/
Dgeo.h112 static inline slabid_t geo_slab(geoid_t g) in geo_slab() argument
114 return (g.common.type == GEO_TYPE_INVALID) ? in geo_slab()
115 INVALID_SLAB : g.common.slab; in geo_slab()
118 static inline slotid_t geo_slot(geoid_t g) in geo_slot() argument
120 return (g.common.type == GEO_TYPE_INVALID) ? in geo_slot()
121 INVALID_SLOT : g.common.slot; in geo_slot()
124 static inline moduleid_t geo_module(geoid_t g) in geo_module() argument
126 return (g.common.type == GEO_TYPE_INVALID) ? in geo_module()
127 INVALID_MODULE : g.common.module; in geo_module()
/linux-4.1.27/drivers/pinctrl/freescale/
Dpinctrl-mxs.c202 struct mxs_group *g = &d->soc->groups[group]; in mxs_pinctrl_set_mux() local
208 for (i = 0; i < g->npins; i++) { in mxs_pinctrl_set_mux()
209 bank = PINID_TO_BANK(g->pins[i]); in mxs_pinctrl_set_mux()
210 pin = PINID_TO_PIN(g->pins[i]); in mxs_pinctrl_set_mux()
216 writel(g->muxsel[i] << shift, reg + SET); in mxs_pinctrl_set_mux()
257 struct mxs_group *g = &d->soc->groups[group]; in mxs_pinconf_group_set() local
272 for (i = 0; i < g->npins; i++) { in mxs_pinconf_group_set()
273 bank = PINID_TO_BANK(g->pins[i]); in mxs_pinconf_group_set()
274 pin = PINID_TO_PIN(g->pins[i]); in mxs_pinconf_group_set()
309 g->config = config; in mxs_pinconf_group_set()
[all …]
/linux-4.1.27/drivers/gpu/host1x/
Djob.c203 struct host1x_job_gather *g = &job->gathers[i]; in pin_job() local
207 g->bo = host1x_bo_get(g->bo); in pin_job()
208 if (!g->bo) in pin_job()
211 phys_addr = host1x_bo_pin(g->bo, &sgt); in pin_job()
216 job->unpins[job->num_unpins].bo = g->bo; in pin_job()
383 static int validate(struct host1x_firewall *fw, struct host1x_job_gather *g) in validate() argument
386 (g->offset / sizeof(u32)); in validate()
392 fw->words = g->words; in validate()
393 fw->cmdbuf = g->bo; in validate()
466 struct host1x_job_gather *g = &job->gathers[i]; in copy_gathers() local
[all …]
/linux-4.1.27/lib/
Dts_bm.c100 static int subpattern(u8 *pattern, int i, int j, int g) in subpattern() argument
102 int x = i+g-1, y = j+g-1, ret = 0; in subpattern()
109 if (--g == 0) { in subpattern()
120 int i, j, g; in compute_prefix_tbl() local
136 for (i = bm->patlen-1, g = 1; i > 0; g++, i--) { in compute_prefix_tbl()
137 for (j = i-1; j >= 1-g ; j--) in compute_prefix_tbl()
138 if (subpattern(bm->pattern, i, j, g)) { in compute_prefix_tbl()
139 bm->good_shift[g] = bm->patlen-j-g; in compute_prefix_tbl()
Dbch.c839 struct gf_poly **g, struct gf_poly **h) in factor_polynomial() argument
849 *g = f; in factor_polynomial()
864 gf_poly_copy(*g, gcd); in factor_polynomial()
1079 static void build_mod8_tables(struct bch_control *bch, const uint32_t *g) in build_mod8_tables() argument
1098 data ^= g[0] >> (31-d); in build_mod8_tables()
1100 hi = (d < 31) ? g[j] << (d+1) : 0; in build_mod8_tables()
1102 g[j+1] >> (31-d) : 0; in build_mod8_tables()
1170 struct gf_poly *g; in compute_generator_polynomial() local
1173 g = bch_alloc(GF_POLY_SZ(m*t), &err); in compute_generator_polynomial()
1192 g->deg = 0; in compute_generator_polynomial()
[all …]
Dinflate.c338 int g; /* maximum code length */ in huft_build() local
402 g = i; /* maximum code length */ in huft_build()
438 n = x[g]; /* set n to length of v */ in huft_build()
453 for (; k <= g; k++) in huft_build()
469 z = (z = g - w) > (unsigned)l ? l : z; /* upper limit on table size */ in huft_build()
557 ret = y != 0 && g != 1; in huft_build()
/linux-4.1.27/drivers/ide/
Dide-gd.c69 struct gendisk *g = idkp->disk; in ide_gd_remove() local
73 del_gendisk(g); in ide_gd_remove()
85 struct gendisk *g = idkp->disk; in ide_disk_release() local
89 g->private_data = NULL; in ide_disk_release()
90 put_disk(g); in ide_disk_release()
357 struct gendisk *g; local
387 g = alloc_disk_node(IDE_DISK_MINORS, hwif_to_node(drive->hwif));
388 if (!g)
391 ide_init_disk(g, drive);
402 idkp->disk = g;
[all …]
Dide-cd.c1559 struct gendisk *g = info->disk; in ide_cd_release() local
1568 g->private_data = NULL; in ide_cd_release()
1569 put_disk(g); in ide_cd_release()
1729 struct gendisk *g; in ide_cd_probe() local
1751 g = alloc_disk(1 << PARTN_BITS); in ide_cd_probe()
1752 if (!g) in ide_cd_probe()
1755 ide_init_disk(g, drive); in ide_cd_probe()
1766 info->disk = g; in ide_cd_probe()
1768 g->private_data = &info->driver; in ide_cd_probe()
1772 g->minors = 1; in ide_cd_probe()
[all …]
Dide-proc.c283 const struct ide_proc_devset *setting, *g, *d; in ide_settings_proc_show() local
291 g = ide_generic_settings; in ide_settings_proc_show()
295 while (g->name || (d && d->name)) { in ide_settings_proc_show()
297 if (g->name && d && d->name) { in ide_settings_proc_show()
298 if (strcmp(d->name, g->name) < 0) in ide_settings_proc_show()
301 setting = g++; in ide_settings_proc_show()
305 setting = g++; in ide_settings_proc_show()
/linux-4.1.27/kernel/trace/
Dtrace_events_filter_test.h11 TP_PROTO(int a, int b, int c, int d, int e, int f, int g, int h),
13 TP_ARGS(a, b, c, d, e, f, g, h),
22 __field(int, g)
33 __entry->g = g;
39 __entry->e, __entry->f, __entry->g, __entry->h)
/linux-4.1.27/arch/powerpc/crypto/
Dsha256-spe-asm.S106 #define R_LOAD_W(a, b, c, d, e, f, g, h, w, off) \ argument
114 andc rT1,g,e; /* 1: ch' = ~e and g */ \
144 add g,g,rT0; /* 2: temp1 = h + S1 */ \
147 add g,g,rT3; /* 2: temp1 = temp1 + temp1' */ \
149 add g,g,rT2; /* 2: temp1 = temp1 + K */ \
156 add c,c,g; /* 2: d = d + temp1 */ \
159 add g,g,rT3 /* 2: h = temp1 + temp2 */
161 #define R_CALC_W(a, b, c, d, e, f, g, h, w0, w1, w4, w5, w7, k, off) \ argument
176 andc rT3,g,e; /* 1: ch' = ~e and g */ \
202 add g,g,rT1; /* 2: temp1 = temp1 + wk */ \
[all …]
/linux-4.1.27/sound/firewire/fireworks/
Dfireworks_proc.c133 unsigned int g, c, m, max, size; in proc_read_phys_meters() local
154 for (g = 0; g < efw->phys_out_grp_count; g++) { in proc_read_phys_meters()
155 name = get_phys_name(&efw->phys_out_grps[g], false); in proc_read_phys_meters()
156 for (c = 0; c < efw->phys_out_grps[g].count; c++) { in proc_read_phys_meters()
167 for (g = 0; g < efw->phys_in_grp_count; g++) { in proc_read_phys_meters()
168 name = get_phys_name(&efw->phys_in_grps[g], true); in proc_read_phys_meters()
169 for (c = 0; c < efw->phys_in_grps[g].count; c++) in proc_read_phys_meters()
/linux-4.1.27/arch/x86/crypto/
Dsha256-avx2-asm.S108 g = %r10d define
148 h = g
149 g = f define
172 xor g, y2 # y2 = f^g # CH
176 and e, y2 # y2 = (f^g)&e # CH
186 xor g, y2 # y2 = CH = ((f^g)&e)^g # CH
221 xor g, y2 # y2 = f^g # CH
227 and e, y2 # y2 = (f^g)&e # CH
236 xor g, y2 # y2 = CH = ((f^g)&e)^g # CH
270 xor g, y2 # y2 = f^g # CH
[all …]
Dsha512-avx2-asm.S90 g = %r10 define
149 h = g
150 g = f define
194 xor g, y2 # y2 = f^g # CH
197 and e, y2 # y2 = (f^g)&e # CH
206 xor g, y2 # y2 = CH = ((f^g)&e)^g # CH
257 xor g, y2 # y2 = f^g # CH
263 and e, y2 # y2 = (f^g)&e # CH
270 xor g, y2 # y2 = CH = ((f^g)&e)^g # CH
312 xor g, y2 # y2 = f^g # CH
[all …]
Dsha256-avx-asm.S111 g = %r10d define
144 h = g
145 g = f define
167 xor g, y2 # y2 = f^g
170 and e, y2 # y2 = (f^g)&e
176 xor g, y2 # y2 = CH = ((f^g)&e)^g
203 xor g, y2 # y2 = f^g
207 and e, y2 # y2 = (f^g)&e
211 xor g, y2 # y2 = CH = ((f^g)&e)^g
241 xor g, y2 # y2 = f^g
[all …]
Dsha256-ssse3-asm.S103 g = %r10d define
137 h = g
138 g = f define
161 xor g, y2 # y2 = f^g
164 and e, y2 # y2 = (f^g)&e
170 xor g, y2 # y2 = CH = ((f^g)&e)^g
202 xor g, y2 # y2 = f^g
206 and e, y2 # y2 = (f^g)&e
210 xor g, y2 # y2 = CH = ((f^g)&e)^g
243 xor g, y2 # y2 = f^g
[all …]
Dsha512-avx-asm.S130 xor g_64, T1 # T1 = f ^ g
132 and e_64, T1 # T1 = (f ^ g) & e
134 xor g_64, T1 # T1 = ((f ^ g) & e) ^ g = CH(e,f,g)
140 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h
142 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)
Dsha512-ssse3-asm.S123 xor g_64, T1 # T1 = f ^ g
125 and e_64, T1 # T1 = (f ^ g) & e
127 xor g_64, T1 # T1 = ((f ^ g) & e) ^ g = CH(e,f,g)
133 add h_64, T1 # T1 = CH(e,f,g) + W[t] + K[t] + h
135 add tmp0, T1 # T1 = CH(e,f,g) + W[t] + K[t] + S1(e)
/linux-4.1.27/drivers/media/i2c/
Dtea6420.c54 int g = (o >> 4) & 0xf; in tea6420_s_routing() local
59 v4l2_dbg(1, debug, sd, "i=%d, o=%d, g=%d\n", i, o, g); in tea6420_s_routing()
62 if (i < 1 || i > 6 || o < 1 || o > 4 || g < 0 || g > 6 || g % 2 != 0) in tea6420_s_routing()
69 switch (g) { in tea6420_s_routing()
/linux-4.1.27/kernel/
Dhung_task.c137 static bool rcu_lock_break(struct task_struct *g, struct task_struct *t) in rcu_lock_break() argument
141 get_task_struct(g); in rcu_lock_break()
146 can_cont = pid_alive(g) && pid_alive(t); in rcu_lock_break()
148 put_task_struct(g); in rcu_lock_break()
162 struct task_struct *g, *t; in check_hung_uninterruptible_tasks() local
172 for_each_process_thread(g, t) { in check_hung_uninterruptible_tasks()
177 if (!rcu_lock_break(g, t)) in check_hung_uninterruptible_tasks()
/linux-4.1.27/kernel/power/
Dprocess.c29 struct task_struct *g, *p; in try_to_freeze_tasks() local
49 for_each_process_thread(g, p) { in try_to_freeze_tasks()
96 for_each_process_thread(g, p) { in try_to_freeze_tasks()
185 struct task_struct *g, *p; in thaw_processes() local
202 for_each_process_thread(g, p) { in thaw_processes()
221 struct task_struct *g, *p; in thaw_kernel_threads() local
229 for_each_process_thread(g, p) { in thaw_kernel_threads()
/linux-4.1.27/drivers/md/bcache/
Dextents.c175 struct bucket *g; in btree_ptr_bad_expensive() local
180 g = PTR_BUCKET(b->c, k, i); in btree_ptr_bad_expensive()
183 g->prio != BTREE_PRIO || in btree_ptr_bad_expensive()
185 GC_MARK(g) != GC_MARK_METADATA)) in btree_ptr_bad_expensive()
198 buf, PTR_BUCKET_NR(b->c, k, i), atomic_read(&g->pin), in btree_ptr_bad_expensive()
199 g->prio, g->gen, g->last_gc, GC_MARK(g)); in btree_ptr_bad_expensive()
506 struct bucket *g = PTR_BUCKET(b->c, k, ptr); in bch_extent_bad_expensive() local
511 (!GC_MARK(g) || in bch_extent_bad_expensive()
512 GC_MARK(g) == GC_MARK_METADATA || in bch_extent_bad_expensive()
513 (GC_MARK(g) != GC_MARK_DIRTY && KEY_DIRTY(k)))) in bch_extent_bad_expensive()
[all …]
/linux-4.1.27/arch/s390/kvm/
Dtrace.h284 TP_PROTO(VCPU_PROTO_COMMON, int g, int reg1, int reg3, u64 addr),
285 TP_ARGS(VCPU_ARGS_COMMON, g, reg1, reg3, addr),
289 __field(int, g)
297 __entry->g = g;
304 __entry->g ? "lctlg" : "lctl",
309 TP_PROTO(VCPU_PROTO_COMMON, int g, int reg1, int reg3, u64 addr),
310 TP_ARGS(VCPU_ARGS_COMMON, g, reg1, reg3, addr),
314 __field(int, g)
322 __entry->g = g;
329 __entry->g ? "stctg" : "stctl",
/linux-4.1.27/arch/tile/lib/
Dstrchr_32.c21 int z, g; in strchr() local
56 g = __insn_ctz(goal_matches); in strchr()
62 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
Dstrchr_64.c22 int z, g; in strchr() local
54 g = CFZ(goal_matches); in strchr()
60 return (g <= z) ? ((char *)p) + (g >> 3) : NULL; in strchr()
/linux-4.1.27/fs/proc/
Darray.c139 int g; in task_state() local
186 for (g = 0; g < group_info->ngroups; g++) in task_state()
188 from_kgid_munged(user_ns, GROUP_AT(group_info, g))); in task_state()
193 for (g = ns->level; g <= pid->level; g++) in task_state()
195 task_tgid_nr_ns(p, pid->numbers[g].ns)); in task_state()
197 for (g = ns->level; g <= pid->level; g++) in task_state()
199 task_pid_nr_ns(p, pid->numbers[g].ns)); in task_state()
201 for (g = ns->level; g <= pid->level; g++) in task_state()
203 task_pgrp_nr_ns(p, pid->numbers[g].ns)); in task_state()
205 for (g = ns->level; g <= pid->level; g++) in task_state()
[all …]
/linux-4.1.27/include/crypto/
Dgf128mul.h173 struct gf128mul_4k *gf128mul_init_4k_lle(const be128 *g);
174 struct gf128mul_4k *gf128mul_init_4k_bbe(const be128 *g);
194 struct gf128mul_64k *gf128mul_init_64k_lle(const be128 *g);
195 struct gf128mul_64k *gf128mul_init_64k_bbe(const be128 *g);
/linux-4.1.27/drivers/gpu/host1x/hw/
Ddebug_hw.c153 struct host1x_job_gather *g = &job->gathers[i]; in show_channel_gathers() local
159 mapped = host1x_bo_mmap(g->bo); in show_channel_gathers()
167 &g->base, g->offset, g->words); in show_channel_gathers()
169 show_gather(o, g->base + g->offset, g->words, cdma, in show_channel_gathers()
170 g->base, mapped); in show_channel_gathers()
173 host1x_bo_munmap(g->bo, mapped); in show_channel_gathers()
Dchannel_hw.c66 struct host1x_job_gather *g = &job->gathers[i]; in submit_gathers() local
67 u32 op1 = host1x_opcode_gather(g->words); in submit_gathers()
68 u32 op2 = g->base + g->offset; in submit_gathers()
69 trace_write_gather(cdma, g->bo, g->offset, op1 & 0xffff); in submit_gathers()
/linux-4.1.27/drivers/net/wireless/libertas/
DKconfig12 tristate "Marvell Libertas 8388 USB 802.11b/g cards"
18 tristate "Marvell Libertas 8385 CompactFlash 802.11b/g cards"
24 tristate "Marvell Libertas 8385/8686/8688 SDIO 802.11b/g cards"
30 tristate "Marvell Libertas 8686 SPI 802.11b/g cards"
45 This enables Libertas' MESH support, used by e.g. the OLPC people.
/linux-4.1.27/drivers/gpu/drm/sti/
Dsti_cursor.c83 u32 a, r, g, b; in sti_cursor_argb8888_to_clut8() local
90 g = (*src >> 14) & 3; in sti_cursor_argb8888_to_clut8()
92 *dst = a << 6 | r << 4 | g << 2 | b; in sti_cursor_argb8888_to_clut8()
195 unsigned int a, r, g, b; in sti_cursor_init() local
200 for (g = 0; g < 4; g++) in sti_cursor_init()
204 (g * 5) << 4 | in sti_cursor_init()
/linux-4.1.27/net/netfilter/ipvs/
Dip_vs_wrr.c78 int g = 0; in ip_vs_wrr_gcd_weight() local
83 if (g > 0) in ip_vs_wrr_gcd_weight()
84 g = gcd(weight, g); in ip_vs_wrr_gcd_weight()
86 g = weight; in ip_vs_wrr_gcd_weight()
89 return g ? g : 1; in ip_vs_wrr_gcd_weight()
/linux-4.1.27/include/linux/
Dmroute6.h105 #define MFC6_HASH(a, g) (((__force u32)(a)->s6_addr32[0] ^ \ argument
109 (__force u32)(g)->s6_addr32[0] ^ \
110 (__force u32)(g)->s6_addr32[1] ^ \
111 (__force u32)(g)->s6_addr32[2] ^ \
112 (__force u32)(g)->s6_addr32[3]) % MFC6_LINES)
/linux-4.1.27/tools/testing/selftests/vm/
Dthuge-gen.c60 glob_t g; in find_pagesizes() local
62 glob("/sys/kernel/mm/hugepages/hugepages-*kB", 0, NULL, &g); in find_pagesizes()
63 assert(g.gl_pathc <= NUM_PAGESIZES); in find_pagesizes()
64 for (i = 0; i < g.gl_pathc; i++) { in find_pagesizes()
65 sscanf(g.gl_pathv[i], "/sys/kernel/mm/hugepages/hugepages-%lukB", in find_pagesizes()
70 num_page_sizes = g.gl_pathc; in find_pagesizes()
71 globfree(&g); in find_pagesizes()
/linux-4.1.27/scripts/gdb/linux/
Dtasks.py25 t = g = init_task
33 if t == g:
36 t = g = utils.container_of(g['tasks']['next'],
/linux-4.1.27/arch/metag/mm/
Dmmu-meta2.c84 unsigned int g; in repriv_mmu_tables() local
93 for (g = 0; g < 2; ++g) { in repriv_mmu_tables()
102 g ? "global" : "local"); in repriv_mmu_tables()
/linux-4.1.27/lib/fonts/
Dfonts.c120 const struct font_desc *f, *g; in get_default_font() local
122 g = NULL; in get_default_font()
146 g = f; in get_default_font()
149 return g; in get_default_font()
/linux-4.1.27/drivers/usb/musb/
Dmusb_gadget.c167 if (!dma_mapping_error(&musb->g.dev, request->dma)) in musb_g_giveback()
1683 static int musb_gadget_start(struct usb_gadget *g,
1685 static int musb_gadget_stop(struct usb_gadget *g);
1729 musb->g.ep0 = &ep->end_point; in init_peripheral_ep()
1736 list_add_tail(&ep->end_point.ep_list, &musb->g.ep_list); in init_peripheral_ep()
1751 INIT_LIST_HEAD(&(musb->g.ep_list)); in musb_g_init_endpoints()
1786 musb->g.ops = &musb_gadget_operations; in musb_gadget_setup()
1787 musb->g.max_speed = USB_SPEED_HIGH; in musb_gadget_setup()
1788 musb->g.speed = USB_SPEED_UNKNOWN; in musb_gadget_setup()
1795 musb->g.name = musb_driver_name; in musb_gadget_setup()
[all …]
Dmusb_gadget_ep0.c88 result[0] = musb->g.is_selfpowered << USB_DEVICE_SELF_POWERED; in service_tx_status_request()
90 if (musb->g.is_otg) { in service_tx_status_request()
91 result[0] |= musb->g.b_hnp_enable in service_tx_status_request()
93 result[0] |= musb->g.a_alt_hnp_support in service_tx_status_request()
95 result[0] |= musb->g.a_hnp_support in service_tx_status_request()
329 if (musb->g.speed != USB_SPEED_HIGH) in service_zero_data_request()
393 if (!musb->g.is_otg) in service_zero_data_request()
395 musb->g.b_hnp_enable = 1; in service_zero_data_request()
399 if (!musb->g.is_otg) in service_zero_data_request()
401 musb->g.a_hnp_support = 1; in service_zero_data_request()
[all …]
Dmusb_core.h415 struct usb_gadget g; /* the gadget */ member
440 static inline struct musb *gadget_to_musb(struct usb_gadget *g) in gadget_to_musb() argument
442 return container_of(g, struct musb, g); in gadget_to_musb()
/linux-4.1.27/block/
Dioprio.c65 struct task_struct *p, *g; in SYSCALL_DEFINE3() local
125 do_each_thread(g, p) { in SYSCALL_DEFINE3()
131 } while_each_thread(g, p); in SYSCALL_DEFINE3()
180 struct task_struct *g, *p; in SYSCALL_DEFINE2() local
222 do_each_thread(g, p) { in SYSCALL_DEFINE2()
232 } while_each_thread(g, p); in SYSCALL_DEFINE2()
/linux-4.1.27/drivers/video/fbdev/matrox/
Dmatroxfb_maven.c488 const struct maven_gamma* g; in maven_init_TVdata() local
489 g = maven_compute_gamma(md); in maven_init_TVdata()
490 data->regs[0x83] = g->reg83; in maven_init_TVdata()
491 data->regs[0x84] = g->reg84; in maven_init_TVdata()
492 data->regs[0x85] = g->reg85; in maven_init_TVdata()
493 data->regs[0x86] = g->reg86; in maven_init_TVdata()
494 data->regs[0x87] = g->reg87; in maven_init_TVdata()
495 data->regs[0x88] = g->reg88; in maven_init_TVdata()
496 data->regs[0x89] = g->reg89; in maven_init_TVdata()
497 data->regs[0x8A] = g->reg8a; in maven_init_TVdata()
[all …]
/linux-4.1.27/drivers/usb/gadget/function/
Du_ether.h96 struct eth_dev *gether_setup_name(struct usb_gadget *g,
113 static inline struct eth_dev *gether_setup(struct usb_gadget *g, in gether_setup() argument
117 return gether_setup_name(g, dev_addr, host_addr, ethaddr, qmult, "usb"); in gether_setup()
156 void gether_set_gadget(struct net_device *net, struct usb_gadget *g);
Df_obex.c265 static void obex_connect(struct gserial *g) in obex_connect() argument
267 struct f_obex *obex = port_to_obex(g); in obex_connect()
268 struct usb_composite_dev *cdev = g->func.config->cdev; in obex_connect()
274 status = usb_function_activate(&g->func); in obex_connect()
281 static void obex_disconnect(struct gserial *g) in obex_disconnect() argument
283 struct f_obex *obex = port_to_obex(g); in obex_disconnect()
284 struct usb_composite_dev *cdev = g->func.config->cdev; in obex_disconnect()
290 status = usb_function_deactivate(&g->func); in obex_disconnect()
Du_ether.c763 struct eth_dev *gether_setup_name(struct usb_gadget *g, in gether_setup_name() argument
790 dev_warn(&g->dev, in gether_setup_name()
793 dev_warn(&g->dev, in gether_setup_name()
803 dev->gadget = g; in gether_setup_name()
804 SET_NETDEV_DEV(net, &g->dev); in gether_setup_name()
809 dev_dbg(&g->dev, "register_netdev failed, %d\n", status); in gether_setup_name()
868 struct usb_gadget *g; in gether_register_netdev() local
875 g = dev->gadget; in gether_register_netdev()
878 dev_dbg(&g->dev, "register_netdev failed, %d\n", status); in gether_register_netdev()
903 void gether_set_gadget(struct net_device *net, struct usb_gadget *g) in gether_set_gadget() argument
[all …]
Du_hid.h39 int ghid_setup(struct usb_gadget *g, int count);
Du_phonet.h24 void gphonet_set_gadget(struct net_device *net, struct usb_gadget *g);
/linux-4.1.27/drivers/video/fbdev/omap2/displays-new/
Dpanel-tpo-td043mtea1.c253 unsigned int g[12]; in tpo_td043_gamma_store() local
258 &g[0], &g[1], &g[2], &g[3], &g[4], &g[5], in tpo_td043_gamma_store()
259 &g[6], &g[7], &g[8], &g[9], &g[10], &g[11]); in tpo_td043_gamma_store()
265 ddata->gamma[i] = g[i]; in tpo_td043_gamma_store()
/linux-4.1.27/include/linux/usb/
Dgadget.h599 usb_ep_align_maybe(struct usb_gadget *g, struct usb_ep *ep, size_t len) in usb_ep_align_maybe() argument
601 return !g->quirk_ep_out_aligned_size ? len : in usb_ep_align_maybe()
609 static inline int gadget_is_dualspeed(struct usb_gadget *g) in gadget_is_dualspeed() argument
611 return g->max_speed >= USB_SPEED_HIGH; in gadget_is_dualspeed()
618 static inline int gadget_is_superspeed(struct usb_gadget *g) in gadget_is_superspeed() argument
620 return g->max_speed >= USB_SPEED_SUPER; in gadget_is_superspeed()
630 static inline int gadget_is_otg(struct usb_gadget *g) in gadget_is_otg() argument
633 return g->is_otg; in gadget_is_otg()
/linux-4.1.27/drivers/pinctrl/intel/
Dpinctrl-intel.h85 #define FUNCTION(n, g) \ argument
88 .groups = (g), \
89 .ngroups = ARRAY_SIZE((g)), \
/linux-4.1.27/Documentation/devicetree/bindings/usb/
Ddwc2.txt23 - g-use-dma: enable dma usage in gadget driver.
24 - g-rx-fifo-size: size of rx fifo size in gadget mode.
25 - g-np-tx-fifo-size: size of non-periodic tx fifo size in gadget mode.
26 - g-tx-fifo-size: size of periodic tx fifo per endpoint (except ep0) in gadget mode.
Dsamsung-usbphy.txt40 '0x4' in case we have only one PHY_CONTROL register (e.g.
42 and, '0x8' in case we have two PHY_CONTROL registers (e.g.
96 '0x4' in case we have only one PHY_CONTROL register (e.g.
98 and, '0x8' in case we have two PHY_CONTROL registers (e.g.
/linux-4.1.27/Documentation/usb/
Dgadget_configfs.txt22 functions, each function representing e.g. a serial connection or a SCSI disk.
66 e.g.:
83 for each language, e.g.:
102 <number> is the configuration's number, e.g.:
111 for each language, e.g.:
119 Some attributes can also be set for a configuration, e.g.:
132 is an arbitrary string allowed in a filesystem, e.g.:
156 e.g.:
209 e.g.:
227 a symlink to a function being removed from the configuration, e.g.:
[all …]
/linux-4.1.27/drivers/block/
Dsunvdc.c750 struct gendisk *g; in probe_disk() local
784 g = alloc_disk(1 << PARTITION_SHIFT); in probe_disk()
785 if (!g) { in probe_disk()
792 port->disk = g; in probe_disk()
800 g->major = vdc_major; in probe_disk()
801 g->first_minor = port->vio.vdev->dev_no << PARTITION_SHIFT; in probe_disk()
802 strcpy(g->disk_name, port->disk_name); in probe_disk()
804 g->fops = &vdc_fops; in probe_disk()
805 g->queue = q; in probe_disk()
806 g->private_data = port; in probe_disk()
[all …]
Dswim.c574 struct floppy_struct **g) in get_floppy_geometry() argument
580 *g = &floppy_type[type]; in get_floppy_geometry()
582 *g = &floppy_type[3]; in get_floppy_geometry()
584 *g = &floppy_type[2]; in get_floppy_geometry()
586 *g = &floppy_type[1]; in get_floppy_geometry()
596 struct floppy_struct *g; in setup_medium() local
607 get_floppy_geometry(fs, 0, &g); in setup_medium()
608 fs->total_secs = g->size; in setup_medium()
609 fs->secpercyl = g->head * g->sect; in setup_medium()
610 fs->secpertrack = g->sect; in setup_medium()
[all …]
/linux-4.1.27/Documentation/
Dinit.txt23 E.g. some serial consoles are unreliable due to serial IRQ issues (e.g.
25 Try using a different console= device or e.g. netconsole= .
26 D) e.g. required library dependencies of the init binary such as
30 E.g. i386 vs. x86_64 mismatch, or trying to load x86 on ARM hardware.
47 e.g. by providing additional error messages at affected places.
Dinitrd.txt56 initrd=<path> (e.g. LOADLIN)
100 "normal" root file system, e.g.
119 needed to execute programs from initrd (e.g. executable format and file
134 2) create an empty file system of the appropriate size, e.g.
138 3) mount the file system, e.g.
150 general system state (e.g. by reconfiguring network interfaces,
177 e.g. LOADLIN C:\LINUX\BZIMAGE initrd=C:\LINUX\INITRD.GZ root=/dev/ram0 rw
181 the options using APPEND, e.g.
230 Where what-follows is a program under the new root, e.g. /sbin/init
264 (e.g. support for RAM disks, initrd, a.out, and the Ext2 FS) and
[all …]
/linux-4.1.27/Documentation/networking/
Dxfrm_proc.txt26 e.g. SA key is wrong
36 e.g. UDP encapsulation type is mismatch
41 e.g. Inbound SAs are correct but SP rule is wrong
44 e.g. Inbound SAs are correct but no SP is found
Dsecid.txt3 The secid member in the flow structure is used in LSMs (e.g. SELinux) to indicate
8 the incoming packet this flow is being generated as a response to (e.g. tcp
/linux-4.1.27/drivers/platform/x86/
Dwmi.c458 static void wmi_dump_wdg(const struct guid_block *g) in wmi_dump_wdg() argument
462 wmi_gtoa(g->guid, guid_string); in wmi_dump_wdg()
465 pr_info("\tobject_id: %c%c\n", g->object_id[0], g->object_id[1]); in wmi_dump_wdg()
466 pr_info("\tnotify_id: %02X\n", g->notify_id); in wmi_dump_wdg()
467 pr_info("\treserved: %02X\n", g->reserved); in wmi_dump_wdg()
468 pr_info("\tinstance_count: %d\n", g->instance_count); in wmi_dump_wdg()
469 pr_info("\tflags: %#x", g->flags); in wmi_dump_wdg()
470 if (g->flags) { in wmi_dump_wdg()
471 if (g->flags & ACPI_WMI_EXPENSIVE) in wmi_dump_wdg()
473 if (g->flags & ACPI_WMI_METHOD) in wmi_dump_wdg()
[all …]
/linux-4.1.27/arch/arm/boot/dts/
Dkirkwood-guruplug-server-plus.dts26 pmx_led_health_g: pmx-led-health-g {
34 pmx_led_wmode_g: pmx-led-wmode-g {
65 health-g {
73 wmode-g {
Dkirkwood-dir665.dts61 pmx_led_5g: pmx-led-5g {
77 pmx_led_24g: pmx-led-24g {
168 label = "dir665:blue:5g";
183 blue-24g {
184 label = "dir665:blue:24g";
Dtegra30-apalis-eval.dts72 * GEN1_I2C: I2C1_SDA/SCL on MXM3 pin 209/211 (e.g. RTC on carrier
94 * CAM_I2C: I2C3_SDA/SCL on MXM3 pin 201/203 (e.g. camera sensor on
102 /* DDC: I2C2_SDA/SCL on MXM3 pin 205/207 (e.g. display EDID) */
/linux-4.1.27/drivers/misc/sgi-gru/
Dgrutables.h485 #define get_tfm_for_cpu(g, c) \ argument
486 ((struct gru_tlb_fault_map *)get_tfm((g)->gs_gru_base_vaddr, (c)))
487 #define get_tfh_by_index(g, i) \ argument
488 ((struct gru_tlb_fault_handle *)get_tfh((g)->gs_gru_base_vaddr, (i)))
489 #define get_tgh_by_index(g, i) \ argument
490 ((struct gru_tlb_global_handle *)get_tgh((g)->gs_gru_base_vaddr, (i)))
491 #define get_cbe_by_index(g, i) \ argument
492 ((struct gru_control_block_extended *)get_cbe((g)->gs_gru_base_vaddr,\
/linux-4.1.27/Documentation/sound/alsa/soc/
Ddapm.txt30 machine driver and responds to asynchronous events e.g when HP
35 e.g. alsamixer, amixer.
39 stopped respectively. e.g. aplay, arecord.
102 e.g. stream widgets for HiFi playback and capture
107 e.g. stream widgets for AIF
123 e.g. Mixer widget (the kcontrols are declared first)
146 powered. e.g.
154 e.g. Jack connector widget for an external Mic that enables Mic Bias
179 a virtual widget - a widget with no control bits e.g.
200 e.g., from the WM8731 output mixer (wm8731.c)
[all …]
Dmachine.txt5 component drivers (e.g. codecs, platforms and DAIs). It also describes the
54 initialisation e.g. the machine audio map can be connected to the codec audio
57 struct snd_soc_dai_link is used to set up each DAI in your machine. e.g.
71 struct snd_soc_card then sets up the machine with its DAIs. e.g.
Doverview.txt5 provide better ALSA support for embedded system-on-chip processors (e.g.
14 * There was no standard method to signal user initiated audio events (e.g.
50 (e.g. volume control for speaker amplifier).
62 engine driver, digital audio interface (DAI) drivers (e.g. I2S, AC97, PCM)
68 machine level audio events (e.g. turning on an amp at start of playback).
Dcodec.txt35 e.g.
82 xname = Control name e.g. "Playback Volume"
85 mask = control bit size(s) e.g. mask of 7 = 3 bits
141 domain PM calls (e.g. suspend and resume). It is used to put the codec
Dclocking.txt13 (e.g. crystal, PLL, CPU clock) and is responsible for producing the correct
16 Some master clocks (e.g. PLLs and CPU based clocks) are configurable in that
/linux-4.1.27/drivers/gpu/drm/rcar-du/
Drcar_du_regs.h292 #define DOOR_RGB(r, g, b) (((r) << 18) | ((g) << 10) | ((b) << 2)) argument
294 #define CDER_RGB(r, g, b) (((r) << 18) | ((g) << 10) | ((b) << 2)) argument
296 #define BPOR_RGB(r, g, b) (((r) << 18) | ((g) << 10) | ((b) << 2)) argument
/linux-4.1.27/drivers/staging/sm750fb/
Dsm750_help.h84 #define RGB(r, g, b) \ argument
86 (unsigned long) (((r) << 16) | ((g) << 8) | (b)) \
89 #define RGB16(r, g, b) \ argument
91 (unsigned short) ((((r) & 0xF8) << 8) | (((g) & 0xFC) << 3) | (((b) & 0xF8) >> 3)) \
/linux-4.1.27/kernel/debug/kdb/
Dkdb_private.h234 #define kdb_do_each_thread(g, p) do_each_thread(g, p) argument
235 #define kdb_while_each_thread(g, p) while_each_thread(g, p) argument
Dkdb_bt.c118 struct task_struct *g, *p; in kdb_bt() local
131 kdb_do_each_thread(g, p) { in kdb_bt()
138 } kdb_while_each_thread(g, p); in kdb_bt()
/linux-4.1.27/drivers/media/usb/gspca/stv06xx/
Dstv06xx_hdcs.c263 static int hdcs_set_gains(struct sd *sd, u8 g) in hdcs_set_gains() argument
269 if (g > 127) in hdcs_set_gains()
270 g = 0x80 | (g / 2); in hdcs_set_gains()
272 gains[0] = g; in hdcs_set_gains()
273 gains[1] = g; in hdcs_set_gains()
274 gains[2] = g; in hdcs_set_gains()
275 gains[3] = g; in hdcs_set_gains()
/linux-4.1.27/Documentation/acpi/
Dmethod-customizing.txt26 a) get the ACPI table via ACPI sysfs I/F. e.g. to get the DSDT,
47 e.g. "iasl psr.asl" (psr.aml is generated as a result)
49 g) override the old method via the debugfs by running
55 insert and then follow the step c) ~ g) in section 1.
62 and redo step c) ~ g) to override the method with the original one.
68 ACPI methods, we need to redo step c) ~ g) for multiple times.
/linux-4.1.27/drivers/net/wireless/b43/
Dtables.c381 struct b43_phy_g *gphy = dev->phy.g; in b43_ofdmtab_read16()
402 struct b43_phy_g *gphy = dev->phy.g; in b43_ofdmtab_write16()
418 struct b43_phy_g *gphy = dev->phy.g; in b43_ofdmtab_read32()
440 struct b43_phy_g *gphy = dev->phy.g; in b43_ofdmtab_write32()
Dlo.c178 struct b43_phy_g *gphy = phy->g; in lo_measure_txctl_values()
275 struct b43_phy_g *gphy = phy->g; in lo_read_power_vector()
297 struct b43_phy_g *gphy = phy->g; in lo_measure_gain_values()
390 struct b43_phy_g *gphy = phy->g; in lo_measure_setup()
504 struct b43_phy_g *gphy = phy->g; in lo_measure_restore()
581 struct b43_phy_g *gphy = phy->g; in lo_probe_possible_loctls()
662 struct b43_phy_g *gphy = phy->g; in lo_probe_loctls_statemachine()
738 struct b43_phy_g *gphy = phy->g; in b43_calibrate_lo_setting()
803 struct b43_txpower_lo_control *lo = dev->phy.g->lo_control; in b43_get_calib_lo_settings()
822 struct b43_phy_g *gphy = phy->g; in b43_gphy_dc_lt_init()
[all …]
Dphy_g.c220 struct b43_phy_g *gphy = phy->g; in b43_set_txpower_g()
266 struct b43_phy_g *gphy = dev->phy.g; in b43_gphy_tssi_power_lt_init()
285 struct b43_phy_g *gphy = phy->g; in b43_gphy_gain_lt_init()
407 struct b43_phy_g *gphy = dev->phy.g; in b43_nrssi_mem_update()
571 struct b43_phy_g *gphy = phy->g; in b43_calc_nrssi_slope()
713 struct b43_phy_g *gphy = phy->g; in b43_calc_nrssi_threshold()
841 struct b43_phy_g *gphy = phy->g; in b43_radio_interference_mitigation_enable()
1007 struct b43_phy_g *gphy = phy->g; in b43_radio_interference_mitigation_disable()
1116 struct b43_phy_g *gphy = phy->g; in radio2050_rfover_val()
1495 struct b43_phy_g *gphy = phy->g; in b43_phy_initb5()
[all …]
/linux-4.1.27/arch/m68k/fpsp040/
Dround.S33 | d0{31:29} contains the g,r,s bits (extended)
36 | a0 is preserved and the g-r-s bits in d0 are cleared.
41 | inexact (i.e. if any of the g-r-s bits were set).
46 | If g=r=s=0 then result is exact and round is done, else set
51 | ;the appropriate g-r-s bits.
84 movel #0xffffffff,%d0 |force g,r,s to be all f's
112 | If (g=1), then add 1 to l and if (r=s=0), then clear l
117 asll #1,%d0 |shift g-bit to c-bit
118 bcc truncate |if (g=1) then
148 bfextu LOCAL_HI(%a0){#24:#2},%d3 |sgl prec. g-r are 2 bits right
[all …]
Dsint.S209 clrl %d0 |clear d0 - initial g,r,s for
216 | ;output d0 supplies g,r,s
223 | ; d0 g,r,s bits
/linux-4.1.27/drivers/sh/intc/
Dhandle.c21 struct intc_group *g = desc->hw.groups; in intc_grp_id() local
24 for (i = 0; g && enum_id && i < desc->hw.nr_groups; i++) { in intc_grp_id()
25 g = desc->hw.groups + i; in intc_grp_id()
27 for (j = 0; g->enum_ids[j]; j++) { in intc_grp_id()
28 if (g->enum_ids[j] != enum_id) in intc_grp_id()
31 return g->enum_id; in intc_grp_id()
/linux-4.1.27/drivers/usb/gadget/
Dconfig.c167 struct usb_gadget *g = f->config->cdev->gadget; in usb_assign_descriptors() local
174 if (hs && gadget_is_dualspeed(g)) { in usb_assign_descriptors()
179 if (ss && gadget_is_superspeed(g)) { in usb_assign_descriptors()
/linux-4.1.27/net/can/
DKconfig28 socket has several filter options e.g. ID masking / error frames.
38 informs you on demand e.g. only on content updates / timeouts.
40 CAN messages are used on the bus (e.g. in automotive environments).
52 by the netlink configuration interface known e.g. from iptables.
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/
Dti,bq24735.txt15 is 0x0000h. This number is in mA (e.g. 8192), see spec for more information
19 is 0x0000h. This number is in mV (e.g. 19200), see spec for more information
23 POR value is 0x1000h. This number is in mA (e.g. 8064), see the spec for
/linux-4.1.27/drivers/pinctrl/samsung/
Dpinctrl-samsung.h96 #define PMX_FUNC(n, g) \ argument
99 .groups = g, \
100 .num_groups = ARRAY_SIZE(g), \
/linux-4.1.27/drivers/mtd/ubi/
Dgluebi.c302 struct gluebi_device *gluebi, *g; in gluebi_create() local
342 g = find_gluebi_nolock(vi->ubi_num, vi->vol_id); in gluebi_create()
343 if (g) in gluebi_create()
345 g->mtd.index, vi->ubi_num, vi->vol_id); in gluebi_create()
500 struct gluebi_device *gluebi, *g; in ubi_gluebi_exit() local
502 list_for_each_entry_safe(gluebi, g, &gluebi_devices, list) { in ubi_gluebi_exit()
Ddebug.h38 #define ubi_dbg_print_hex_dump(l, ps, pt, r, g, b, len, a) \ argument
39 print_hex_dump(l, ps, pt, r, g, b, len, a)
/linux-4.1.27/arch/x86/kernel/
Dtboot.c256 #define TB_COPY_GAS(tbg, g) \ in tboot_copy_fadt() argument
257 tbg.space_id = g.space_id; \ in tboot_copy_fadt()
258 tbg.bit_width = g.bit_width; \ in tboot_copy_fadt()
259 tbg.bit_offset = g.bit_offset; \ in tboot_copy_fadt()
260 tbg.access_width = g.access_width; \ in tboot_copy_fadt()
261 tbg.address = g.address; in tboot_copy_fadt()
/linux-4.1.27/Documentation/trace/
Devents-power.txt53 The first parameter gives the clock name (e.g. "gpio1_iclk").
63 The first parameter gives the power domain name (e.g. "mpu_pwrdm").
76 The first parameter gives the QoS class name (e.g. "CPU_DMA_LATENCY").
83 The first parameter gives the QoS action name (e.g. "ADD_REQ").
95 The second parameter gives the request type (e.g. "DEV_PM_QOS_RESUME_LATENCY").
/linux-4.1.27/arch/powerpc/platforms/pseries/
Dpower.c59 static struct attribute *g[] = { variable
65 .attrs = g,
/linux-4.1.27/Documentation/input/
Dcma3000_d0x.txt27 which includes time and g value. Refer product specifications for more details.
47 g_range: G range in milli g i.e 2000 or 8000
51 mdthr: Motion detect g range threshold value
55 ffthr: Free fall g range threshold value
/linux-4.1.27/Documentation/vDSO/
Dparse_vdso.c83 unsigned long h = 0, g; in elf_hash() local
87 if (g = h & 0xf0000000) in elf_hash()
88 h ^= g >> 24; in elf_hash()
89 h &= ~g; in elf_hash()
/linux-4.1.27/Documentation/devicetree/bindings/serial/
Darc-uart.txt10 e.g.
23 e.g.
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/core/
Dengctx.h28 #define nvkm_engctx_create(p,e,c,g,s,a,f,d) \ argument
29 nvkm_engctx_create_((p), (e), (c), (g), (s), (a), (f), \
Dgpuobj.h33 #define nvkm_gpuobj_create(p,e,c,v,g,s,a,f,d) \ argument
34 nvkm_gpuobj_create_((p), (e), (c), (v), (g), (s), (a), (f), \
/linux-4.1.27/drivers/pnp/pnpbios/
DKconfig11 mainboard resources (e.g. parallel port resources).
13 Some features (e.g. event notification, docking station information,
35 in the PNPBIOS /proc interface (e.g. "boot" configs).
/linux-4.1.27/drivers/pinctrl/nomadik/
Dpinctrl-nomadik.c1644 const struct nmk_pingroup *g; in nmk_pmx_set() local
1651 g = &npct->soc->groups[group]; in nmk_pmx_set()
1653 if (g->altsetting < 0) in nmk_pmx_set()
1656 dev_dbg(npct->dev, "enable group %s, %u pins\n", g->name, g->npins); in nmk_pmx_set()
1679 glitch = ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C); in nmk_pmx_set()
1691 for (i = 0; i < g->npins; i++) in nmk_pmx_set()
1692 slpm[g->pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->pins[i]); in nmk_pmx_set()
1696 for (i = 0; i < g->npins; i++) { in nmk_pmx_set()
1702 range = nmk_match_gpio_range(pctldev, g->pins[i]); in nmk_pmx_set()
1706 g->pins[i], g->name, i); in nmk_pmx_set()
[all …]
Dpinctrl-abx500.c717 const struct abx500_pingroup *g; in abx500_pmx_set() local
721 g = &pct->soc->groups[group]; in abx500_pmx_set()
722 if (g->altsetting < 0) in abx500_pmx_set()
725 dev_dbg(pct->dev, "enable group %s, %u pins\n", g->name, g->npins); in abx500_pmx_set()
727 for (i = 0; i < g->npins; i++) { in abx500_pmx_set()
729 g->pins[i], g->altsetting); in abx500_pmx_set()
731 ret = abx500_set_mode(pctldev, chip, g->pins[i], g->altsetting); in abx500_pmx_set()
/linux-4.1.27/drivers/media/usb/usbvision/
Dusbvision-core.c886 unsigned char g; in usbvision_parse_lines_420() local
947 g = LIMIT_RGB(g_); in usbvision_parse_lines_420()
950 (0xE0 & (g << 5)); in usbvision_parse_lines_420()
952 (0x07 & (g >> 3)) | in usbvision_parse_lines_420()
967 g = LIMIT_RGB(g_); in usbvision_parse_lines_420()
969 (0xE0 & (g << 5)); in usbvision_parse_lines_420()
970 *f_even++ = (0x03 & (g >> 3)) | in usbvision_parse_lines_420()
990 g = LIMIT_RGB(g_); in usbvision_parse_lines_420()
993 (0xE0 & (g << 5)); in usbvision_parse_lines_420()
995 (0x07 & (g >> 3)) | in usbvision_parse_lines_420()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/media/
Dvideo-interfaces.txt6 Video data pipelines usually consist of external devices, e.g. camera sensors,
12 bus controller nodes, e.g. I2C.
49 between two devices, e.g. there are logic signal inverters on the lines.
53 a device is partitioned into multiple data busses, e.g. 16-bit input port
82 used, e.g. "bus-width=<8>; data-shift=<2>;" means, that lines 9:2 are used.
95 physical lane, e.g. for 2-lane MIPI CSI-2 bus we could have
97 This property is valid for serial busses only (e.g. MIPI CSI-2).
100 physical lane, e.g. for a MIPI CSI-2 bus we could have "clock-lanes = <0>;",
102 serial busses only (e.g. MIPI CSI-2). Note that for the MIPI CSI-2 bus this
Dti,omap3isp.txt19 ti,phy-type : 0 -- OMAP3ISP_PHY_TYPE_COMPLEX_IO (e.g. 3430)
20 1 -- OMAP3ISP_PHY_TYPE_CSIPHY (e.g. 3630)
Dsamsung-mipi-csis.txt14 - vddio-supply : MIPI CSIS I/O and PLL voltage supply (e.g. 1.8V);
15 - vddcore-supply : MIPI CSIS Core voltage supply (e.g. 1.1V);
/linux-4.1.27/Documentation/leds/
Dleds-blinkm.txt35 E.g.:
53 E.g. below /sys/bus/i2c/devices/6-0009/blinkm
61 E.g.:
/linux-4.1.27/fs/
Dfs_struct.c58 struct task_struct *g, *p; in chroot_fs_refs() local
63 do_each_thread(g, p) { in chroot_fs_refs()
80 } while_each_thread(g, p); in chroot_fs_refs()
Dcoredump.c305 struct task_struct *g, *p; in zap_threads() local
356 for_each_process(g) { in zap_threads()
357 if (g == tsk->group_leader) in zap_threads()
359 if (g->flags & PF_KTHREAD) in zap_threads()
361 p = g; in zap_threads()
372 } while_each_thread(g, p); in zap_threads()
/linux-4.1.27/drivers/dma/
Diop-adma.c624 struct iop_adma_desc_slot *sw_desc, *g; in iop_adma_prep_dma_pq() local
649 g = sw_desc->group_head; in iop_adma_prep_dma_pq()
650 iop_desc_set_byte_count(g, iop_chan, len); in iop_adma_prep_dma_pq()
659 iop_desc_set_pq_addr(g, dst); in iop_adma_prep_dma_pq()
662 iop_desc_set_pq_src_addr(g, i, src[i], scf[i]); in iop_adma_prep_dma_pq()
669 iop_desc_set_pq_src_addr(g, i++, dst[1], 1); in iop_adma_prep_dma_pq()
671 iop_desc_set_pq_src_addr(g, i++, dst[0], 0); in iop_adma_prep_dma_pq()
672 iop_desc_set_pq_src_addr(g, i++, dst[1], 1); in iop_adma_prep_dma_pq()
673 iop_desc_set_pq_src_addr(g, i++, dst[1], 0); in iop_adma_prep_dma_pq()
675 iop_desc_init_pq(g, i, flags); in iop_adma_prep_dma_pq()
[all …]
/linux-4.1.27/Documentation/RCU/
Dtrace.txt59 …0!c=30455 g=30456 pq=1/0 qp=1 dt=126535/140000000000000/0 df=2002 of=4 ql=0/0 qs=N... b=10 ci=7457…
60 …1!c=30719 g=30720 pq=1/0 qp=0 dt=132007/140000000000000/0 df=1874 of=10 ql=0/0 qs=N... b=10 ci=123…
61 …2!c=30150 g=30151 pq=1/1 qp=1 dt=138537/140000000000000/0 df=1707 of=8 ql=0/0 qs=N... b=10 ci=8013…
62 …3 c=31249 g=31250 pq=1/1 qp=0 dt=107255/140000000000000/0 df=1749 of=6 ql=0/450 qs=NRW. b=10 ci=15…
63 …4!c=29502 g=29503 pq=1/0 qp=1 dt=83647/140000000000000/0 df=965 of=5 ql=0/0 qs=N... b=10 ci=65643 …
64 …5 c=31201 g=31202 pq=1/0 qp=1 dt=70422/0/0 df=535 of=7 ql=0/0 qs=.... b=10 ci=58500 nci=0 co=764 c…
65 …6!c=30253 g=30254 pq=1/0 qp=1 dt=95363/140000000000000/0 df=780 of=5 ql=0/0 qs=N... b=10 ci=100607…
66 …7 c=31178 g=31178 pq=1/0 qp=0 dt=91536/0/0 df=547 of=4 ql=0/0 qs=.... b=10 ci=109819 nci=0 co=1115…
87 o "g" is the count of grace periods that this CPU believes have
89 may lag behind. If the "c" and "g" values are equal, this CPU
[all …]
/linux-4.1.27/drivers/gpu/drm/nouveau/include/nvkm/engine/
Dmpeg.h9 #define nvkm_mpeg_context_create(p,e,c,g,s,a,f,d) \ argument
10 nvkm_engctx_create((p), (e), (c), (g), (s), (a), (f), (d))
Dfalcon.h9 #define nvkm_falcon_context_create(p,e,c,g,s,a,f,d) \ argument
10 nvkm_engctx_create((p), (e), (c), (g), (s), (a), (f), (d))
Dgr.h9 #define nvkm_gr_context_create(p,e,c,g,s,a,f,d) \ argument
10 nvkm_engctx_create((p), (e), (c), (g), (s), (a), (f), (d))
Dfifo.h52 #define nvkm_fifo_context_create(p,e,c,g,s,a,f,d) \ argument
53 nvkm_gpuobj_create((p), (e), (c), 0, (g), (s), (a), (f), (d))
/linux-4.1.27/Documentation/devicetree/bindings/
Dcommon-properties.txt10 unconditionally (e.g. ioread32be/iowrite32be). Use this if you
13 unconditionally (e.g. readl/writel). Use this if you know the
16 endianness of the kernel binary (e.g. LE vmlinux -> readl/writel,
/linux-4.1.27/Documentation/sound/alsa/
DJoystick.txt40 manual: any address (e.g. 0x200)
47 manual: any address (e.g. 0x200)
78 and the appropriate adapter module (e.g. "analog").
86 the adapter module (e.g. "analog").
/linux-4.1.27/drivers/usb/dwc3/
Dgadget.h28 #define gadget_to_dwc(g) (container_of(g, struct dwc3, gadget)) argument
/linux-4.1.27/mm/
Dvmacache.c18 struct task_struct *g, *p; in vmacache_flush_all() local
33 for_each_process_thread(g, p) { in vmacache_flush_all()
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Drenesas,rz-cpg-clocks.txt16 "i", and "g"
28 clock-output-names = "pll", "i", "g";
Dat91-clock.txt226 e.g. "<&ck32k>, <&main>, <&plla>, <&pllb>".
229 e.g. output = <0 133000000>; <=> 0 to 133MHz.
232 e.g. divisors = <1 2 4 6>;
234 PRES field as CLOCK_DIV3 (e.g sam9x5).
250 e.g. clocks = <&mck>;
290 e.g. input = <1 32000000>; <=> 1 to 32MHz.
341 e.g. clocks = <&clk32k>, <&main>, <&plla>, <&pllb>;
373 e.g. clocks = <&plladiv>, <&utmi>;
419 e.g. clocks = <&pllb>;
422 e.g. divisors = <1 2 4 0>;
/linux-4.1.27/Documentation/devicetree/bindings/thermal/
Dimx-thermal.txt9 control registers, e.g. ANATOP on imx6q.
11 calibration data, e.g. OCOTP on imx6q. The details about calibration data
/linux-4.1.27/crypto/async_tx/
Dasync_raid6_recov.c203 struct page *p, *q, *g, *dp, *dq; in __2data_recov_5() local
226 g = blocks[good]; in __2data_recov_5()
236 tx = async_memcpy(dp, g, 0, 0, bytes, submit); in __2data_recov_5()
238 tx = async_mult(dq, g, raid6_gfexp[good], bytes, submit); in __2data_recov_5()
488 struct page *g = blocks[good]; in async_raid6_datap_recov() local
492 tx = async_memcpy(p, g, 0, 0, bytes, submit); in async_raid6_datap_recov()
496 tx = async_mult(dq, g, raid6_gfexp[good], bytes, submit); in async_raid6_datap_recov()
/linux-4.1.27/tools/perf/Documentation/
Dperf-probe.txt64 classes(e.g. [a-z], [!A-Z]).
150g. var->field, var.field2), local array with fixed index (e.g. array[1], var->array[0], var->point…
172 … pattern and target. So this accepts wildcards('*', '?') and character classes(e.g. [a-z], [!A-Z]).
174 e.g.
184 e.g.
/linux-4.1.27/net/ceph/
DKconfig26 execution slightly when debug call sites are enabled (e.g.,
37 If you say Y here, hostnames (e.g. monitor addresses) will
/linux-4.1.27/Documentation/devicetree/bindings/phy/
Dti-phy.txt9 e.g. USB2_PHY on OMAP5.
11 e.g. USB3 PHY and SATA PHY on OMAP5.
14 e.g. PCIE PHY in DRA7x
83 differentiate between each instance "id" can be used (e.g., multi-lane PCIe
/linux-4.1.27/Documentation/devicetree/bindings/video/
Dsimple-framebuffer.txt30 enable them. This way if e.g. later on support for more display clocks get
37 see e.g. simple-framebuffer-sunxi.txt .
46 - r5g6b5 (16-bit pixels, d[15:11]=r, d[10:5]=g, d[4:0]=b).
47 - a8b8g8r8 (32-bit pixels, d[31:24]=a, d[23:16]=b, d[15:8]=g, d[7:0]=r).
Dexynos_dsim.txt17 - vddcore-supply: MIPI DSIM Core voltage supply (e.g. 1.1V)
18 - vddio-supply: MIPI DSIM I/O and PLL voltage supply (e.g. 1.8V)
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-driver-genwqe4 Description: Unique bitstream identification e.g.
10 Description: Identifies the currently active card application e.g. 'GZIP'
16 Description: Type of the card e.g. 'GenWQE5-A7'.
Dsysfs-driver-hid-roccat-kone35 left. E.g. a returned value of 138 means 1.38
100 1 5g
101 2 10g
102 3 15g
103 4 20g
Dsysfs-class-net-statistics33 that support packet compression (e.g: PPP).
98 (e.g: larger than MTU). See the network driver for the exact
115 during transmission by a network device (e.g: because of
136 because of carrier errors (e.g: physical link down). See the
146 compression (e.g: PPP).
Dsysfs-class-net39 Format is a string, e.g: 00:11:22:33:44:55 for an Ethernet MAC
48 string, e.g: ff:ff:ff:ff:ff:ff for an Ethernet broadcast MAC
61 Note: some special devices, e.g: bonding and team drivers will
72 stacked (e.g: VLAN interfaces) but still have the same MAC
87 authentication is performed (e.g: 802.1x). 'link_mode' attribute
Dsysfs-devices-soc20 name (e.g. Ux500).
27 (e.g. DB8500).
/linux-4.1.27/include/uapi/linux/
Dmap_to_7segment.h97 #define _SEG7(l,a,b,c,d,e,f,g) \ argument
99 e<<BIT_SEG7_E | f<<BIT_SEG7_F | g<<BIT_SEG7_G )
/linux-4.1.27/drivers/gpu/drm/msm/mdp/
Dmdp_format.c74 #define FMT(name, a, r, g, b, e0, e1, e2, e3, alpha, tight, c, cnt, fp, cs) { \ argument
78 .bpc_g = BPC ## g, \
/linux-4.1.27/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
DSchedGui.py89 (r, g, b) = top_color
90 top_color = wx.Colour(r, g, b)
97 (r ,g, b) = color
98 color = wx.Colour(r, g, b)
/linux-4.1.27/Documentation/filesystems/
Dsysfs-pci.txt61 actions on the device (e.g. changing config space, detaching a device).
84 e.g. powering off the device. The device is removed from the kernel's list of
94 e.g.
104 port (e.g. 0x3e8) and do a read or a write of 1, 2 or 4 bytes. The legacy_mem
106 desired, e.g. 0xa0000 for the VGA frame buffer. The application can then
/linux-4.1.27/drivers/media/dvb-frontends/
Dstb6100.c342 u8 g, psd2, odiv; in stb6100_set_frequency() local
421 g = 9; /* +4 dB */ in stb6100_set_frequency()
423 g = 11; /* +8 dB */ in stb6100_set_frequency()
425 g = 14; /* +14 dB */ in stb6100_set_frequency()
427 regs[STB6100_G] = (0x10 & ~STB6100_G_G) | g; in stb6100_set_frequency()
444 frequency, srate, (unsigned int)g, (unsigned int)odiv, in stb6100_set_frequency()
/linux-4.1.27/arch/arm/crypto/
Dsha256-armv4.pl65 my ($i,$a,$b,$c,$d,$e,$f,$g,$h) = @_;
99 eor $t1,$f,$g
103 eor $t1,$t1,$g @ Ch(e,f,g)
133 my ($i,$a,$b,$c,$d,$e,$f,$g,$h) = @_;
303 my ($a,$b,$c,$d,$e,$f,$g,$h);
404 my ($a,$b,$c,$d,$e,$f,$g,$h);
Dsha256-core.S_shipped148 eor r2,r2,r10 @ Ch(e,f,g)
150 add r11,r11,r2 @ h+=Ch(e,f,g)
206 eor r2,r2,r9 @ Ch(e,f,g)
208 add r10,r10,r2 @ h+=Ch(e,f,g)
264 eor r2,r2,r8 @ Ch(e,f,g)
266 add r9,r9,r2 @ h+=Ch(e,f,g)
322 eor r2,r2,r7 @ Ch(e,f,g)
324 add r8,r8,r2 @ h+=Ch(e,f,g)
380 eor r2,r2,r6 @ Ch(e,f,g)
382 add r7,r7,r2 @ h+=Ch(e,f,g)
[all …]
/linux-4.1.27/fs/dlm/
Dconfig.c452 static struct config_group *make_cluster(struct config_group *g, in make_cluster() argument
504 static void drop_cluster(struct config_group *g, struct config_item *i) in drop_cluster() argument
529 static struct config_group *make_space(struct config_group *g, const char *name) in make_space() argument
561 static void drop_space(struct config_group *g, struct config_item *i) in drop_space() argument
585 static struct config_item *make_comm(struct config_group *g, const char *name) in make_comm() argument
605 static void drop_comm(struct config_group *g, struct config_item *i) in drop_comm() argument
622 static struct config_item *make_node(struct config_group *g, const char *name) in make_node() argument
624 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); in make_node()
644 static void drop_node(struct config_group *g, struct config_item *i) in drop_node() argument
646 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); in drop_node()
/linux-4.1.27/drivers/media/usb/gspca/
Detoms.c642 __u8 r, g, b; in do_autogain() local
652 g = (gspca_dev->usb_buf[0] + gspca_dev->usb_buf[3]) >> 1; in do_autogain()
657 g = ((g << 9) + (g << 7) + (g << 5)) >> 10; in do_autogain()
658 luma = LIMIT(r + g + b); in do_autogain()
/linux-4.1.27/Documentation/isdn/
DsyncPPP.FAQ22 here, the framing is character based. (e.g when
50 (you can check this e.g with the program 'ifconfig')
85 e.g:
142 trigger a network packet. (e.g gethostbyname()).
175 on the option line with the <a.b.c.d:e.f.g.h> option.
184 A: Maybe you try these options .. e.g:
220 this increases redundancy. (e.g your remote side is buggy and
/linux-4.1.27/net/decnet/
DTODO17 o Verify errors etc. against POSIX 1003.1g (draft)
19 o Using send/recvmsg() to get at connect/disconnect data (POSIX 1003.1g)
/linux-4.1.27/Documentation/pcmcia/
Ddevicetable.txt14 hashes of the string to the macro, e.g. if you want to match the product ID
32 as argument to this program, e.g.:
/linux-4.1.27/Documentation/scsi/
Dbnx2fc.txt11 interface (e.g. eth0) associated with the FCoE offload initiator must be 'up'.
16 support the VLANs that have been discovered for FCoE operation (e.g.
72 based DCBX/LLDP clients (e.g. lldpad) must be disabled. To disable lldpad on a
/linux-4.1.27/Documentation/devicetree/bindings/bus/
Dbrcm,bus-axi.txt19 detected (e.g. IRQ numbers). Also some of the cores may be responsible
20 for extra things, e.g. ChipCommon providing access to the GPIO chip.
/linux-4.1.27/Documentation/video4linux/
Dsoc-camera.txt12 specialised interface, present on many SoCs, e.g. PXA27x and PXA3xx, SuperH,
15 parallel or serial, consists of data and control lines, e.g. clock, vertical
101 e.g. signal polarity inversion. soc_mbus_get_fmtdesc() can be used to obtain a
143 fields change elsewhere, e.g. during .s_crop() processing, the host driver is
154 certain rules. E.g. if MEDIA_BUS_FMT_YUYV8_2X8 data is sampled with 8 bits per
164 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
/linux-4.1.27/tools/perf/tests/attr/
Dtest-record-graph-default3 args = -g kill >/dev/null 2>&1
/linux-4.1.27/Documentation/video4linux/bttv/
DPROBLEMS18 remap this. E.g.: insmod bttv vidmem=0xfb0 remap=0xfa0
49 - Some popup windows (e.g. of the window manager) are not refreshed.
55 You will always get pixel errors when e.g. using more than 1 card in full
DTuners15 SAMSUNG Tuner identification: (e.g. TCPM9091PD27)
42 Philips Tuner identification: (e.g. FM1216MF)
65 Temic Tuner identification: (.e.g 4006FH5)
/linux-4.1.27/Documentation/s390/
DDebugging390.txt77 e.g. switching address translation off requires that you
86 PER is used to facilitate debugging e.g. single stepping.
292 e.g. the mvcp instruction to access user space. However the kernel
418 up on function exit ( e.g. the caller may choose to allocate nothing
492 e.g.
536 by the callee are saved, e.g. the compiler is perfectly
539 2) In functions with variable arguments e.g. printf the calling procedure
683 some of the instructions have g's on the end of them to indicate
721 shared libraries, normal -g debugging works much better now
724 This is typically done adding/appending the flags -g or -gdwarf-2 to the
[all …]
/linux-4.1.27/Documentation/networking/mac80211_hwsim/
Dhostapd.conf4 hw_mode=g
/linux-4.1.27/Documentation/ABI/stable/
Dsysfs-firmware-opal-dump25 in hex (e.g. '0x01')
32 e.g. '0x02 System/Platform Dump'
/linux-4.1.27/net/irda/
Dirqueue.c216 __u32 g; in hash() local
220 if ((g = (h & 0xf0000000))) in hash()
221 h ^=g>>24; in hash()
222 h &=~g; in hash()
/linux-4.1.27/Documentation/accounting/
Dgetdelays.c68 struct genlmsghdr g; member
134 msg.g.cmd = genl_cmd; in send_cmd()
135 msg.g.version = 0x1; in send_cmd()
166 struct genlmsghdr g; in get_family_id() member
/linux-4.1.27/fs/gfs2/
Ddir.c465 struct dirent_gather *g = opaque; in gfs2_dirent_gather() local
467 g->pdent[g->offset++] = dent; in gfs2_dirent_gather()
1304 struct dirent_gather g; in gfs2_dir_read_leaf() local
1337 g.pdent = darr; in gfs2_dir_read_leaf()
1338 g.offset = 0; in gfs2_dir_read_leaf()
1350 gfs2_dirent_gather, NULL, &g); in gfs2_dir_read_leaf()
1354 if (entries2 != g.offset) { in gfs2_dir_read_leaf()
1359 entries2, g.offset); in gfs2_dir_read_leaf()
1480 struct dirent_gather g; in gfs2_dir_read() local
1505 g.pdent = darr; in gfs2_dir_read()
[all …]
/linux-4.1.27/drivers/devfreq/
Ddevfreq.c657 struct devfreq_governor *g; in devfreq_add_governor() local
667 g = find_devfreq_governor(governor->name); in devfreq_add_governor()
668 if (!IS_ERR(g)) { in devfreq_add_governor()
670 g->name); in devfreq_add_governor()
722 struct devfreq_governor *g; in devfreq_remove_governor() local
732 g = find_devfreq_governor(governor->name); in devfreq_remove_governor()
733 if (IS_ERR(g)) { in devfreq_remove_governor()
736 err = PTR_ERR(g); in devfreq_remove_governor()
/linux-4.1.27/Documentation/filesystems/cifs/
DREADME21 1) Get the kernel source (e.g.from http://www.kernel.org)
25 then patch the kernel (e.g. "patch -p1 < cifs_24.patch")
27 it has not already been added (e.g. current SuSE and UL
31 the cifs download to your kernel build directory e.g.
42 1) Download the kernel (e.g. from http://www.kernel.org)
44 (e.g. /usr/src/linux-2.5.73)
55 the modules directory e.g. /lib/modules/2.4.10-4GB/kernel/fs/cifs/cifs.o).
66 users who are used to Windows e.g.
71 trivially built from Samba 3.0 or later source e.g. by executing:
86 utility as suid (e.g. "chmod +s /sbin/mount.cifs). To enable users to
[all …]
/linux-4.1.27/fs/xfs/
Dxfs_quota.h132 #define xfs_qm_vop_create_dqattach(tp, ip, u, g, p) argument
135 #define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl) (0) argument
/linux-4.1.27/drivers/scsi/esas2r/
Desas2r_main.c1377 struct atto_vda_grp_info *g; in esas2r_nuxi_mgt_data() local
1439 g = (struct atto_vda_grp_info *)data; in esas2r_nuxi_mgt_data()
1441 g->capacity = le64_to_cpu(g->capacity); in esas2r_nuxi_mgt_data()
1442 g->block_size = le32_to_cpu(g->block_size); in esas2r_nuxi_mgt_data()
1443 g->interleave = le32_to_cpu(g->interleave); in esas2r_nuxi_mgt_data()
1444 g->features = le16_to_cpu(g->features); in esas2r_nuxi_mgt_data()
1447 g->members[i] = le16_to_cpu(g->members[i]); in esas2r_nuxi_mgt_data()
/linux-4.1.27/drivers/usb/gadget/legacy/
Dzero.c176 struct usb_gadget *g = cdev->gadget; in zero_autoresume() local
186 if (g->speed != USB_SPEED_UNKNOWN) { in zero_autoresume()
187 int status = usb_gadget_wakeup(g); in zero_autoresume()
/linux-4.1.27/Documentation/devicetree/bindings/clock/ti/
Ddivider.txt8 the register is one less than the actual divisor value. E.g:
18 of 0. E.g:
24 ti,index-power-of-two - valid divisor values are powers of two. E.g:
/linux-4.1.27/Documentation/fb/
Dframebuffer.txt49 There also can be more than one frame buffer at a time, e.g. if you have a
53 Application software that uses the frame buffer device (e.g. the X server) will
56 $FRAMEBUFFER to the path name of a frame buffer device, e.g. (for sh/bash
99 easier and more portable. E.g. the X server works completely on /dev/fb* and
118 to change the current video mode, e.g. during boot up in one of your /etc/rc.*
174 dotclock in the graphics board. For a dotclock of e.g. 28.37516 MHz (millions
184 also takes time (e.g. 272 `pixels'), so a full scanline takes
193 retrace too (e.g. 49 `lines'). So a full screen will take
/linux-4.1.27/Documentation/arm64/
Dlegacy_instructions.txt14 have been obsoleted in the architecture, e.g., SWP
21 instructions, .e.g., CP15 barriers
/linux-4.1.27/kernel/gcov/
DKconfig9 This option enables gcov-based code profiling (e.g. for code coverage
19 For a single file (e.g. main.o):
/linux-4.1.27/drivers/misc/vmw_vmci/
Dvmci_queue_pair.c159 } g; /* Used by the guest. */ member
281 queue->kernel_if->u.g.vas[i], in qp_free_queue()
282 queue->kernel_if->u.g.pas[i]); in qp_free_queue()
305 (sizeof(*queue->kernel_if->u.g.pas) + in qp_alloc_queue()
306 sizeof(*queue->kernel_if->u.g.vas))) in qp_alloc_queue()
309 pas_size = num_pages * sizeof(*queue->kernel_if->u.g.pas); in qp_alloc_queue()
310 vas_size = num_pages * sizeof(*queue->kernel_if->u.g.vas); in qp_alloc_queue()
322 queue->kernel_if->u.g.pas = (dma_addr_t *)(queue->kernel_if + 1); in qp_alloc_queue()
323 queue->kernel_if->u.g.vas = in qp_alloc_queue()
324 (void **)((u8 *)queue->kernel_if->u.g.pas + pas_size); in qp_alloc_queue()
[all …]
/linux-4.1.27/include/linux/platform_data/
Dleds-lp55xx.h33 const u8 *g; member
/linux-4.1.27/Documentation/security/
DYama.txt18 (e.g. Pidgin) was compromised, it would be possible for an attacker to
19 attach to other running processes (e.g. Firefox, SSH sessions, GPG agent,
31 specifically disallow such ptrace attachment (e.g. ssh-agent), but many
/linux-4.1.27/Documentation/power/regulator/
Dconsumer.txt24 Consumers can be supplied by more than one regulator e.g. codec consumer with
71 voltage to match system operating points. e.g. CPUfreq drivers can scale
101 current limit to match system operating points. e.g. LCD backlight driver can
131 changes. e.g. consumer driver is idle and subsequently draws less current
146 The load_uA value can be determined from the consumer's datasheet. e.g. most
Dmachine.txt20 const char *supply; /* consumer supply - e.g. "vcc" */
23 e.g. for the machine above
/linux-4.1.27/drivers/leds/
Dleds-bd2802.c67 unsigned g:2; member
119 return !led->led[id].g; in bd2802_is_rgb_off()
130 if (led->led[id].r || led->led[id].g || led->led[id].b) in bd2802_is_led_off()
188 led->led[i].g = led_bit; in bd2802_update_state()
756 if (led->led[i].g) in bd2802_restore_state()
757 bd2802_turn_on(led, i, GREEN, led->led[i].g); in bd2802_restore_state()
/linux-4.1.27/drivers/acpi/apei/
Dghes.c335 struct acpi_hest_generic *g = ghes->generic; in ghes_read_estatus() local
340 rc = apei_read(&buf_paddr, &g->error_status_address); in ghes_read_estatus()
345 g->header.source_id); in ghes_read_estatus()
665 struct acpi_hest_generic *g = ghes->generic; in ghes_add_timer() local
668 if (!g->notify.poll_interval) { in ghes_add_timer()
670 g->header.source_id); in ghes_add_timer()
673 expire = jiffies + msecs_to_jiffies(g->notify.poll_interval); in ghes_add_timer()
/linux-4.1.27/fs/ext4/
Dialloc.c365 static void get_orlov_stats(struct super_block *sb, ext4_group_t g, in get_orlov_stats() argument
372 stats->free_inodes = atomic_read(&flex_group[g].free_inodes); in get_orlov_stats()
373 stats->free_clusters = atomic64_read(&flex_group[g].free_clusters); in get_orlov_stats()
374 stats->used_dirs = atomic_read(&flex_group[g].used_dirs); in get_orlov_stats()
378 desc = ext4_get_group_desc(sb, g, NULL); in get_orlov_stats()
424 ext4_group_t i, grp, g, ngroups; in find_group_orlov() local
460 g = (parent_group + i) % ngroups; in find_group_orlov()
461 get_orlov_stats(sb, g, flex_size, &stats); in find_group_orlov()
470 grp = g; in find_group_orlov()
/linux-4.1.27/arch/ia64/kernel/
Dmca.c1604 struct task_struct *g, *t; in default_monarch_init_process() local
1625 g = s->prev_task; in default_monarch_init_process()
1626 if (g) { in default_monarch_init_process()
1627 if (g->pid) in default_monarch_init_process()
1628 printk(" %d", g->pid); in default_monarch_init_process()
1630 printk(" %d (cpu %d task 0x%p)", g->pid, task_cpu(g), g); in default_monarch_init_process()
1635 do_each_thread (g, t) { in default_monarch_init_process()
1638 } while_each_thread (g, t); in default_monarch_init_process()
/linux-4.1.27/tools/lib/lockdep/uinclude/linux/
Dirqflags.h36 #define trace_lock_acquire(a, b, c, d, e, f, g) argument
/linux-4.1.27/Documentation/hwmon/
Dlm7376 g(x) = 0.250 * [log(x/14) / log(2)]
78 where 'x' is the output from 'update_interval' and 'g(x)' is the
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-stmpe.txt9 due to different usage (e.g. touch, keypad)
/linux-4.1.27/arch/powerpc/include/asm/
Dmmu-hash32.h75 unsigned long g:1; /* Guarded */ member

12345