Searched refs:size (Results 276 - 300 of 5716) sorted by relevance

<<11121314151617181920>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dsdp.c46 static void sdp_write_address(char *buff, int size, const char *dest_addr, int ttl) argument
50 av_strlcatf(buff, size, "c=IN IP4 %s/%d\r\n", dest_addr, ttl);
52 av_strlcatf(buff, size, "c=IN IP4 %s\r\n", dest_addr);
57 static void sdp_write_header(char *buff, int size, struct sdp_session_level *s) argument
59 av_strlcatf(buff, size, "v=%d\r\n"
68 sdp_write_address(buff, size, s->dst_addr, s->ttl);
71 static int sdp_get_address(char *dest_addr, int size, int *ttl, const char *url) argument
76 url_split(NULL, 0, NULL, 0, dest_addr, size, &port, NULL, 0, url);
160 static char *sdp_write_media_attributes(char *buff, int size, AVCodecContext *c, int payload_type) argument
169 av_strlcatf(buff, size, "
231 sdp_write_media(char *buff, int size, AVCodecContext *c, const char *dest_addr, int port, int ttl) argument
257 avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) argument
300 avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size) argument
[all...]
H A Davs.c85 AvsBlockType type, int sub_type, int size,
91 ret = av_new_packet(pkt, size + palette_size);
105 pkt->data[palette_size + 2] = size & 0xFF;
106 pkt->data[palette_size + 3] = (size >> 8) & 0xFF;
107 ret = get_buffer(s->pb, pkt->data + palette_size + 4, size - 4) + 4;
108 if (ret < size) {
113 pkt->size = ret + palette_size;
124 int ret, size; local
126 size = url_ftell(s->pb);
128 size
84 avs_read_video_packet(AVFormatContext * s, AVPacket * pkt, AvsBlockType type, int sub_type, int size, uint8_t * palette, int palette_size) argument
145 int sub_type = 0, size = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/s390/lib/
H A Duaccess_std.c32 size_t copy_from_user_std(size_t size, const void __user *ptr, void *x) argument
56 " "ALR" %4,%0\n" /* copy remaining size, subtract 1 */
68 : "+a" (size), "+a" (ptr), "+a" (x), "+a" (tmp1), "=a" (tmp2)
70 return size;
73 static size_t copy_from_user_std_check(size_t size, const void __user *ptr, argument
76 if (size <= 1024)
77 return copy_from_user_std(size, ptr, x);
78 return copy_from_user_pt(size, ptr, x);
81 size_t copy_to_user_std(size_t size, void __user *ptr, const void *x) argument
107 : "+a" (size), "
112 copy_to_user_std_check(size_t size, void __user *ptr, const void *x) argument
120 copy_in_user_std(size_t size, void __user *to, const void __user *from) argument
152 clear_user_std(size_t size, void __user *to) argument
188 strnlen_user_std(size_t size, const char __user *src) argument
209 strncpy_from_user_std(size_t size, const char __user *src, char *dst) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/mm/
H A Dc-r3k.c33 unsigned long flags, status, dummy, size; local
48 size = 0;
50 for (size = 128; size <= 0x40000; size <<= 1)
51 *(p + size) = 0;
53 for (size = 128;
54 (size <= 0x40000) && (*(p + size) == 0);
55 size <<
108 unsigned long size, i, flags; local
165 unsigned long size, i, flags; local
297 r3k_dma_cache_wback_inv(unsigned long start, unsigned long size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/
H A Ddma-mapping.h12 extern void *consistent_alloc(gfp_t gfp, size_t size, dma_addr_t *handle);
13 extern void consistent_free(void *vaddr, size_t size);
14 extern void consistent_sync(void *vaddr, size_t size, int direction);
28 static inline void *dma_alloc_coherent(struct device *dev, size_t size, argument
34 ret = sh_mv.mv_consistent_alloc(dev, size, dma_handle, flag);
39 return consistent_alloc(flag, size, dma_handle);
42 static inline void dma_free_coherent(struct device *dev, size_t size, argument
48 ret = sh_mv.mv_consistent_free(dev, size, vaddr, dma_handle);
53 consistent_free(vaddr, size);
60 static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size, argument
66 dma_map_single(struct device *dev, void *ptr, size_t size, enum dma_data_direction dir) argument
99 dma_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction dir) argument
106 dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size, enum dma_data_direction dir) argument
112 dma_sync_single(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction dir) argument
122 dma_sync_single_range(struct device *dev, dma_addr_t dma_handle, unsigned long offset, size_t size, enum dma_data_direction dir) argument
148 dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction dir) argument
155 dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction dir) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dfloppy.h43 #define fd_dma_mem_alloc(size) SW._dma_mem_alloc(size)
44 #define fd_dma_setup(addr, size, mode, io) SW._dma_setup(addr, size, mode, io)
155 static unsigned long dma_mem_alloc(unsigned long size) argument
157 return __get_dma_pages(GFP_KERNEL,get_order(size));
161 static unsigned long vdma_mem_alloc(unsigned long size) argument
163 return (unsigned long) vmalloc(size);
167 #define nodma_mem_alloc(size) vdma_mem_alloc(size)
169 _fd_dma_mem_free(unsigned long addr, unsigned long size) argument
179 _fd_chose_dma_mode(char *addr, unsigned long size) argument
196 vdma_dma_setup(char *addr, unsigned long size, int mode, int io) argument
207 hard_dma_setup(char *addr, unsigned long size, int mode, int io) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Ddma-mapping.h16 void* (*alloc_coherent)(struct device *dev, size_t size,
18 void (*free_coherent)(struct device *dev, size_t size,
21 size_t size, int direction);
24 size_t size, int direction);
26 size_t size, int direction);
28 dma_addr_t dma_handle, size_t size,
31 dma_addr_t dma_handle, size_t size,
35 size_t size, int direction);
38 size_t size, int direction);
72 extern void *dma_alloc_coherent(struct device *dev, size_t size,
78 dma_map_single(struct device *hwdev, void *ptr, size_t size, int direction) argument
86 dma_unmap_single(struct device *dev, dma_addr_t addr,size_t size, int direction) argument
99 dma_sync_single_for_cpu(struct device *hwdev, dma_addr_t dma_handle, size_t size, int direction) argument
110 dma_sync_single_for_device(struct device *hwdev, dma_addr_t dma_handle, size_t size, int direction) argument
121 dma_sync_single_range_for_cpu(struct device *hwdev, dma_addr_t dma_handle, unsigned long offset, size_t size, int direction) argument
133 dma_sync_single_range_for_device(struct device *hwdev, dma_addr_t dma_handle, unsigned long offset, size_t size, int direction) argument
194 dma_cache_sync(struct device *dev, void *vaddr, size_t size, enum dma_data_direction dir) argument
[all...]
H A Dfloppy.h43 #define fd_dma_mem_alloc(size) SW._dma_mem_alloc(size)
44 #define fd_dma_setup(addr, size, mode, io) SW._dma_setup(addr, size, mode, io)
154 static unsigned long dma_mem_alloc(unsigned long size) argument
156 return __get_dma_pages(GFP_KERNEL|__GFP_NORETRY,get_order(size));
160 static unsigned long vdma_mem_alloc(unsigned long size) argument
162 return (unsigned long) vmalloc(size);
166 #define nodma_mem_alloc(size) vdma_mem_alloc(size)
168 _fd_dma_mem_free(unsigned long addr, unsigned long size) argument
178 _fd_chose_dma_mode(char *addr, unsigned long size) argument
195 vdma_dma_setup(char *addr, unsigned long size, int mode, int io) argument
206 hard_dma_setup(char *addr, unsigned long size, int mode, int io) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-powerpc/
H A Ddma-mapping.h28 extern void *__dma_alloc_coherent(size_t size, dma_addr_t *handle, gfp_t gfp);
29 extern void __dma_free_coherent(size_t size, void *vaddr);
30 extern void __dma_sync(void *vaddr, size_t size, int direction);
32 size_t size, int direction);
39 #define __dma_alloc_coherent(gfp, size, handle) NULL
40 #define __dma_free_coherent(size, addr) ((void)0)
41 #define __dma_sync(addr, size, rw) ((void)0)
51 void * (*alloc_coherent)(struct device *dev, size_t size,
53 void (*free_coherent)(struct device *dev, size_t size,
56 size_t size, enu
105 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *dma_handle, gfp_t flag) argument
114 dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t dma_handle) argument
123 dma_map_single(struct device *dev, void *cpu_addr, size_t size, enum dma_data_direction direction) argument
133 dma_unmap_single(struct device *dev, dma_addr_t dma_addr, size_t size, enum dma_data_direction direction) argument
143 dma_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction direction) argument
154 dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size, enum dma_data_direction direction) argument
206 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t * dma_handle, gfp_t gfp) argument
232 dma_free_coherent(struct device *dev, size_t size, void *vaddr, dma_addr_t dma_handle) argument
243 dma_map_single(struct device *dev, void *ptr, size_t size, enum dma_data_direction direction) argument
257 dma_map_page(struct device *dev, struct page *page, unsigned long offset, size_t size, enum dma_data_direction direction) argument
293 dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction direction) argument
298 __dma_sync(bus_to_virt(dma_handle), size, direction); local
301 dma_sync_single_for_device(struct device *dev, dma_addr_t dma_handle, size_t size, enum dma_data_direction direction) argument
306 __dma_sync(bus_to_virt(dma_handle), size, direction); local
365 dma_sync_single_range_for_cpu(struct device *dev, dma_addr_t dma_handle, unsigned long offset, size_t size, enum dma_data_direction direction) argument
373 dma_sync_single_range_for_device(struct device *dev, dma_addr_t dma_handle, unsigned long offset, size_t size, enum dma_data_direction direction) argument
381 dma_cache_sync(struct device *dev, void *vaddr, size_t size, enum dma_data_direction direction) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-dbg.c75 #define ohci_dbg_sw(ohci, next, size, format, arg...) \
79 s_len = scnprintf (*next, *size, format, ## arg ); \
80 *size -= s_len; *next += s_len; \
91 unsigned *size)
93 ohci_dbg_sw (ohci, next, size, "%s 0x%08x%s%s%s%s%s%s%s%s%s\n",
113 unsigned *size)
116 ohci_dbg_sw (ohci, next, size, "%s %08x\n", label, value);
132 ohci_dump_status (struct ohci_hcd *controller, char **next, unsigned *size) argument
138 ohci_dbg_sw (controller, next, size,
144 ohci_dbg_sw (controller, next, size,
86 ohci_dump_intr_mask( struct ohci_hcd *ohci, char *label, u32 mask, char **next, unsigned *size) argument
108 maybe_print_eds( struct ohci_hcd *ohci, char *label, u32 value, char **next, unsigned *size) argument
221 ohci_dump_roothub( struct ohci_hcd *controller, int verbose, char **next, unsigned *size) argument
407 unsigned temp, size = count; local
504 unsigned temp, size, seen_count; local
605 unsigned temp, size; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/
H A Dxattr.c73 size_t size, int flags)
83 error = security_inode_setxattr(dentry, name, value, size, flags);
88 error = inode->i_op->setxattr(dentry, name, value, size, flags);
92 size, flags);
98 size, flags);
109 vfs_getxattr(struct dentry *dentry, char *name, void *value, size_t size) argument
123 error = inode->i_op->getxattr(dentry, name, value, size);
131 size, error);
145 vfs_listxattr(struct dentry *d, char *list, size_t size) argument
154 error = d->d_inode->i_op->listxattr(d, list, size);
72 vfs_setxattr(struct dentry *dentry, char *name, void *value, size_t size, int flags) argument
196 setxattr(struct dentry *d, char __user *name, void __user *value, size_t size, int flags) argument
230 sys_setxattr(char __user *path, char __user *name, void __user *value, size_t size, int flags) argument
245 sys_lsetxattr(char __user *path, char __user *name, void __user *value, size_t size, int flags) argument
260 sys_fsetxattr(int fd, char __user *name, void __user *value, size_t size, int flags) argument
281 getxattr(struct dentry *d, char __user *name, void __user *value, size_t size) argument
315 sys_getxattr(char __user *path, char __user *name, void __user *value, size_t size) argument
330 sys_lgetxattr(char __user *path, char __user *name, void __user *value, size_t size) argument
345 sys_fgetxattr(int fd, char __user *name, void __user *value, size_t size) argument
363 listxattr(struct dentry *d, char __user *list, size_t size) argument
390 sys_listxattr(char __user *path, char __user *list, size_t size) argument
404 sys_llistxattr(char __user *path, char __user *list, size_t size) argument
418 sys_flistxattr(int fd, char __user *list, size_t size) argument
545 generic_getxattr(struct dentry *dentry, const char *name, void *buffer, size_t size) argument
565 unsigned int size = 0; local
589 generic_setxattr(struct dentry *dentry, const char *name, const void *value, size_t size, int flags) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/nfsd/
H A Dnfsctl.c74 static ssize_t write_svc(struct file *file, char *buf, size_t size);
75 static ssize_t write_add(struct file *file, char *buf, size_t size);
76 static ssize_t write_del(struct file *file, char *buf, size_t size);
77 static ssize_t write_export(struct file *file, char *buf, size_t size);
78 static ssize_t write_unexport(struct file *file, char *buf, size_t size);
79 static ssize_t write_getfd(struct file *file, char *buf, size_t size);
80 static ssize_t write_getfs(struct file *file, char *buf, size_t size);
81 static ssize_t write_filehandle(struct file *file, char *buf, size_t size);
82 static ssize_t write_threads(struct file *file, char *buf, size_t size);
83 static ssize_t write_pool_threads(struct file *file, char *buf, size_t size);
112 nfsctl_transaction_write(struct file *file, const char __user *buf, size_t size, loff_t *pos) argument
133 nfsctl_transaction_read(struct file *file, char __user *buf, size_t size, loff_t *pos) argument
173 write_svc(struct file *file, char *buf, size_t size) argument
182 write_add(struct file *file, char *buf, size_t size) argument
191 write_del(struct file *file, char *buf, size_t size) argument
200 write_export(struct file *file, char *buf, size_t size) argument
209 write_unexport(struct file *file, char *buf, size_t size) argument
219 write_getfs(struct file *file, char *buf, size_t size) argument
253 write_getfd(struct file *file, char *buf, size_t size) argument
292 write_filehandle(struct file *file, char *buf, size_t size) argument
350 write_threads(struct file *file, char *buf, size_t size) argument
376 write_pool_threads(struct file *file, char *buf, size_t size) argument
438 write_versions(struct file *file, char *buf, size_t size) argument
501 write_ports(struct file *file, char *buf, size_t size) argument
563 write_maxblksize(struct file *file, char *buf, size_t size) argument
593 write_leasetime(struct file *file, char *buf, size_t size) argument
614 write_recoverydir(struct file *file, char *buf, size_t size) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/mm/
H A Dpgtable.c59 unsigned int size, int flags);
145 ioremap(phys_addr_t addr, unsigned long size) argument
147 return __ioremap(addr, size, _PAGE_NO_CACHE);
151 ioremap64(unsigned long long addr, unsigned long size) argument
153 return __ioremap(addr, size, _PAGE_NO_CACHE);
157 ioremap(phys_addr_t addr, unsigned long size) argument
159 phys_addr_t addr64 = fixup_bigphys_addr(addr, size);
161 return ioremap64(addr64, size);
166 __ioremap(phys_addr_t addr, unsigned long size, unsigned long flags) argument
179 size
324 io_block_mapping(unsigned long virt, phys_addr_t phys, unsigned int size, int flags) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/include/
H A Dclitar.h33 char size[12]; member in struct:hblock::header
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dtalloctort.c39 size_t size = 1<<(i/3+j); local
41 p = talloc(ctx[i], size);
45 (double) size);
49 memset(p, 'A' + j, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/lock/
H A Dlock_util.c23 * pair. If the size is right, then we do the fast hash.
57 if (dbt->size == sizeof(DB_LOCK_ILOCK))
60 return (__ham_func5(NULL, dbt->data, dbt->size));
76 if (lock_obj->lockobj.size == sizeof(DB_LOCK_ILOCK))
79 return (__ham_func5(NULL, obj_data, lock_obj->lockobj.size));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dprogress.h43 void Curl_pgrsSetDownloadSize(struct SessionHandle *data, curl_off_t size);
44 void Curl_pgrsSetUploadSize(struct SessionHandle *data, curl_off_t size);
45 void Curl_pgrsSetDownloadCounter(struct SessionHandle *data, curl_off_t size);
46 void Curl_pgrsSetUploadCounter(struct SessionHandle *data, curl_off_t size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/packages/OS400/
H A Dos400sys.h45 extern char * (* Curl_thread_buffer)(localkey_t key, long size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ui/
H A Dui_util.c69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
74 if (size < 1)
80 ok = UI_add_input_string(ui,prompt,0,buf,0,size-1);
82 ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/extensions/
H A Dlibip6t_eui64.c8 .size = XT_ALIGN(sizeof(int)),
H A Dlibipt_MIRROR.c8 .size = XT_ALIGN(0),
H A Dlibipt_unclean.c8 .size = XT_ALIGN(0),
H A Dlibxt_NOTRACK.c8 .size = XT_ALIGN(0),
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ui/
H A Dui_util.c69 int UI_UTIL_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
74 if (size < 1)
80 ok = UI_add_input_string(ui,prompt,0,buf,0,size-1);
82 ok = UI_add_verify_string(ui,prompt,0,buff,0,size-1,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/tt/
H A Duaccess-tt.h22 #define is_stack(addr, size) \
25 (((unsigned long) (addr) + (size)) <= STACK_TOP))
27 #define access_ok_tt(type, addr, size) \
28 (is_stack(addr, size))

Completed in 308 milliseconds

<<11121314151617181920>>