Searched refs:alloc (Results 26 - 50 of 462) sorted by relevance

1234567891011>>

/linux-master/tools/perf/util/
H A Dhelp-unknown-cmd.c37 if (nr > cmds->alloc) {
38 /* Choose bigger one to alloc */
39 if (alloc_nr(cmds->alloc) < nr)
40 cmds->alloc = nr;
42 cmds->alloc = alloc_nr(cmds->alloc);
43 tmp = realloc(cmds->names, cmds->alloc * sizeof(*cmds->names));
/linux-master/fs/nilfs2/
H A DMakefile6 ifile.o alloc.o gcinode.o ioctl.o sysfs.o
/linux-master/fs/nfs/
H A Dnfs3acl.c260 struct posix_acl *orig = acl, *dfacl = NULL, *alloc; local
267 alloc = get_inode_acl(inode, ACL_TYPE_DEFAULT);
268 if (IS_ERR(alloc))
270 dfacl = alloc;
274 alloc = get_inode_acl(inode, ACL_TYPE_ACCESS);
275 if (IS_ERR(alloc))
278 acl = alloc;
284 alloc = posix_acl_from_mode(inode->i_mode, GFP_KERNEL);
285 if (IS_ERR(alloc))
287 acl = alloc;
[all...]
/linux-master/tools/lib/subcmd/
H A Dsigchain.c11 int alloc; member in struct:sigchain_signal
26 ALLOC_GROW(s->old, s->n + 1, s->alloc);
H A Dhelp.h9 size_t alloc; member in struct:cmdnames
/linux-master/mm/
H A Dmempool.c93 if (pool->alloc == mempool_kmalloc) {
95 } else if (pool->alloc == mempool_alloc_slab) {
97 } else if (pool->alloc == mempool_alloc_pages) {
117 if (pool->alloc == mempool_alloc_slab || pool->alloc == mempool_kmalloc)
119 else if (pool->alloc == mempool_alloc_pages)
127 if (pool->alloc == mempool_kmalloc)
129 else if (pool->alloc == mempool_alloc_slab)
132 else if (pool->alloc == mempool_alloc_pages)
202 pool->alloc
[all...]
/linux-master/net/core/
H A Dpage_pool.c339 /* Refill alloc array, but only if NUMA match */
346 pool->alloc.cache[pool->alloc.count++] = page;
358 } while (pool->alloc.count < PP_ALLOC_CACHE_REFILL);
361 if (likely(pool->alloc.count > 0)) {
362 page = pool->alloc.cache[--pool->alloc.count];
375 if (likely(pool->alloc.count)) {
377 page = pool->alloc.cache[--pool->alloc
[all...]
/linux-master/arch/xtensa/variants/test_kc705_be/include/variant/
H A Dtie-asm.h72 * alloc Select what category(ies) of registers to allocate; if any
76 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
84 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0
96 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
116 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
138 * alloc Select what category(ies) of registers to allocate; if any
142 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
150 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0
162 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
182 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc))
[all...]
/linux-master/arch/xtensa/variants/test_kc705_hifi/include/variant/
H A Dtie-asm.h73 * alloc Select what category(ies) of registers to allocate; if any
77 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
85 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0
97 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
117 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
139 * alloc Select what category(ies) of registers to allocate; if any
143 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
151 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\alloc)) == 0
163 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\alloc)) == 0
183 .elseif ((XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\alloc))
[all...]
/linux-master/scripts/gdb/linux/
H A Dslab.py70 def get_track(cache, object_pointer, alloc):
72 p += (alloc * track_type.sizeof)
153 def slabtrace(alloc, cache_name):
164 def process_slab(loc_track, slab_list, alloc, cache):
172 p = get_track(cache, object_pointer, alloc)
174 if alloc == track_alloc:
202 process_slab(loc_track, cache_node['partial'], alloc, target_cache)
203 process_slab(loc_track, cache_node['full'], alloc, target_cache)
241 --alloc
246 lx-slabtrace --cache_name kmalloc-1k --alloc
[all...]
/linux-master/drivers/net/ethernet/mellanox/mlx4/
H A DMakefile4 mlx4_core-y := alloc.o catas.o cmd.o cq.o eq.o fw.o fw_qos.o icm.o intf.o \
/linux-master/drivers/scsi/arm/
H A Dqueue.h14 void *alloc; /* start of allocated mem */ member in struct:__anon612
/linux-master/fs/ocfs2/
H A Dlocalalloc.h25 struct ocfs2_dinode *alloc);
H A DMakefile12 alloc.o \
/linux-master/drivers/scsi/elx/include/
H A Defc_common.h14 void *alloc; member in struct:efc_dma
/linux-master/drivers/gpu/drm/ttm/
H A Dttm_sys_manager.c31 .alloc = ttm_sys_man_alloc,
/linux-master/lib/
H A Didr.c358 * The IDA always uses a lock to alloc/free. If we add a 'test_bit'
386 struct ida_bitmap *bitmap, *alloc = NULL; local
416 bitmap = alloc;
420 goto alloc;
443 bitmap = alloc;
447 goto alloc;
459 if (bitmap != alloc)
460 kfree(alloc);
464 alloc:
466 alloc
[all...]
H A Dtest_objpool.c24 atomic_long_t alloc; member in struct:ot_mem_stat
90 atomic_long_add(size, &test->data.kmalloc.alloc);
104 long alloc, free; local
108 alloc = atomic_long_read(&test->data.kmalloc.alloc);
110 pr_info(" kmalloc: %lu - %lu = %lu\n", alloc, free, alloc - free);
112 alloc = atomic_long_read(&test->data.vmalloc.alloc);
114 pr_info(" vmalloc: %lu - %lu = %lu\n", alloc, fre
[all...]
/linux-master/rust/
H A DMakefile18 obj-$(CONFIG_RUST) += alloc.o bindings.o kernel.o
63 alloc-cfgs = \
96 rustdoc-alloc rustdoc-kernel
124 rustdoc-alloc: private rustc_target_flags = $(alloc-cfgs) \
126 rustdoc-alloc: $(src)/alloc/lib.rs rustdoc-core rustdoc-compiler_builtins FORCE
129 rustdoc-kernel: private rustc_target_flags = --extern alloc \
133 rustdoc-compiler_builtins rustdoc-alloc $(obj)/libmacros.so \
178 -L$(objtree)/$(obj) --extern alloc
[all...]
/linux-master/drivers/infiniband/hw/mthca/
H A Dmthca_dev.h194 struct mthca_alloc alloc; member in struct:mthca_uar_table
200 struct mthca_alloc alloc; member in struct:mthca_pd_table
226 struct mthca_alloc alloc; member in struct:mthca_eq_table
239 struct mthca_alloc alloc; member in struct:mthca_cq_table
246 struct mthca_alloc alloc; member in struct:mthca_srq_table
253 struct mthca_alloc alloc; member in struct:mthca_qp_table
269 struct mthca_alloc alloc; member in struct:mthca_av_table
274 struct mthca_alloc alloc; member in struct:mthca_mcg_table
413 u32 mthca_alloc(struct mthca_alloc *alloc);
414 void mthca_free(struct mthca_alloc *alloc, u3
[all...]
H A Dmthca_mcg.c148 index = mthca_alloc(&dev->mcg_table.alloc);
206 mthca_free(&dev->mcg_table.alloc, index);
286 mthca_free(&dev->mcg_table.alloc, amgm_index_to_free);
305 mthca_free(&dev->mcg_table.alloc, index);
320 err = mthca_alloc_init(&dev->mcg_table.alloc,
334 mthca_alloc_cleanup(&dev->mcg_table.alloc);
/linux-master/net/netfilter/
H A Dnf_conntrack_extend.c94 unsigned int newlen, newoff, oldlen, alloc; local
116 alloc = max(newlen, NF_CT_EXT_PREALLOC);
117 new = krealloc(ct->ext, alloc, gfp);
/linux-master/net/sched/
H A Dact_meta_skbtcindex.c51 .alloc = ife_alloc_meta_u16,
H A Dact_meta_mark.c51 .alloc = ife_alloc_meta_u32,
H A Dact_meta_skbprio.c51 .alloc = ife_alloc_meta_u32,

Completed in 186 milliseconds

1234567891011>>