Searched refs:allocation (Results 1 - 16 of 16) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/cris/arch-v32/mm/
H A Dintmem.c44 struct intmem_allocation* allocation; local
51 list_for_each_entry_safe(allocation, tmp, &intmem_allocations, entry) {
52 int alignment = allocation->offset % align;
55 if (allocation->status == STATUS_FREE &&
56 allocation->size >= size + alignment) {
57 if (allocation->size > size + alignment) {
62 alloc->size = allocation->size - size - alignment;
63 alloc->offset = allocation->offset + size;
64 list_add(&alloc->entry, &allocation->entry);
70 tmp->offset = allocation
88 struct intmem_allocation* allocation; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/dlm/
H A Dlowcomms.h20 void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc);
H A Dlowcomms.c149 * If 'allocation' is zero then we don't attempt to create a new
204 static struct connection *nodeid2con(int nodeid, gfp_t allocation) argument
209 con = __nodeid2con(nodeid, allocation);
1136 gfp_t allocation)
1140 entry = kmalloc(sizeof(struct writequeue_entry), allocation);
1144 entry->page = alloc_page(allocation);
1159 void *dlm_lowcomms_get_buffer(int nodeid, int len, gfp_t allocation, char **ppc) argument
1166 con = nodeid2con(nodeid, allocation);
1190 e = new_writequeue_entry(con, allocation);
1135 new_writequeue_entry(struct connection *con, gfp_t allocation) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/linux/
H A Ddmapool.h18 size_t size, size_t align, size_t allocation);
31 size_t size, size_t align, size_t allocation);
H A Dnetlink.h168 __u32 group, gfp_t allocation);
H A Dpci.h623 #define pci_pool_create(name, pdev, size, align, allocation) \
624 dma_pool_create(name, &pdev->dev, size, align, allocation)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/utilities/
H A Dutalloc.c3 * Module Name: utalloc - local memory allocation routines
112 /* Memory allocation lists */
171 /* Debug only - display leftover memory allocation, if any */
301 * PARAMETERS: Size - Size of the allocation
314 void *allocation; local
326 allocation = acpi_os_allocate(size);
327 if (!allocation) {
329 /* Report allocation error */
337 return_PTR(allocation);
344 * PARAMETERS: Size - Size of the allocation
358 void *allocation; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/base/
H A Ddmapool.c25 size_t allocation; member in struct:dma_pool
31 struct dma_page { /* cacheable header for 'allocation' bytes */
89 * @allocation: returned blocks won't cross this boundary (or zero)
92 * Returns a dma allocation pool with the requested characteristics, or
99 * If allocation is nonzero, objects returned from dma_pool_alloc() won't
106 size_t size, size_t align, size_t allocation)
121 if (allocation == 0) {
123 allocation = size;
125 allocation = PAGE_SIZE;
126 } else if (allocation < siz
105 dma_pool_create(const char *name, struct device *dev, size_t size, size_t align, size_t allocation) argument
444 dmam_pool_create(const char *name, struct device *dev, size_t size, size_t align, size_t allocation) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/mm/
H A Ddiscontig.c168 void *allocation = node_remap_alloc_vaddr[nid]; local
172 if (!allocation || (allocation + size) >= node_remap_end_vaddr[nid])
176 memset(allocation, 0, size);
178 return allocation;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netlink/
H A Daf_netlink.c791 gfp_t allocation)
802 struct sk_buff *nskb = skb_clone(skb, allocation);
809 if (!pskb_expand_head(skb, 0, -delta, allocation))
871 gfp_t allocation; member in struct:netlink_broadcast_data
896 p->skb2 = skb_clone(p->skb, p->allocation);
924 u32 group, gfp_t allocation)
930 skb = netlink_trim(skb, allocation);
938 info.allocation = allocation;
957 if (info.congested && (allocation
790 netlink_trim(struct sk_buff *skb, gfp_t allocation) argument
923 netlink_broadcast(struct sock *ssk, struct sk_buff *skb, u32 pid, u32 group, gfp_t allocation) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/decnet/
H A Ddn_nsp_out.c206 * @gfp: memory allocation flag
233 * @gfp: The memory allocation flags
664 gfp_t allocation = (msgflg == NSP_CI) ? sk->sk_allocation : GFP_ATOMIC; local
665 struct sk_buff *skb = dn_alloc_skb(sk, 200, allocation);
H A Daf_decnet.c36 * Steve Whitehouse: Removed unused code. Fix to use sk->allocation
39 * Steve Whitehouse: Fixed local port allocation, hashed sk list
813 static int dn_confirm_accept(struct sock *sk, long *timeo, gfp_t allocation) argument
824 dn_send_conn_conf(sk, allocation);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dmpegaudiodec.c1122 uint8_t allocation[MPA_MAX_CHANNELS][SBLIMIT]; local
1130 /* allocation bits */
1133 allocation[ch][i] = get_bits(&s->gb, 4);
1137 allocation[0][i] = get_bits(&s->gb, 4);
1143 if (allocation[ch][i])
1148 if (allocation[0][i]) {
1158 n = allocation[ch][i];
1169 n = allocation[0][i];
1211 /* parse bit allocation */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/key/
H A Daf_key.c189 gfp_t allocation, struct sock *sk)
196 *skb2 = skb_clone(skb, allocation);
221 static int pfkey_broadcast(struct sk_buff *skb, gfp_t allocation, argument
242 pfkey_broadcast_one(skb, &skb2, allocation, sk);
257 err2 = pfkey_broadcast_one(skb, &skb2, allocation, sk);
267 err = pfkey_broadcast_one(skb, &skb2, allocation, one_sk);
1546 gfp_t allocation)
1566 skb = alloc_skb(len + 16, allocation);
188 pfkey_broadcast_one(struct sk_buff *skb, struct sk_buff **skb2, gfp_t allocation, struct sock *sk) argument
1545 compose_sadb_supported(struct sadb_msg *orig, gfp_t allocation) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iproute2/doc/
H A Dapi-ip6-flowlabels.tex228 \item {\bf ``Cooperative''. } We could leave flow label allocation wholly
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/Documentation/cdrom/
H A Dcdrom-standard.tex838 allocation are performed in $cdrom_ioctl()$, and also sanitization of
951 if implemented. No memory allocation or verification is carried out.
988 need for memory allocation either, so most $case$s in the $switch$
996 memory checking and allocation must be kept in this code!

Completed in 375 milliseconds