Searched refs:used (Results 201 - 225 of 636) sorted by last modified time

1234567891011>>

/linux-master/tools/perf/util/
H A Dpmu.c1222 t->used = true;
1271 * If this is a parameter we've already used for parameterized-eval,
1274 if (term->used)
1578 /* Sub-optimal, but function is only used by tests. */
1662 int used = snprintf(buf, len, "%.*s/%s", pmu_name_len, pmu->name, alias->name); local
1666 used += snprintf(buf + used, sub_non_neg(len, used),
1671 if (sub_non_neg(len, used) > 0) {
1672 buf[used]
[all...]
H A Dparse-events.c1936 * non-software PMU. for_each_group_(member|evsel) isn't used as
2050 * event lists being merged. The indexes are used to detect when
2584 temp.used = false;
H A Dparse-events.h101 /** @type_val: The union variable in val to be used for the term. */
109 * @err_term: The column index of the term from parsing, used during
114 * @err_val: The column index of the val from parsing, used during error
118 /** @used: Was the term used during parameterized-eval. */
119 bool used; member in struct:parse_events_term
145 /* The updated index used by entries as they are added. */
/linux-master/sound/pci/
H A Dvia82xx.c23 * the DSX3 channel can be used for SPDIF output.
337 int used; member in struct:via_rate_lock
1002 if (rec->rate && rec->used > 1) /* already set */
1171 ratep->used++;
1315 ratep->used--;
1316 if (! ratep->used)
/linux-master/sound/firewire/oxfw/
H A Doxfw-stream.c131 bool used; local
139 err = cmp_connection_check_used(conn, &used);
140 if ((err >= 0) && used && !amdtp_stream_running(stream)) {
/linux-master/sound/core/seq/
H A Dseq_memory.c314 int used; local
317 used = atomic_read(&pool->counter);
318 if (pool->max_used < used)
319 pool->max_used = used;
/linux-master/sound/core/
H A Dhwdep.c97 if (hw->exclusive && hw->used > 0) {
133 hw->used++;
155 if (hw->used > 0)
156 hw->used--;
H A Dcontrol_compat.c16 u32 used; member in struct:snd_ctl_elem_list32
29 /* offset, space, used, count */
/linux-master/mm/
H A Dmemcontrol.c150 * register_event() callback will be used to add new userspace
202 * Maximum loops in mem_cgroup_soft_reclaim(), used for soft
223 * be used for reference counting.
395 * after page_cgroup_ino() returns, so it only should be used by callers that
501 * Necessary to update all ancestors when hierarchy is used.
688 * never used in hardirq context on PREEMPT_RT and therefore disabling preemtion
1296 * When cgroup1 non-hierarchy mode is used,
2873 * GFP_KERNEL can consistently be used during reclaim. @memcg is
2991 * mod_memcg_lruvec_state() should be used.
3068 * folio_memcg_check() is used her
4817 unsigned long used = page_counter_read(&memcg->memory); local
[all...]
/linux-master/include/sound/
H A Demux_synth.h105 int used; /* use counter */ member in struct:snd_emux
/linux-master/include/linux/gpio/
H A Dgpio-nomadik.h95 .used = altc1_used,\
100 .used = altc2_used,\
105 .used = altc3_used,\
110 .used = altc4_used,\
139 * @used: other alternate-C function availability
140 * @reg_index: PRCM GPIOCR register index used to control the function
141 * @control_bit: PRCM GPIOCR bit used to control the function
144 bool used:1; member in struct:prcm_gpiocr_altcx
175 * configure them to be used by a function
259 * Symbols declared in gpio-nomadik used b
[all...]
/linux-master/fs/xfs/scrub/
H A Dnewbt.h26 /* How much of this reservation has been used. */
27 xfs_extlen_t used; member in struct:xrep_newbt_resv
H A Dnewbt.c137 * Designate specific blocks to be used to build our new btree. @pag must be
157 resv->used = 0;
381 if (!btree_committed || resv->used == 0) {
394 * We used space and committed the btree. Cancel the autoreap, remove
399 free_agbno += resv->used;
400 free_aglen -= resv->used;
470 * reservations and try to commit to freeing the space we used.
526 if (resv->used == resv->len)
536 agbno = resv->agbno + resv->used;
537 resv->used
[all...]
H A Dalloc_repair.c53 * Because the final step of building a new index is to free the space used by
58 * The scan of the reverse mapping information records the space used by OWN_AG
82 * reservation and used to format new btree blocks. The remaining records are
538 xfs_agblock_t free_agbno = resv->agbno + resv->used;
539 xfs_extlen_t free_aglen = resv->len - resv->used;
544 /* Add a deferred rmap for each extent we used. */
545 if (resv->used > 0)
547 resv->used, XFS_RMAP_OWN_AG);
571 * allocation, and blocks that didn't get used can be freed via the usual
/linux-master/fs/xfs/libxfs/
H A Dxfs_rmap_btree.h21 * (note that some of these may appear unused, but they are used in userspace)
59 struct xfs_perag *pag, xfs_extlen_t *ask, xfs_extlen_t *used);
H A Dxfs_rmap_btree.c33 * This is a per-ag tree used to track the owner(s) of a given extent. With
827 * Figure out how many blocks to reserve and how many are used by this btree.
835 xfs_extlen_t *used)
865 *used += tree_len;
830 xfs_rmapbt_calc_reserves( struct xfs_mount *mp, struct xfs_trans *tp, struct xfs_perag *pag, xfs_extlen_t *ask, xfs_extlen_t *used) argument
H A Dxfs_refcount_btree.c484 * Figure out how many blocks to reserve and how many are used by this btree.
492 xfs_extlen_t *used)
521 *used += tree_len;
487 xfs_refcountbt_calc_reserves( struct xfs_mount *mp, struct xfs_trans *tp, struct xfs_perag *pag, xfs_extlen_t *ask, xfs_extlen_t *used) argument
H A Dxfs_refcount_btree.h27 * (note that some of these may appear unused, but they are used in userspace)
61 xfs_extlen_t *used);
H A Dxfs_ialloc_btree.c782 * Figure out how many blocks to reserve and how many are used by this btree.
789 xfs_extlen_t *used)
805 *used += tree_len;
785 xfs_finobt_calc_reserves( struct xfs_perag *pag, struct xfs_trans *tp, xfs_extlen_t *ask, xfs_extlen_t *used) argument
H A Dxfs_ialloc_btree.h28 * (note that some of these may appear unused, but they are used in userspace)
66 xfs_extlen_t *ask, xfs_extlen_t *used);
H A Dxfs_dir2_sf.c606 int used; /* data bytes used */ local
625 * Calculate data bytes used excluding the new entry, if this
628 used = offset +
636 if (used + (holefit ? 0 : size) > args->geo->blksize)
646 if (used + size > args->geo->blksize)
/linux-master/fs/reiserfs/
H A Dreiserfs.h48 * file during truncate or unlink. Safe link is used to avoid
218 * next and prev are used by the current transaction (journal_hash).
219 * hnext and hprev are used by journal_list_hash. If a block is in more
255 * j_realblock. this list of cnodes is used to hash all the blocks in all
350 int j_cnode_used; /* number of cnodes on the used list */
543 * pointer to function which is used to sort names in directory.
600 * disk inode with nlink==0. Currently this is only used during
612 /* this lock on now only used to protect reserved_blocks variable */
684 * used for testing experimental features, makes benchmarking new
685 * features with and without more convenient, should never be used b
2432 struct buffer_head *used[MAX_FEB_SIZE]; member in struct:tree_balance
[all...]
/linux-master/fs/ext4/
H A Dext4.h168 * those. This is only used in rare cases when
180 * Flags used in mballoc's allocation_context flags field.
182 * Also used to show what's going on for debugging purposes when the
245 * Logical to physical block mapping, used by ext4_map_blocks()
247 * This structure is used to pass requests into ext4_map_blocks() as
287 * For converting unwritten extents on a work queue. 'handle' is used for
330 * Macro-instructions used to manage several block sizes
441 * Macro-instructions used to manage group descriptors
485 /* End compression flags --- maybe not all used */
495 #define EXT4_EA_INODE_FL 0x00200000 /* Inode used fo
[all...]
/linux-master/drivers/pinctrl/nomadik/
H A Dpinctrl-nomadik.c5 * which is used by this driver to access the GPIO banks array.
381 if (pin_desc->altcx[i].used) {
396 if (!pin_desc->altcx[alt_index].used) {
410 if (pin_desc->altcx[i].used) {
430 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
498 if (pin_desc->altcx[i].used) {
887 * Safe sequence used to switch IOs between GPIO and Alternate-C mode:
/linux-master/drivers/pci/controller/
H A Dpcie-brcmstb.c245 DECLARE_BITMAP(used, BRCM_INT_PCI_MSI_NR);
514 hwirq = bitmap_find_free_region(msi->used, msi->nr,
525 bitmap_release_region(msi->used, hwirq, order_base_2(nr_irqs));
646 * Sanity check to make sure that the 'used' bitmap in struct brcm_msi

Completed in 587 milliseconds

1234567891011>>