/linux/tools/perf/util/ |
A D | ordered-events.c | 25 oe->last = new; in queue_event() 69 if (oe->cur_alloc_size < oe->max_alloc_size) { in __dup_event() 144 new = &oe->buffer->event[oe->buffer_idx]; in alloc_event() 155 oe->cur_alloc_size, size, oe->max_alloc_size); in alloc_event() 158 list_add(&oe->buffer->list, &oe->to_free); in alloc_event() 228 u64 last_ts = oe->last ? oe->last->timestamp : 0ULL; in do_flush() 244 ret = oe->deliver(oe, iter); in do_flush() 327 oe->next_flush = oe->max_timestamp; in __ordered_events__flush() 399 ordered_events_buffer__free(oe->buffer, oe->buffer_idx, oe); in ordered_events__free() 414 memset(oe, '\0', sizeof(*oe)); in ordered_events__reinit() [all …]
|
A D | ordered-events.h | 27 typedef int (*ordered_events__deliver_t)(struct ordered_events *oe, 55 int ordered_events__queue(struct ordered_events *oe, union perf_event *event, 58 int ordered_events__flush(struct ordered_events *oe, enum oe_flush how); 59 int ordered_events__flush_time(struct ordered_events *oe, u64 timestamp); 62 void ordered_events__free(struct ordered_events *oe); 63 void ordered_events__reinit(struct ordered_events *oe); 64 u64 ordered_events__first_time(struct ordered_events *oe); 67 void ordered_events__set_alloc_size(struct ordered_events *oe, u64 size) in ordered_events__set_alloc_size() argument 69 oe->max_alloc_size = size; in ordered_events__set_alloc_size() 73 void ordered_events__set_copy_on_queue(struct ordered_events *oe, bool copy) in ordered_events__set_copy_on_queue() argument [all …]
|
/linux/fs/omfs/ |
A D | file.c | 24 oe->e_next = ~cpu_to_be64(0ULL); in omfs_make_empty_table() 25 oe->e_extent_count = cpu_to_be32(1), in omfs_make_empty_table() 26 oe->e_fill = cpu_to_be32(0x22), in omfs_make_empty_table() 28 oe->e_entry.e_blocks = ~cpu_to_be64(0ULL); in omfs_make_empty_table() 34 struct omfs_extent *oe; in omfs_shrink_inode() local 70 next = be64_to_cpu(oe->e_next); in omfs_shrink_inode() 71 entry = &oe->e_entry; in omfs_shrink_inode() 179 be32_add_cpu(&oe->e_extent_count, 1); in omfs_grow_extent() 226 struct omfs_extent *oe; in omfs_get_block() local 247 next = be64_to_cpu(oe->e_next); in omfs_get_block() [all …]
|
/linux/fs/overlayfs/ |
A D | util.c | 91 if (oe) in ovl_alloc_entry() 94 return oe; in ovl_alloc_entry() 139 if (oe->numlower) { in ovl_path_type() 147 if (oe->numlower > 1) in ovl_path_type() 165 if (oe->numlower) { in ovl_path_lower() 177 if (oe->numlower) { in ovl_path_lowerdata() 178 path->mnt = oe->lowerstack[oe->numlower - 1].layer->mnt; in ovl_path_lowerdata() 179 path->dentry = oe->lowerstack[oe->numlower - 1].dentry; in ovl_path_lowerdata() 206 return oe->numlower ? oe->lowerstack[0].dentry : NULL; in ovl_dentry_lower() 213 return oe->numlower ? oe->lowerstack[0].layer : NULL; in ovl_layer_lower() [all …]
|
A D | export.c | 79 struct ovl_entry *oe = OVL_E(dentry); in ovl_connectable_layer() local 83 return oe->numlower; in ovl_connectable_layer() 94 return oe->lowerstack[0].layer->idx; in ovl_connectable_layer() 289 struct ovl_entry *oe; in ovl_obtain_alias() local 317 oe = ovl_alloc_entry(lower ? 1 : 0); in ovl_obtain_alias() 318 if (!oe) in ovl_obtain_alias() 322 oe->lowerstack->dentry = dget(lower); in ovl_obtain_alias() 325 dentry->d_fsdata = oe; in ovl_obtain_alias() 345 struct ovl_entry *oe = dentry->d_fsdata; in ovl_dentry_real_at() local 351 for (i = 0; i < oe->numlower; i++) { in ovl_dentry_real_at() [all …]
|
A D | super.c | 73 if (oe) { in ovl_dentry_release() 75 kfree_rcu(oe, rcu); in ovl_dentry_release() 1800 struct ovl_entry *oe; in ovl_get_lowerstack() local 1833 if (!oe) in ovl_get_lowerstack() 1846 return oe; in ovl_get_lowerstack() 1849 oe = ERR_PTR(err); in ovl_get_lowerstack() 1943 root->d_fsdata = oe; in ovl_get_root() 1968 struct ovl_entry *oe; in ovl_fill_super() local 2082 err = PTR_ERR(oe); in ovl_fill_super() 2083 if (IS_ERR(oe)) in ovl_fill_super() [all …]
|
A D | namei.c | 785 struct ovl_entry *oe = dentry->d_fsdata; in ovl_path_next() local 791 return oe->numlower ? 1 : -1; in ovl_path_next() 794 BUG_ON(idx > oe->numlower); in ovl_path_next() 795 path->dentry = oe->lowerstack[idx - 1].dentry; in ovl_path_next() 796 path->mnt = oe->lowerstack[idx - 1].layer->mnt; in ovl_path_next() 798 return (idx < oe->numlower) ? idx + 1 : -1; in ovl_path_next() 825 struct ovl_entry *oe; in ovl_lookup() local 1060 oe = ovl_alloc_entry(ctr); in ovl_lookup() 1062 if (!oe) in ovl_lookup() 1066 dentry->d_fsdata = oe; in ovl_lookup() [all …]
|
/linux/include/net/tc_act/ |
A D | tc_gate.h | 116 struct action_gate_entry *oe; in tcf_gate_get_list() local 131 oe = kcalloc(num_entries, sizeof(*oe), GFP_ATOMIC); in tcf_gate_get_list() 132 if (!oe) in tcf_gate_get_list() 137 oe[i].gate_state = entry->gate_state; in tcf_gate_get_list() 138 oe[i].interval = entry->interval; in tcf_gate_get_list() 139 oe[i].ipv = entry->ipv; in tcf_gate_get_list() 140 oe[i].maxoctets = entry->maxoctets; in tcf_gate_get_list() 144 return oe; in tcf_gate_get_list()
|
/linux/drivers/comedi/drivers/ |
A D | dt2817.c | 39 unsigned int oe = 0; in dt2817_dio_insn_config() local 57 oe |= 0x1; in dt2817_dio_insn_config() 59 oe |= 0x2; in dt2817_dio_insn_config() 61 oe |= 0x4; in dt2817_dio_insn_config() 63 oe |= 0x8; in dt2817_dio_insn_config() 65 outb(oe, dev->iobase + DT2817_CR); in dt2817_dio_insn_config()
|
/linux/lib/lzo/ |
A D | lzo1x_decompress_safe.c | 98 unsigned char *oe = op + t; in lzo1x_decompress_safe() local 108 op = oe; in lzo1x_decompress_safe() 215 unsigned char *oe = op + t; in lzo1x_decompress_safe() local 224 } while (op < oe); in lzo1x_decompress_safe() 225 op = oe; in lzo1x_decompress_safe() 237 } while (op < oe); in lzo1x_decompress_safe() 242 unsigned char *oe = op + t; in lzo1x_decompress_safe() local 250 } while (op < oe); in lzo1x_decompress_safe()
|
/linux/drivers/gpu/drm/bridge/ |
A D | thc63lvd1024.c | 32 struct gpio_desc *oe; member 97 gpiod_set_value(thc63->oe, 1); in thc63_enable() 105 gpiod_set_value(thc63->oe, 0); in thc63_disable() 175 thc63->oe = devm_gpiod_get_optional(thc63->dev, "oe", GPIOD_OUT_LOW); in thc63_gpio_init() 176 if (IS_ERR(thc63->oe)) { in thc63_gpio_init() 178 PTR_ERR(thc63->oe)); in thc63_gpio_init() 179 return PTR_ERR(thc63->oe); in thc63_gpio_init()
|
/linux/fs/ntfs3/ |
A D | fslog.c | 2973 while ((oe = enum_rstbl(log->open_attr_tbl, oe))) { in find_loaded_attr() 3068 oa = oe->ptr; in do_action() 4319 oe = NULL; in log_replay() 4320 while ((oe = enum_rstbl(oatbl, oe))) { in log_replay() 4577 if (!oe) { in log_replay() 4698 oe = NULL; in log_replay() 4701 oe = enum_rstbl(oatbl, oe); in log_replay() 4702 if (!oe) { in log_replay() 4741 attr = ni_find_attr(ni_oe, NULL, NULL, oe->type, oe->ptr, oe->name_len, in log_replay() 5169 oe = NULL; in log_replay() [all …]
|
/linux/arch/arm/boot/dts/ |
A D | omap3430-sdp.dts | 69 gpmc,oe-on-ns = <54>; 70 gpmc,oe-off-ns = <168>; 119 gpmc,oe-on-ns = <6>; 120 gpmc,oe-off-ns = <48>; 165 gpmc,oe-on-ns = <30>; 166 gpmc,oe-off-ns = <84>;
|
A D | omap2420-h4.dts | 37 gpmc,oe-on-ns = <60>; 38 gpmc,oe-off-ns = <120>;
|
A D | omap3-overo-tobiduo-common.dtsi | 32 gpmc,oe-on-ns = <0>; 33 gpmc,oe-off-ns = <42>;
|
A D | omap-gpmc-smsc911x.dtsi | 36 gpmc,oe-on-ns = <45>; 37 gpmc,oe-off-ns = <140>;
|
A D | omap-gpmc-smsc9221.dtsi | 39 gpmc,oe-on-ns = <0>; 40 gpmc,oe-off-ns = <42>;
|
A D | omap2430-sdp.dts | 54 gpmc,oe-on-ns = <60>; 55 gpmc,oe-off-ns = <169>;
|
A D | omap2420-n8x0-common.dtsi | 70 gpmc,oe-on-ns = <27>; 71 gpmc,oe-off-ns = <127>;
|
A D | omap-zoom-common.dtsi | 38 gpmc,oe-on-ns = <45>; 39 gpmc,oe-off-ns = <145>;
|
/linux/arch/mips/boot/dts/cavium-octeon/ |
A D | octeon_3xxx.dtsi | 133 cavium,t-oe = <60>; 150 cavium,t-oe = <320>; 167 cavium,t-oe = <125>; 184 cavium,t-oe = <270>;
|
/linux/Documentation/devicetree/bindings/memory-controllers/ |
A D | ti,gpmc-child.yaml | 76 gpmc,oe-on-ns: 80 gpmc,oe-off-ns: 84 gpmc,oe-aad-mux-on-ns: 88 gpmc,oe-aad-mux-off-ns: 148 gpmc,oe-extra-delay:
|
/linux/drivers/gpio/ |
A D | gpio-tegra.c | 76 u32 oe[4]; member 216 u32 cnf, oe; in tegra_gpio_get_direction() local 222 oe = tegra_gpio_readl(tgi, GPIO_OE(tgi, offset)); in tegra_gpio_get_direction() 224 if (oe & pin_mask) in tegra_gpio_get_direction() 474 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { in tegra_gpio_resume() 489 tegra_gpio_writel(tgi, bank->oe[p], in tegra_gpio_resume() 509 for (p = 0; p < ARRAY_SIZE(bank->oe); p++) { in tegra_gpio_suspend() 516 bank->oe[p] = tegra_gpio_readl(tgi, in tegra_gpio_suspend()
|
/linux/Documentation/devicetree/bindings/mips/cavium/ |
A D | bootbus.txt | 36 - cavium,t-oe: A cell specifying the OE timing (in nS). 90 cavium,t-oe = <60>; 110 cavium,t-oe = <270>;
|
/linux/drivers/pinctrl/ |
A D | pinctrl-st.c | 229 struct regmap_field *alt, *oe, *pu, *od; member 244 const int alt, oe, pu, od, rt; member 346 .alt = 0, .oe = 40, .pu = 50, .od = 60, .rt = 100, 356 .oe = -1, /* Not Available */ 386 struct regmap_field *output_enable = pc->oe; in st_pinconf_set_config() 578 if (pc->oe) { in st_pinconf_get_direction() 579 regmap_field_read(pc->oe, &oe_value); in st_pinconf_get_direction() 1004 int oe; in st_pinconf_dbg_show() local 1017 oe = st_gpio_get_direction(&pc_to_bank(pc)->gpio_chip, offset); in st_pinconf_dbg_show() 1021 (oe == GPIO_LINE_DIRECTION_OUT), in st_pinconf_dbg_show() [all …]
|