Searched refs:used (Results 1 - 25 of 632) sorted by relevance

1234567891011>>

/linux-master/tools/testing/selftests/tc-testing/
H A Daction.c12 __attribute__((section("action-ok"),used)) int action_ok(struct __sk_buff *s)
17 __attribute__((section("action-ko"),used)) int action_ko(struct __sk_buff *s)
23 char _license[] __attribute__((section("license"),used)) = "GPL";
/linux-master/drivers/media/platform/mediatek/vcodec/common/
H A Dmtk_vcodec_dbgfs.c15 int *used, int total)
21 curr_len = snprintf(buf + *used, total - *used,
25 curr_len = snprintf(buf + *used, total - *used,
29 curr_len = snprintf(buf + *used, total - *used,
33 curr_len = snprintf(buf + *used, total - *used,
37 *used
14 mtk_vdec_dbgfs_get_format_type(struct mtk_vcodec_dec_ctx *ctx, char *buf, int *used, int total) argument
56 mtk_vdec_dbgfs_get_help(char *buf, int *used, int total) argument
[all...]
/linux-master/fs/bcachefs/
H A Dbkey_sort.h7 unsigned used; member in struct:sort_iter
18 iter->used = 0;
36 BUG_ON(iter->used >= iter->size);
39 iter->data[iter->used++] = (struct sort_iter_set) { k, end };
H A Dsiphash.c16 * 3. The name of the author may not be used to endorse or promote
106 size_t left, used; local
111 used = ctx->bytes % sizeof(ctx->buf);
114 if (used > 0) {
115 left = sizeof(ctx->buf) - used;
118 memcpy(&ctx->buf[used], ptr, left);
123 memcpy(&ctx->buf[used], ptr, len);
135 memcpy(&ctx->buf[used], ptr, len);
150 size_t left, used; local
152 used
[all...]
H A Dreplicas_types.h18 unsigned used; member in struct:replicas_delta_list
/linux-master/sound/hda/
H A Darray.c23 if (array->used >= array->alloced) {
37 return snd_array_elem(array, array->used++);
48 array->used = 0;
/linux-master/drivers/net/ethernet/intel/ixgbevf/
H A Dipsec.h25 bool used; member in struct:rx_sa
32 bool used; member in struct:rx_ip_sa
41 bool used; member in struct:tx_sa
/linux-master/drivers/gpu/drm/nouveau/nvkm/engine/fifo/
H A Dchid.c32 clear_bit(id, chid->used);
43 cid = find_first_zero_bit(chid->used, chid->nr);
45 set_bit(cid, chid->used);
92 if (!(chid = *pchid = kzalloc(struct_size(chid, used, nr), GFP_KERNEL)))
106 __set_bit(id, chid->used);
108 __set_bit(id, chid->used);
H A Dchid.h16 unsigned long used[]; member in struct:nvkm_chid
/linux-master/arch/sparc/include/asm/
H A Dbitext.h17 int used; member in struct:bit_map
/linux-master/fs/xfs/libxfs/
H A Dxfs_ag_resv.c49 * reserved blocks" count must be used when calculating the length of the
60 * to use the reservation system should update ask/used in xfs_ag_resv_init.
100 * How many blocks are reserved but not used, and therefore must not be
183 xfs_extlen_t used)
190 if (used > ask)
191 ask = used;
206 * on-disk as used space. We therefore only hide the space
207 * that is reserved but not used by the trees.
209 hidden_space = ask - used;
241 resv->ar_reserved = ask - used;
179 __xfs_ag_resv_init( struct xfs_perag *pag, enum xfs_ag_resv_type type, xfs_extlen_t ask, xfs_extlen_t used) argument
255 xfs_extlen_t used; local
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_reg_sr_types.h25 unsigned int used; member in struct:xe_reg_sr::__anon889
H A Dxe_sched_job_types.h33 /** @user_fence.used: user fence is used */
34 bool used; member in struct:xe_sched_job::__anon99
/linux-master/fs/ntfs3/
H A Drecord.c201 u32 used = le32_to_cpu(rec->used); local
211 if (used > total)
214 if (off >= used || off < MFTRECORD_FIXUP_OFFSET_1 ||
228 if (off >= used)
249 if (off + 8 > used) {
269 if (off + asize < off || off + asize > used)
418 } else if (rno >= sbi->mft.used) {
470 u32 used = le32_to_cpu(rec->used); local
531 u32 used = le32_to_cpu(rec->used); local
567 u32 total, used = le32_to_cpu(rec->used); local
625 u32 used = le32_to_cpu(rec->used); local
[all...]
/linux-master/drivers/infiniband/ulp/rtrs/
H A Drtrs-clt-stats.c42 size_t used; local
45 used = 0;
48 used += sysfs_emit_at(buf, used, "%d ",
52 used += sysfs_emit_at(buf, used, "\n");
54 return used;
61 size_t used; local
64 used = 0;
67 used
[all...]
/linux-master/sound/oss/dmasound/
H A Ddmasound_atari.c38 static int write_sq_ignore_int; /* ++TeSche: used for Falcon */
55 * return the number of bytes they've used from both streams so you may detect
161 ssize_t count, used; local
167 used = count;
175 *frameUsed += used;
176 return used;
184 ssize_t count, used; local
190 used = count;
193 *frameUsed += used;
194 return used;
202 ssize_t count, used; local
237 ssize_t count, used; local
269 ssize_t count, used; local
308 ssize_t count, used; local
349 ssize_t count, used; local
394 ssize_t used, usedf; local
454 ssize_t used, usedf; local
508 ssize_t used, usedf; local
564 ssize_t used, usedf; local
620 ssize_t used, usedf; local
678 ssize_t used, usedf; local
736 ssize_t used, usedf; local
[all...]
/linux-master/arch/um/os-Linux/
H A Dsigio.c21 * Protected by sigio_lock(), also used by sigio_cleanup, which is an
40 int used; member in struct:pollfds
61 n = poll(fds->poll, fds->used, -1);
68 for (i = 0; i < fds->used; i++) {
87 fds->used--;
89 (fds->used - i) * sizeof(*fds->poll));
117 memcpy(new, polls->poll, polls->used * sizeof(struct pollfd));
172 for (i = 0; i < all_sigio_fds.used; i++) {
176 if (i == all_sigio_fds.used)
181 for (i = 0; i < current_poll.used;
[all...]
/linux-master/include/linux/ceph/
H A Dtypes.h27 int used; member in struct:ceph_cap_reservation
/linux-master/include/sound/sof/
H A Ddebug.h30 uint32_t used; /**< number of bytes used in zone */ member in struct:sof_ipc_dbg_mem_usage_elem
/linux-master/tools/testing/selftests/bpf/
H A Durandom_read_lib1.c9 #define SEC(name) __attribute__((section(name), used))
/linux-master/tools/testing/selftests/size/
H A Dget_size.c83 /* this program has no main(), as startup libraries are not used */
88 unsigned long used; local
105 used = info.totalram - info.freeram - info.bufferram;
111 print_k_value(" In use: ", used, info.mem_unit);
/linux-master/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_ipsec.h39 bool used; member in struct:rx_sa
47 bool used; member in struct:rx_ip_sa
56 bool used; member in struct:tx_sa
/linux-master/drivers/dma/
H A Ddmaengine.h4 * part of the API to be used by DMA engine users.
63 * @state: dma_tx_state structure to return last/used cookies
71 dma_cookie_t used, complete; local
73 used = chan->cookie;
78 state->used = used;
82 return dma_async_is_complete(cookie, complete, used);
/linux-master/kernel/
H A Dscs.c133 unsigned long *p, prev, curr = highest, used = 0; local
141 used += sizeof(*p);
144 while (used > curr) {
145 prev = cmpxchg_relaxed(&highest, curr, used);
149 tsk->comm, task_pid_nr(tsk), used);
/linux-master/lib/zlib_inflate/
H A Dinftrees.c15 lens shorts, which is used as a work area. type is the type of code
33 unsigned used; /* code entries in table used */ local
85 The length counts are used for other purposes as well, i.e. finding
137 filled is at next and has curr index bits. The code being used is huff
151 counts are used for this, and so count[] is decremented as codes are
154 used keeps track of how many table entries have been allocated from the
170 base = extra = work; /* dummy value--not used */
194 used = 1U << root; /* use root table entries */
195 mask = used
[all...]

Completed in 390 milliseconds

1234567891011>>