/linux-4.4.14/tools/perf/bench/ |
D | numa.c | 38 #define tprintf(x...) do { if (g && g->p.show_details >= 0) printf(x); } while (0) 43 #define dprintf(x...) do { if (g && g->p.show_details >= 1) printf(x); } while (0) 151 static struct global_info *g = NULL; variable 224 for (cpu = 0; cpu < g->p.nr_cpus; cpu++) in bind_to_cpu() 227 BUG_ON(target_cpu < 0 || target_cpu >= g->p.nr_cpus); in bind_to_cpu() 239 int cpus_per_node = g->p.nr_cpus/g->p.nr_nodes; in bind_to_node() 244 BUG_ON(cpus_per_node*g->p.nr_nodes != g->p.nr_cpus); in bind_to_node() 253 for (cpu = 0; cpu < g->p.nr_cpus; cpu++) in bind_to_node() 259 BUG_ON(cpu_stop > g->p.nr_cpus); in bind_to_node() 283 ret = set_mempolicy(MPOL_DEFAULT, NULL, g->p.nr_nodes-1); in mempol_restore() [all …]
|
/linux-4.4.14/drivers/pinctrl/qcom/ |
D | pinctrl-msm.c | 144 const struct msm_pingroup *g; in msm_pinmux_set_mux() local 149 g = &pctrl->soc->groups[group]; in msm_pinmux_set_mux() 151 for (i = 0; i < g->nfuncs; i++) { in msm_pinmux_set_mux() 152 if (g->funcs[i] == function) in msm_pinmux_set_mux() 156 if (WARN_ON(i == g->nfuncs)) in msm_pinmux_set_mux() 161 val = readl(pctrl->regs + g->ctl_reg); in msm_pinmux_set_mux() 162 val &= ~(0x7 << g->mux_bit); in msm_pinmux_set_mux() 163 val |= i << g->mux_bit; in msm_pinmux_set_mux() 164 writel(val, pctrl->regs + g->ctl_reg); in msm_pinmux_set_mux() 179 const struct msm_pingroup *g, in msm_config_reg() argument [all …]
|
/linux-4.4.14/drivers/pinctrl/ |
D | pinctrl-tegra.c | 271 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 …]
|
D | pinctrl-palmas.c | 575 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 …]
|
D | pinctrl-adi2.h | 48 #define ADI_PMX_FUNCTION(n, g) \ argument 51 .groups = g, \ 52 .num_groups = ARRAY_SIZE(g), \
|
D | pinctrl-tz1090.c | 895 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 …]
|
D | pinctrl-tz1090-pdc.c | 770 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.4.14/crypto/ |
D | sha256_generic.c | 57 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 …]
|
D | sha512_generic.c | 84 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 …]
|
D | gf128mul.c | 266 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.4.14/arch/x86/purgatory/ |
D | sha256.c | 50 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.4.14/arch/x86/include/asm/ |
D | desc_defs.h | 32 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
|
D | atomic64_32.h | 26 #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.4.14/drivers/staging/most/hdm-dim2/ |
D | dim2_hal.c | 91 static struct lld_global_vars_t g = { false }; variable 127 if ((g.dbr_map[i] & mask) == 0) { in alloc_dbr() 128 g.dbr_map[i] |= mask; in alloc_dbr() 147 g.dbr_map[block_idx / 32] &= ~mask; in free_dbr() 154 DIMCB_IoWrite(&g.dim2->MADR, ctr_addr); in dim2_read_ctr() 157 while ((DIMCB_IoRead(&g.dim2->MCTL) & 1) != 1) in dim2_read_ctr() 160 DIMCB_IoWrite(&g.dim2->MCTL, 0); /* clear transfer complete */ in dim2_read_ctr() 162 return DIMCB_IoRead((&g.dim2->MDAT0) + mdat_idx); in dim2_read_ctr() 169 DIMCB_IoWrite(&g.dim2->MCTL, 0); /* clear transfer complete */ in dim2_write_ctr_mask() 172 DIMCB_IoWrite(&g.dim2->MDAT0, value[0]); in dim2_write_ctr_mask() [all …]
|
/linux-4.4.14/drivers/pinctrl/sirf/ |
D | pinctrl-sirf.h | 16 #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.4.14/drivers/gpio/ |
D | gpio-davinci.c | 70 struct davinci_gpio_regs __iomem *g; in irq2regs() local 72 g = (__force struct davinci_gpio_regs __iomem *)irq_data_get_irq_chip_data(d); 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.4.14/arch/alpha/kernel/ |
D | module.c | 47 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.4.14/drivers/net/ethernet/mellanox/mlx5/core/ |
D | en_flow_table.c | 760 struct mlx5_flow_table_group *g; in mlx5e_create_main_flow_table() local 763 g = kcalloc(9, sizeof(*g), GFP_KERNEL); in mlx5e_create_main_flow_table() 764 if (!g) in mlx5e_create_main_flow_table() 767 g[0].log_sz = 3; in mlx5e_create_main_flow_table() 768 g[0].match_criteria_enable = MLX5_MATCH_OUTER_HEADERS; in mlx5e_create_main_flow_table() 769 MLX5_SET_TO_ONES(fte_match_param, g[0].match_criteria, in mlx5e_create_main_flow_table() 771 MLX5_SET_TO_ONES(fte_match_param, g[0].match_criteria, in mlx5e_create_main_flow_table() 774 g[1].log_sz = 1; in mlx5e_create_main_flow_table() 775 g[1].match_criteria_enable = MLX5_MATCH_OUTER_HEADERS; in mlx5e_create_main_flow_table() 776 MLX5_SET_TO_ONES(fte_match_param, g[1].match_criteria, in mlx5e_create_main_flow_table() [all …]
|
D | flow_table.c | 39 struct mlx5_flow_table_group g; member 133 struct mlx5_flow_table_group *g = &ft->group[i].g; in mlx5_create_flow_group_cmd() local 135 u32 end_ix = start_ix + (1 << g->log_sz) - 1; in mlx5_create_flow_group_cmd() 154 MLX5_SET_CFGI(in, match_criteria_enable, g->match_criteria_enable); in mlx5_create_flow_group_cmd() 156 memcpy(in_match_criteria, g->match_criteria, in mlx5_create_flow_group_cmd() 255 struct mlx5_flow_table_group *g = &ft->group[i].g; in mlx5_find_group() local 257 g->match_criteria, in mlx5_find_group() 260 g->match_criteria, in mlx5_find_group() 263 g->match_criteria, in mlx5_find_group() 266 if (g->match_criteria_enable != match_criteria_enable) in mlx5_find_group() [all …]
|
/linux-4.4.14/arch/ia64/include/asm/sn/ |
D | geo.h | 112 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.4.14/samples/bpf/ |
D | sockex3_kern.c | 122 static void update_stats(struct __sk_buff *skb, struct globals *g) in update_stats() argument 124 struct flow_keys key = g->flow; in update_stats() 139 struct globals *g, __u32 ip_proto) in parse_ip_proto() argument 179 g->flow.ports = load_word(skb, nhoff); in parse_ip_proto() 181 g->flow.ip_proto = ip_proto; in parse_ip_proto() 182 update_stats(skb, g); in parse_ip_proto() 191 struct globals *g = this_cpu_globals(); in PROG() local 194 if (!g) in PROG() 205 g->flow.src = load_word(skb, nhoff + offsetof(struct iphdr, saddr)); in PROG() 206 g->flow.dst = load_word(skb, nhoff + offsetof(struct iphdr, daddr)); in PROG() [all …]
|
/linux-4.4.14/drivers/pinctrl/freescale/ |
D | pinctrl-mxs.c | 202 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.4.14/drivers/gpu/host1x/ |
D | job.c | 203 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.4.14/drivers/media/platform/vivid/ |
D | vivid-tpg-colors.c | 1166 static void mult_matrix(double *r, double *g, double *b, const double m[3][3]) in mult_matrix() argument 1170 ir = m[0][0] * (*r) + m[0][1] * (*g) + m[0][2] * (*b); in mult_matrix() 1171 ig = m[1][0] * (*r) + m[1][1] * (*g) + m[1][2] * (*b); in mult_matrix() 1172 ib = m[2][0] * (*r) + m[2][1] * (*g) + m[2][2] * (*b); in mult_matrix() 1174 *g = ig; in mult_matrix() 1239 double *r, double *g, double *b) in csc() argument 1244 *g = transfer_srgb_to_rgb(*g); in csc() 1250 mult_matrix(r, g, b, rec709_to_240m); in csc() 1253 mult_matrix(r, g, b, rec709_to_170m); in csc() 1256 mult_matrix(r, g, b, rec709_to_ebu); in csc() [all …]
|
D | vivid-tpg.c | 465 static void rgb2ycbcr(const int m[3][3], int r, int g, int b, in rgb2ycbcr() argument 468 *y = ((m[0][0] * r + m[0][1] * g + m[0][2] * b) >> 16) + (y_offset << 4); in rgb2ycbcr() 469 *cb = ((m[1][0] * r + m[1][1] * g + m[1][2] * b) >> 16) + (128 << 4); in rgb2ycbcr() 470 *cr = ((m[2][0] * r + m[2][1] * g + m[2][2] * b) >> 16) + (128 << 4); in rgb2ycbcr() 473 static void color_to_ycbcr(struct tpg_data *tpg, int r, int g, int b, in color_to_ycbcr() argument 534 rgb2ycbcr(full ? bt601_full : bt601, r, g, b, y_offset, y, cb, cr); in color_to_ycbcr() 539 rgb2ycbcr(bt601, r, g, b, 16, y, cb, cr); in color_to_ycbcr() 544 rgb2ycbcr(rec709, r, g, b, 16, y, cb, cr); in color_to_ycbcr() 547 rgb2ycbcr(full ? bt2020_full : bt2020, r, g, b, y_offset, y, cb, cr); in color_to_ycbcr() 551 COEFF(0.6780, 255) * rec709_to_linear(g) + in color_to_ycbcr() [all …]
|
D | vivid-tpg-colors.h | 24 unsigned char r, g, b; member 28 int r, g, b; member
|
/linux-4.4.14/lib/ |
D | ts_bm.c | 100 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()
|
D | bch.c | 839 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 …]
|
D | inflate.c | 338 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.4.14/drivers/ide/ |
D | ide-gd.c | 69 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 …]
|
D | ide-cd.c | 1559 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 …]
|
D | ide-proc.c | 283 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.4.14/kernel/trace/ |
D | trace_events_filter_test.h | 11 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.4.14/include/linux/ |
D | lightnvm.h | 145 } g; member 290 l.ppa = ((u64)r.g.blk) << dev->ppaf.blk_offset; in generic_to_dev_addr() 291 l.ppa |= ((u64)r.g.pg) << dev->ppaf.pg_offset; in generic_to_dev_addr() 292 l.ppa |= ((u64)r.g.sec) << dev->ppaf.sect_offset; in generic_to_dev_addr() 293 l.ppa |= ((u64)r.g.pl) << dev->ppaf.pln_offset; in generic_to_dev_addr() 294 l.ppa |= ((u64)r.g.lun) << dev->ppaf.lun_offset; in generic_to_dev_addr() 295 l.ppa |= ((u64)r.g.ch) << dev->ppaf.ch_offset; in generic_to_dev_addr() 308 l.g.blk = (r.ppa >> dev->ppaf.blk_offset) & in dev_to_generic_addr() 310 l.g.pg |= (r.ppa >> dev->ppaf.pg_offset) & in dev_to_generic_addr() 312 l.g.sec |= (r.ppa >> dev->ppaf.sect_offset) & in dev_to_generic_addr() [all …]
|
D | mroute6.h | 105 #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.4.14/arch/powerpc/crypto/ |
D | sha256-spe-asm.S | 106 #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.4.14/sound/firewire/fireworks/ |
D | fireworks_proc.c | 133 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.4.14/arch/x86/crypto/ |
D | sha256-avx2-asm.S | 108 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 …]
|
D | sha512-avx2-asm.S | 90 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 …]
|
D | sha256-ssse3-asm.S | 103 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 …]
|
D | sha256-avx-asm.S | 111 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 …]
|
/linux-4.4.14/drivers/media/i2c/ |
D | tea6420.c | 54 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.4.14/kernel/ |
D | hung_task.c | 137 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.4.14/kernel/power/ |
D | process.c | 29 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.4.14/drivers/md/bcache/ |
D | extents.c | 175 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.4.14/arch/s390/kvm/ |
D | trace.h | 284 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.4.14/include/linux/usb/ |
D | gadget.h | 676 usb_ep_align_maybe(struct usb_gadget *g, struct usb_ep *ep, size_t len) in usb_ep_align_maybe() argument 678 return !g->quirk_ep_out_aligned_size ? len : in usb_ep_align_maybe() 687 static inline int gadget_is_altset_supported(struct usb_gadget *g) in gadget_is_altset_supported() argument 689 return !g->quirk_altset_not_supp; in gadget_is_altset_supported() 696 static inline int gadget_is_stall_supported(struct usb_gadget *g) in gadget_is_stall_supported() argument 698 return !g->quirk_stall_not_supp; in gadget_is_stall_supported() 705 static inline int gadget_is_zlp_supported(struct usb_gadget *g) in gadget_is_zlp_supported() argument 707 return !g->quirk_zlp_not_supp; in gadget_is_zlp_supported() 714 static inline int gadget_is_dualspeed(struct usb_gadget *g) in gadget_is_dualspeed() argument 716 return g->max_speed >= USB_SPEED_HIGH; in gadget_is_dualspeed() [all …]
|
/linux-4.4.14/arch/tile/lib/ |
D | strchr_32.c | 21 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()
|
D | strchr_64.c | 22 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.4.14/fs/proc/ |
D | array.c | 147 int g; in task_state() local 194 for (g = 0; g < group_info->ngroups; g++) in task_state() 196 from_kgid_munged(user_ns, GROUP_AT(group_info, g))); in task_state() 201 for (g = ns->level; g <= pid->level; g++) in task_state() 203 task_tgid_nr_ns(p, pid->numbers[g].ns)); in task_state() 205 for (g = ns->level; g <= pid->level; g++) in task_state() 207 task_pid_nr_ns(p, pid->numbers[g].ns)); in task_state() 209 for (g = ns->level; g <= pid->level; g++) in task_state() 211 task_pgrp_nr_ns(p, pid->numbers[g].ns)); in task_state() 213 for (g = ns->level; g <= pid->level; g++) in task_state() [all …]
|
/linux-4.4.14/include/crypto/ |
D | gf128mul.h | 173 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.4.14/drivers/gpu/host1x/hw/ |
D | debug_hw.c | 153 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()
|
D | channel_hw.c | 66 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.4.14/drivers/net/wireless/libertas/ |
D | Kconfig | 12 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.4.14/drivers/usb/musb/ |
D | musb_gadget.c | 167 if (!dma_mapping_error(&musb->g.dev, request->dma)) in musb_g_giveback() 1685 static struct usb_ep *musb_match_ep(struct usb_gadget *g, in musb_match_ep() argument 1695 ep = gadget_find_ep_by_name(g, "ep5in"); in musb_match_ep() 1697 ep = gadget_find_ep_by_name(g, "ep6out"); in musb_match_ep() 1701 ep = gadget_find_ep_by_name(g, "ep1in"); in musb_match_ep() 1703 ep = gadget_find_ep_by_name(g, "ep2out"); in musb_match_ep() 1709 if (ep && usb_gadget_ep_match_desc(g, ep, desc, ep_comp)) in musb_match_ep() 1718 static int musb_gadget_start(struct usb_gadget *g, 1720 static int musb_gadget_stop(struct usb_gadget *g); 1766 musb->g.ep0 = &ep->end_point; in init_peripheral_ep() [all …]
|
D | musb_gadget_ep0.c | 88 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 …]
|
D | musb_core.h | 422 struct usb_gadget g; /* the gadget */ member 450 static inline struct musb *gadget_to_musb(struct usb_gadget *g) in gadget_to_musb() argument 452 return container_of(g, struct musb, g); in gadget_to_musb()
|
/linux-4.4.14/net/netfilter/ipvs/ |
D | ip_vs_wrr.c | 78 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.4.14/drivers/lightnvm/ |
D | gennvm.c | 78 lun = &gn->luns[(dev->luns_per_chnl * ppa.g.ch) + ppa.g.lun]; in gennvm_block_bb() 185 ppa.g.ch = lun->vlun.chnl_id; in gennvm_blocks_init() 186 ppa.g.lun = lun->vlun.id; in gennvm_blocks_init() 364 if (unlikely(ppa->g.ch > dev->nr_chnls || in gennvm_blk_set_type() 365 ppa->g.lun > dev->luns_per_chnl || in gennvm_blk_set_type() 366 ppa->g.blk > dev->blks_per_lun)) { in gennvm_blk_set_type() 369 ppa->g.ch, dev->nr_chnls, in gennvm_blk_set_type() 370 ppa->g.lun, dev->luns_per_chnl, in gennvm_blk_set_type() 371 ppa->g.blk, dev->blks_per_lun); in gennvm_blk_set_type() 375 lun = &gn->luns[ppa->g.lun * ppa->g.ch]; in gennvm_blk_set_type() [all …]
|
/linux-4.4.14/tools/testing/selftests/vm/ |
D | thuge-gen.c | 60 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.4.14/arch/metag/mm/ |
D | mmu-meta2.c | 84 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.4.14/drivers/video/fbdev/ |
D | sm712.h | 100 #define pal_rgb(r, g, b, val) (((r & 0xf800) >> 8) | \ argument 101 ((g & 0xe000) >> 13) | \ 102 ((g & 0x1c00) << 3) | \ 110 #define pal_rgb(r, g, b, val) val argument
|
/linux-4.4.14/scripts/gdb/linux/ |
D | tasks.py | 25 t = g = init_task 33 if t == g: 36 t = g = utils.container_of(g['tasks']['next'],
|
/linux-4.4.14/lib/fonts/ |
D | fonts.c | 120 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.4.14/drivers/gpu/drm/sti/ |
D | sti_cursor.c | 81 u32 a, r, g, b; in sti_cursor_argb8888_to_clut8() local 88 g = (*src >> 14) & 3; in sti_cursor_argb8888_to_clut8() 90 *dst = a << 6 | r << 4 | g << 2 | b; in sti_cursor_argb8888_to_clut8() 100 unsigned int a, r, g, b; in sti_cursor_init() local 105 for (g = 0; g < 4; g++) in sti_cursor_init() 109 (g * 5) << 4 | in sti_cursor_init()
|
/linux-4.4.14/block/ |
D | ioprio.c | 65 struct task_struct *p, *g; in SYSCALL_DEFINE3() local 125 do_each_thread(g, p) { in SYSCALL_DEFINE3() 132 } while_each_thread(g, p); in SYSCALL_DEFINE3() 181 struct task_struct *g, *p; in SYSCALL_DEFINE2() local 223 do_each_thread(g, p) { in SYSCALL_DEFINE2() 234 } while_each_thread(g, p); in SYSCALL_DEFINE2()
|
/linux-4.4.14/drivers/video/fbdev/matrox/ |
D | matroxfb_maven.c | 488 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.4.14/drivers/crypto/nx/ |
D | nx-842.c | 73 #define NX842_CRYPTO_HEADER_SIZE(g) \ argument 75 sizeof(struct nx842_crypto_header_group) * (g)) 169 struct nx842_crypto_header_group *g, in compress() argument 243 g->padding = cpu_to_be16(dskip); in compress() 244 g->compressed_length = cpu_to_be32(dlen); in compress() 245 g->uncompressed_length = cpu_to_be32(slen); in compress() 346 struct nx842_crypto_header_group *g, in decompress() argument 350 unsigned int slen = be32_to_cpu(g->compressed_length); in decompress() 351 unsigned int required_len = be32_to_cpu(g->uncompressed_length); in decompress() 355 u16 padding = be16_to_cpu(g->padding); in decompress() [all …]
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | u_ether.h | 94 struct eth_dev *gether_setup_name(struct usb_gadget *g, 111 static inline struct eth_dev *gether_setup(struct usb_gadget *g, in gether_setup() argument 115 return gether_setup_name(g, dev_addr, host_addr, ethaddr, qmult, "usb"); in gether_setup() 154 void gether_set_gadget(struct net_device *net, struct usb_gadget *g);
|
D | f_obex.c | 263 static void obex_connect(struct gserial *g) in obex_connect() argument 265 struct f_obex *obex = port_to_obex(g); in obex_connect() 266 struct usb_composite_dev *cdev = g->func.config->cdev; in obex_connect() 269 status = usb_function_activate(&g->func); in obex_connect() 276 static void obex_disconnect(struct gserial *g) in obex_disconnect() argument 278 struct f_obex *obex = port_to_obex(g); in obex_disconnect() 279 struct usb_composite_dev *cdev = g->func.config->cdev; in obex_disconnect() 282 status = usb_function_deactivate(&g->func); in obex_disconnect()
|
D | u_ether.c | 768 struct eth_dev *gether_setup_name(struct usb_gadget *g, in gether_setup_name() argument 795 dev_warn(&g->dev, in gether_setup_name() 798 dev_warn(&g->dev, in gether_setup_name() 808 dev->gadget = g; in gether_setup_name() 809 SET_NETDEV_DEV(net, &g->dev); in gether_setup_name() 814 dev_dbg(&g->dev, "register_netdev failed, %d\n", status); in gether_setup_name() 873 struct usb_gadget *g; in gether_register_netdev() local 880 g = dev->gadget; in gether_register_netdev() 883 dev_dbg(&g->dev, "register_netdev failed, %d\n", status); in gether_register_netdev() 908 void gether_set_gadget(struct net_device *net, struct usb_gadget *g) in gether_set_gadget() argument [all …]
|
D | u_hid.h | 39 int ghid_setup(struct usb_gadget *g, int count);
|
D | u_phonet.h | 24 void gphonet_set_gadget(struct net_device *net, struct usb_gadget *g);
|
/linux-4.4.14/drivers/video/fbdev/omap2/displays-new/ |
D | panel-tpo-td043mtea1.c | 253 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.4.14/drivers/pinctrl/intel/ |
D | pinctrl-intel.h | 88 #define FUNCTION(n, g) \ argument 91 .groups = (g), \ 92 .ngroups = ARRAY_SIZE((g)), \
|
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/ |
D | lio_main.c | 183 struct octnic_gather *g; member 795 struct octnic_gather *g; in delete_glist() local 798 g = (struct octnic_gather *) in delete_glist() 800 if (g) { in delete_glist() 801 if (g->sg) in delete_glist() 802 kfree((void *)((unsigned long)g->sg - in delete_glist() 803 g->adjust)); in delete_glist() 804 kfree(g); in delete_glist() 806 } while (g); in delete_glist() 816 struct octnic_gather *g; in setup_glist() local [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | dwc2.txt | 23 - 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.
|
/linux-4.4.14/Documentation/usb/ |
D | gadget_configfs.txt | 22 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.4.14/drivers/block/ |
D | sunvdc.c | 750 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 …]
|
D | swim.c | 574 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.4.14/Documentation/ |
D | init.txt | 23 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.
|
D | initrd.txt | 56 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.4.14/Documentation/networking/ |
D | xfrm_proc.txt | 26 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
|
D | secid.txt | 3 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.4.14/drivers/platform/x86/ |
D | wmi.c | 430 static void wmi_dump_wdg(const struct guid_block *g) in wmi_dump_wdg() argument 432 pr_info("%pUL:\n", g->guid); in wmi_dump_wdg() 433 pr_info("\tobject_id: %c%c\n", g->object_id[0], g->object_id[1]); in wmi_dump_wdg() 434 pr_info("\tnotify_id: %02X\n", g->notify_id); in wmi_dump_wdg() 435 pr_info("\treserved: %02X\n", g->reserved); in wmi_dump_wdg() 436 pr_info("\tinstance_count: %d\n", g->instance_count); in wmi_dump_wdg() 437 pr_info("\tflags: %#x", g->flags); in wmi_dump_wdg() 438 if (g->flags) { in wmi_dump_wdg() 439 if (g->flags & ACPI_WMI_EXPENSIVE) in wmi_dump_wdg() 441 if (g->flags & ACPI_WMI_METHOD) in wmi_dump_wdg() [all …]
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | kirkwood-guruplug-server-plus.dts | 26 pmx_led_health_g: pmx-led-health-g { 34 pmx_led_wmode_g: pmx-led-wmode-g { 65 health-g { 73 wmode-g {
|
D | kirkwood-dir665.dts | 61 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";
|
D | tegra30-apalis-eval.dts | 72 * 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.4.14/drivers/misc/sgi-gru/ |
D | grutables.h | 485 #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.4.14/Documentation/sound/alsa/soc/ |
D | dapm.txt | 30 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 …]
|
D | machine.txt | 5 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.
|
D | overview.txt | 5 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).
|
D | codec.txt | 35 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
|
D | clocking.txt | 13 (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.4.14/drivers/gpu/drm/rcar-du/ |
D | rcar_du_regs.h | 292 #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.4.14/kernel/debug/kdb/ |
D | kdb_private.h | 234 #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
|
D | kdb_bt.c | 118 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.4.14/drivers/media/usb/gspca/stv06xx/ |
D | stv06xx_hdcs.c | 263 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.4.14/Documentation/acpi/ |
D | method-customizing.txt | 26 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.4.14/tools/perf/tests/ |
D | Build | 42 $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@ 49 $(Q)sed -e 's/"/\\"/g' -e 's/\(.*\)/"\1\\n"/g' $< >> $@
|
/linux-4.4.14/drivers/net/wireless/b43/ |
D | tables.c | 381 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()
|
D | lo.c | 178 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 …]
|
D | phy_g.c | 220 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.4.14/arch/m68k/fpsp040/ |
D | round.S | 33 | 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 …]
|
/linux-4.4.14/drivers/sh/intc/ |
D | handle.c | 21 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.4.14/arch/powerpc/boot/dts/fsl/ |
D | p5040si-post.dtsi | 427 /include/ "qoriq-fman-0-1g-0.dtsi" 428 /include/ "qoriq-fman-0-1g-1.dtsi" 429 /include/ "qoriq-fman-0-1g-2.dtsi" 430 /include/ "qoriq-fman-0-1g-3.dtsi" 431 /include/ "qoriq-fman-0-1g-4.dtsi" 432 /include/ "qoriq-fman-0-10g-0.dtsi" 454 /include/ "qoriq-fman-1-1g-0.dtsi" 455 /include/ "qoriq-fman-1-1g-1.dtsi" 456 /include/ "qoriq-fman-1-1g-2.dtsi" 457 /include/ "qoriq-fman-1-1g-3.dtsi" [all …]
|
D | qoriq-fman3-0-10g-1.dtsi | 2 * QorIQ FMan v3 10g port #1 device tree stub [ controller @ offset 0x400000 ] 40 fsl,fman-10g-port; 47 fsl,fman-10g-port;
|
D | qoriq-fman3-1-10g-0.dtsi | 2 * QorIQ FMan v3 10g port #0 device tree stub [ controller @ offset 0x500000 ] 40 fsl,fman-10g-port; 47 fsl,fman-10g-port;
|
D | qoriq-fman3-0-10g-0-best-effort.dtsi | 2 * QorIQ FMan v3 1g port #0 device tree stub [ controller @ offset 0x400000 ] 40 fsl,fman-10g-port; 48 fsl,fman-10g-port;
|
D | qoriq-fman3-0-10g-0.dtsi | 2 * QorIQ FMan v3 10g port #0 device tree stub [ controller @ offset 0x400000 ] 40 fsl,fman-10g-port; 47 fsl,fman-10g-port;
|
D | qoriq-fman3-0-10g-1-best-effort.dtsi | 2 * QorIQ FMan v3 1g port #1 device tree stub [ controller @ offset 0x400000 ] 40 fsl,fman-10g-port; 48 fsl,fman-10g-port;
|
D | qoriq-fman3-1-10g-1.dtsi | 2 * QorIQ FMan v3 10g port #1 device tree stub [ controller @ offset 0x500000 ] 40 fsl,fman-10g-port; 47 fsl,fman-10g-port;
|
D | p4080si-post.dtsi | 518 /include/ "qoriq-fman-0-1g-0.dtsi" 519 /include/ "qoriq-fman-0-1g-1.dtsi" 520 /include/ "qoriq-fman-0-1g-2.dtsi" 521 /include/ "qoriq-fman-0-1g-3.dtsi" 522 /include/ "qoriq-fman-0-10g-0.dtsi" 541 /include/ "qoriq-fman-1-1g-0.dtsi" 542 /include/ "qoriq-fman-1-1g-1.dtsi" 543 /include/ "qoriq-fman-1-1g-2.dtsi" 544 /include/ "qoriq-fman-1-1g-3.dtsi" 545 /include/ "qoriq-fman-1-10g-0.dtsi"
|
D | t4240si-post.dtsi | 1072 /include/ "qoriq-fman3-0-1g-0.dtsi" 1073 /include/ "qoriq-fman3-0-1g-1.dtsi" 1074 /include/ "qoriq-fman3-0-1g-2.dtsi" 1075 /include/ "qoriq-fman3-0-1g-3.dtsi" 1076 /include/ "qoriq-fman3-0-1g-4.dtsi" 1077 /include/ "qoriq-fman3-0-1g-5.dtsi" 1078 /include/ "qoriq-fman3-0-10g-0.dtsi" 1079 /include/ "qoriq-fman3-0-10g-1.dtsi" 1115 /include/ "qoriq-fman3-1-1g-0.dtsi" 1116 /include/ "qoriq-fman3-1-1g-1.dtsi" [all …]
|
D | p5020si-post.dtsi | 453 /include/ "qoriq-fman-0-1g-0.dtsi" 454 /include/ "qoriq-fman-0-1g-1.dtsi" 455 /include/ "qoriq-fman-0-1g-2.dtsi" 456 /include/ "qoriq-fman-0-1g-3.dtsi" 457 /include/ "qoriq-fman-0-1g-4.dtsi" 458 /include/ "qoriq-fman-0-10g-0.dtsi"
|
D | p2041si-post.dtsi | 435 /include/ "qoriq-fman-0-1g-0.dtsi" 436 /include/ "qoriq-fman-0-1g-1.dtsi" 437 /include/ "qoriq-fman-0-1g-2.dtsi" 438 /include/ "qoriq-fman-0-1g-3.dtsi" 439 /include/ "qoriq-fman-0-1g-4.dtsi" 440 /include/ "qoriq-fman-0-10g-0.dtsi"
|
/linux-4.4.14/net/can/ |
D | Kconfig | 28 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.4.14/drivers/pinctrl/samsung/ |
D | pinctrl-samsung.h | 96 #define PMX_FUNC(n, g) \ argument 99 .groups = g, \ 100 .num_groups = ARRAY_SIZE(g), \
|
/linux-4.4.14/Documentation/devicetree/bindings/power_supply/ |
D | ti,bq24735.txt | 15 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.4.14/arch/x86/kernel/ |
D | tboot.c | 256 #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.4.14/drivers/mtd/ubi/ |
D | gluebi.c | 302 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()
|
D | debug.h | 38 #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.4.14/Documentation/trace/ |
D | events-power.txt | 53 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.4.14/arch/powerpc/platforms/pseries/ |
D | power.c | 59 static struct attribute *g[] = { variable 65 .attrs = g,
|
/linux-4.4.14/Documentation/vDSO/ |
D | parse_vdso.c | 83 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.4.14/Documentation/input/ |
D | cma3000_d0x.txt | 27 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.4.14/drivers/usb/gadget/udc/ |
D | s3c2410_udc.h | 98 #define to_s3c2410(g) (container_of((g), struct s3c2410_udc, gadget)) argument
|
D | at91_udc.h | 153 static inline struct at91_udc *to_udc(struct usb_gadget *g) in to_udc() argument 155 return container_of(g, struct at91_udc, gadget); in to_udc()
|
D | fotg210.h | 253 #define gadget_to_fotg210(g) container_of((g), struct fotg210_udc, gadget) argument
|
D | pxa25x_udc.h | 129 #define to_pxa25x(g) (container_of((g), struct pxa25x_udc, gadget)) argument
|
/linux-4.4.14/Documentation/devicetree/bindings/serial/ |
D | arc-uart.txt | 10 e.g. 23 e.g.
|
/linux-4.4.14/Documentation/devicetree/bindings/leds/ |
D | leds-tlc591xx.txt | 30 2g@2 { 31 label = "wrt1900ac:white:2g";
|
/linux-4.4.14/drivers/pnp/pnpbios/ |
D | Kconfig | 11 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.4.14/fs/dlm/ |
D | config.c | 340 static struct config_group *make_cluster(struct config_group *g, in make_cluster() argument 392 static void drop_cluster(struct config_group *g, struct config_item *i) in drop_cluster() argument 417 static struct config_group *make_space(struct config_group *g, const char *name) in make_space() argument 449 static void drop_space(struct config_group *g, struct config_item *i) in drop_space() argument 473 static struct config_item *make_comm(struct config_group *g, const char *name) in make_comm() argument 493 static void drop_comm(struct config_group *g, struct config_item *i) in drop_comm() argument 510 static struct config_item *make_node(struct config_group *g, const char *name) in make_node() argument 512 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); in make_node() 532 static void drop_node(struct config_group *g, struct config_item *i) in drop_node() argument 534 struct dlm_space *sp = config_item_to_space(g->cg_item.ci_parent); in drop_node()
|
/linux-4.4.14/drivers/media/usb/usbvision/ |
D | usbvision-core.c | 886 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.4.14/Documentation/devicetree/bindings/media/ |
D | video-interfaces.txt | 6 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
|
D | ti,omap3isp.txt | 19 ti,phy-type : 0 -- OMAP3ISP_PHY_TYPE_COMPLEX_IO (e.g. 3430) 20 1 -- OMAP3ISP_PHY_TYPE_CSIPHY (e.g. 3630)
|
/linux-4.4.14/fs/ |
D | fs_struct.c | 58 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()
|
D | coredump.c | 311 struct task_struct *g, *p; in zap_threads() local 360 for_each_process(g) { in zap_threads() 361 if (g == tsk->group_leader) in zap_threads() 363 if (g->flags & PF_KTHREAD) in zap_threads() 366 for_each_thread(g, p) { in zap_threads()
|
/linux-4.4.14/Documentation/leds/ |
D | leds-blinkm.txt | 35 E.g.: 53 E.g. below /sys/bus/i2c/devices/6-0009/blinkm 61 E.g.:
|
/linux-4.4.14/drivers/dma/ |
D | iop-adma.c | 624 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.4.14/Documentation/RCU/ |
D | trace.txt | 59 …0!c=30455 g=30456 cnq=1/0:1 dt=126535/140000000000000/0 df=2002 of=4 ql=0/0 qs=N... b=10 ci=74572 … 60 …1!c=30719 g=30720 cnq=1/0:0 dt=132007/140000000000000/0 df=1874 of=10 ql=0/0 qs=N... b=10 ci=12320… 61 …2!c=30150 g=30151 cnq=1/1:1 dt=138537/140000000000000/0 df=1707 of=8 ql=0/0 qs=N... b=10 ci=80132 … 62 …3 c=31249 g=31250 cnq=1/1:0 dt=107255/140000000000000/0 df=1749 of=6 ql=0/450 qs=NRW. b=10 ci=1517… 63 …4!c=29502 g=29503 cnq=1/0:1 dt=83647/140000000000000/0 df=965 of=5 ql=0/0 qs=N... b=10 ci=65643 nc… 64 …5 c=31201 g=31202 cnq=1/0:1 dt=70422/0/0 df=535 of=7 ql=0/0 qs=.... b=10 ci=58500 nci=0 co=764 ca=… 65 …6!c=30253 g=30254 cnq=1/0:1 dt=95363/140000000000000/0 df=780 of=5 ql=0/0 qs=N... b=10 ci=100607 n… 66 …7 c=31178 g=31178 cnq=1/0:0 dt=91536/0/0 df=547 of=4 ql=0/0 qs=.... b=10 ci=109819 nci=0 co=1115 c… 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.4.14/drivers/usb/gadget/ |
D | config.c | 168 struct usb_gadget *g = f->config->cdev->gadget; in usb_assign_descriptors() local 175 if (hs && gadget_is_dualspeed(g)) { in usb_assign_descriptors() 180 if (ss && gadget_is_superspeed(g)) { in usb_assign_descriptors()
|
/linux-4.4.14/Documentation/devicetree/bindings/ |
D | common-properties.txt | 10 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,
|
D | chosen.txt | 13 with a stdout-path property under /chosen, as described in ePAPR, e.g. 53 is being booted by kexec, as the booting environment may differ (e.g.
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | Joystick.txt | 40 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.4.14/tools/perf/Documentation/ |
D | intel-pt.txt | 52 Data is captured with 'perf record' e.g. to trace 'ls' userspace-only: 56 And profiled with 'perf report' e.g. 76 selected for reporting. e.g. sample every microsecond 133 An enhancement has been made to allow default "config" e.g. the option 190 perf_event_attr is displayed if the -vv option is used e.g. 252 valid values e.g. bit 2 set means value 2 is valid. 259 e.g. value 3 means 16KiB bytes between PSBs 262 will give a list of valid values e.g. 302 valid values e.g. bit 2 set means value 2 is valid. 308 e.g. value 3 means one eighth of CTC-frequency [all …]
|
D | perf-probe.txt | 66 classes(e.g. [a-z], [!A-Z]). 157 …g. var->field, var.field2), local array with fixed index (e.g. array[1], var->array[0], var->point… 179 … pattern and target. So this accepts wildcards('*', '?') and character classes(e.g. [a-z], [!A-Z]). 181 e.g. 191 e.g.
|
/linux-4.4.14/Documentation/devicetree/bindings/thermal/ |
D | imx-thermal.txt | 9 control registers, e.g. ANATOP on imx6q. 11 calibration data, e.g. OCOTP on imx6q. The details about calibration data
|
/linux-4.4.14/mm/ |
D | vmacache.c | 18 struct task_struct *g, *p; in vmacache_flush_all() local 33 for_each_process_thread(g, p) { in vmacache_flush_all()
|
/linux-4.4.14/drivers/usb/dwc3/ |
D | gadget.h | 28 #define gadget_to_dwc(g) (container_of(g, struct dwc3, gadget)) argument
|
/linux-4.4.14/drivers/pinctrl/nomadik/ |
D | pinctrl-nomadik.c | 1669 const struct nmk_pingroup *g; in nmk_pmx_set() local 1676 g = &npct->soc->groups[group]; in nmk_pmx_set() 1678 if (g->altsetting < 0) in nmk_pmx_set() 1681 dev_dbg(npct->dev, "enable group %s, %u pins\n", g->name, g->npins); in nmk_pmx_set() 1704 glitch = ((g->altsetting & NMK_GPIO_ALT_C) == NMK_GPIO_ALT_C); in nmk_pmx_set() 1716 for (i = 0; i < g->npins; i++) in nmk_pmx_set() 1717 slpm[g->pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->pins[i]); in nmk_pmx_set() 1721 for (i = 0; i < g->npins; i++) { in nmk_pmx_set() 1725 nmk_chip = find_nmk_gpio_from_pin(g->pins[i]); in nmk_pmx_set() 1729 g->pins[i], g->name, i); in nmk_pmx_set() [all …]
|
D | pinctrl-abx500.c | 703 const struct abx500_pingroup *g; in abx500_pmx_set() local 707 g = &pct->soc->groups[group]; in abx500_pmx_set() 708 if (g->altsetting < 0) in abx500_pmx_set() 711 dev_dbg(pct->dev, "enable group %s, %u pins\n", g->name, g->npins); in abx500_pmx_set() 713 for (i = 0; i < g->npins; i++) { in abx500_pmx_set() 715 g->pins[i], g->altsetting); in abx500_pmx_set() 717 ret = abx500_set_mode(pctldev, chip, g->pins[i], g->altsetting); in abx500_pmx_set()
|
/linux-4.4.14/crypto/async_tx/ |
D | async_raid6_recov.c | 203 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.4.14/net/ceph/ |
D | Kconfig | 26 execution slightly when debug call sites are enabled (e.g., 37 If you say Y here, hostnames (e.g. monitor addresses) will
|
/linux-4.4.14/Documentation/devicetree/bindings/display/ |
D | simple-framebuffer.txt | 30 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).
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-driver-genwqe | 4 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'.
|
D | sysfs-driver-hid-roccat-kone | 35 left. E.g. a returned value of 138 means 1.38 100 1 5g 101 2 10g 102 3 15g 103 4 20g
|
D | sysfs-class-net | 39 Format is a string, e.g: 00:11:22:33:44:55 for an Ethernet MAC 59 care when forwarding control frames e.g. 802.1X-PAE or LLDP. 67 string, e.g: ff:ff:ff:ff:ff:ff for an Ethernet broadcast MAC 80 Note: some special devices, e.g: bonding and team drivers will 91 stacked (e.g: VLAN interfaces) but still have the same MAC 106 authentication is performed (e.g: 802.1x). 'link_mode' attribute
|
D | sysfs-class-net-statistics | 33 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).
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ |
D | at91-clock.txt | 229 e.g. "<&ck32k>, <&main>, <&plla>, <&pllb>". 232 e.g. output = <0 133000000>; <=> 0 to 133MHz. 235 e.g. divisors = <1 2 4 6>; 237 PRES field as CLOCK_DIV3 (e.g sam9x5). 253 e.g. clocks = <&mck>; 293 e.g. input = <1 32000000>; <=> 1 to 32MHz. 344 e.g. clocks = <&clk32k>, <&main>, <&plla>, <&pllb>; 376 e.g. clocks = <&plladiv>, <&utmi>; 422 e.g. clocks = <&pllb>; 425 e.g. divisors = <1 2 4 0>; [all …]
|
D | renesas,rz-cpg-clocks.txt | 18 "i", and "g" 38 clock-output-names = "pll", "i", "g";
|
/linux-4.4.14/include/uapi/linux/ |
D | map_to_7segment.h | 97 #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.4.14/Documentation/devicetree/bindings/phy/ |
D | ti-phy.txt | 9 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.4.14/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/ |
D | SchedGui.py | 89 (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.4.14/arch/arm/crypto/ |
D | sha512-core.S_shipped | 231 ldr r11,[sp,#48+0] @ g.lo 233 ldr r12,[sp,#48+4] @ g.hi 245 eor r10,r10,r12 @ Ch(e,f,g) 250 adc r4,r4,r10 @ T += Ch(e,f,g) 371 ldr r11,[sp,#48+0] @ g.lo 373 ldr r12,[sp,#48+4] @ g.hi 385 eor r10,r10,r12 @ Ch(e,f,g) 390 adc r4,r4,r10 @ T += Ch(e,f,g) 559 vbsl d29,d21,d22 @ Ch(e,f,g) 596 vbsl d29,d20,d21 @ Ch(e,f,g) [all …]
|
D | sha256-armv4.pl | 65 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);
|
D | sha256-core.S_shipped | 148 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.4.14/Documentation/filesystems/ |
D | sysfs-pci.txt | 61 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.4.14/drivers/media/dvb-frontends/ |
D | stb6100.c | 342 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.4.14/Documentation/DocBook/ |
D | Makefile | 214 sed -e "s/&/\\&/g" \ 215 -e "s/</\\</g" \ 216 -e "s/>/\\>/g"; \
|
/linux-4.4.14/drivers/media/usb/gspca/ |
D | etoms.c | 642 __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.4.14/Documentation/isdn/ |
D | syncPPP.FAQ | 22 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.4.14/net/decnet/ |
D | TODO | 17 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.4.14/Documentation/pcmcia/ |
D | devicetable.txt | 14 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.4.14/Documentation/scsi/ |
D | bnx2fc.txt | 11 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.4.14/Documentation/devicetree/bindings/bus/ |
D | brcm,bus-axi.txt | 19 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.4.14/drivers/gpu/drm/msm/mdp/ |
D | mdp_format.c | 74 #define FMT(name, a, r, g, b, e0, e1, e2, e3, alpha, tight, c, cnt, fp, cs, yuv) { \ argument 78 .bpc_g = BPC ## g, \
|
/linux-4.4.14/Documentation/video4linux/ |
D | soc-camera.txt | 12 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.4.14/tools/perf/tests/attr/ |
D | test-record-graph-default | 3 args = -g kill >/dev/null 2>&1
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 77 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.4.14/Documentation/video4linux/bttv/ |
D | Tuners | 15 SAMSUNG Tuner identification: (e.g. TCPM9091PD27) 42 Philips Tuner identification: (e.g. FM1216MF) 65 Temic Tuner identification: (.e.g 4006FH5)
|
D | PROBLEMS | 18 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
|
/linux-4.4.14/Documentation/networking/mac80211_hwsim/ |
D | hostapd.conf | 4 hw_mode=g
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | sysfs-firmware-opal-dump | 25 in hex (e.g. '0x01') 32 e.g. '0x02 System/Platform Dump'
|
/linux-4.4.14/drivers/pinctrl/uniphier/ |
D | pinctrl-uniphier.h | 166 #define UNIPHIER_PINCTRL_PIN(a, b, c, d, e, f, g) \ argument 170 .drv_data = (void *)UNIPHIER_PIN_ATTR_PACKED(c, d, e, f, g), \
|
/linux-4.4.14/net/irda/ |
D | irqueue.c | 216 __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.4.14/Documentation/accounting/ |
D | getdelays.c | 68 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.4.14/fs/gfs2/ |
D | dir.c | 470 struct dirent_gather *g = opaque; in gfs2_dirent_gather() local 472 g->pdent[g->offset++] = dent; in gfs2_dirent_gather() 1309 struct dirent_gather g; in gfs2_dir_read_leaf() local 1342 g.pdent = darr; in gfs2_dir_read_leaf() 1343 g.offset = 0; in gfs2_dir_read_leaf() 1355 gfs2_dirent_gather, NULL, &g); in gfs2_dir_read_leaf() 1359 if (entries2 != g.offset) { in gfs2_dir_read_leaf() 1364 entries2, g.offset); in gfs2_dir_read_leaf() 1485 struct dirent_gather g; in gfs2_dir_read() local 1510 g.pdent = darr; in gfs2_dir_read() [all …]
|
/linux-4.4.14/drivers/devfreq/ |
D | devfreq.c | 656 struct devfreq_governor *g; in devfreq_add_governor() local 666 g = find_devfreq_governor(governor->name); in devfreq_add_governor() 667 if (!IS_ERR(g)) { in devfreq_add_governor() 669 g->name); in devfreq_add_governor() 721 struct devfreq_governor *g; in devfreq_remove_governor() local 731 g = find_devfreq_governor(governor->name); in devfreq_remove_governor() 732 if (IS_ERR(g)) { in devfreq_remove_governor() 735 err = PTR_ERR(g); in devfreq_remove_governor()
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | README | 21 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.4.14/fs/xfs/ |
D | xfs_quota.h | 131 #define xfs_qm_vop_create_dqattach(tp, ip, u, g, p) argument 134 #define xfs_qm_vop_chown_reserve(tp, ip, u, g, p, fl) (0) argument
|
/linux-4.4.14/drivers/scsi/esas2r/ |
D | esas2r_main.c | 1376 struct atto_vda_grp_info *g; in esas2r_nuxi_mgt_data() local 1438 g = (struct atto_vda_grp_info *)data; in esas2r_nuxi_mgt_data() 1440 g->capacity = le64_to_cpu(g->capacity); in esas2r_nuxi_mgt_data() 1441 g->block_size = le32_to_cpu(g->block_size); in esas2r_nuxi_mgt_data() 1442 g->interleave = le32_to_cpu(g->interleave); in esas2r_nuxi_mgt_data() 1443 g->features = le16_to_cpu(g->features); in esas2r_nuxi_mgt_data() 1446 g->members[i] = le16_to_cpu(g->members[i]); in esas2r_nuxi_mgt_data()
|
/linux-4.4.14/drivers/usb/gadget/legacy/ |
D | zero.c | 159 struct usb_gadget *g = cdev->gadget; in zero_autoresume() local 169 if (g->speed != USB_SPEED_UNKNOWN) { in zero_autoresume() 170 int status = usb_gadget_wakeup(g); in zero_autoresume()
|
/linux-4.4.14/Documentation/devicetree/bindings/clock/ti/ |
D | divider.txt | 8 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.4.14/Documentation/fb/ |
D | framebuffer.txt | 49 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.4.14/kernel/gcov/ |
D | Kconfig | 9 This option enables gcov-based code profiling (e.g. for code coverage 19 For a single file (e.g. main.o):
|
/linux-4.4.14/Documentation/devicetree/bindings/i2c/ |
D | i2c.txt | 15 For other required properties e.g. to describe register sets, 21 bit address. It is needed to avoid the ambiguity between e.g. a 7 bit address
|
/linux-4.4.14/Documentation/arm64/ |
D | legacy_instructions.txt | 14 have been obsoleted in the architecture, e.g., SWP 21 instructions, .e.g., CP15 barriers
|
/linux-4.4.14/drivers/misc/vmw_vmci/ |
D | vmci_queue_pair.c | 159 } 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 …]
|