Searched refs:size (Results 51 - 75 of 5716) sorted by relevance

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68k/
H A Dzorro.h19 unsigned long size)
21 return __ioremap(physaddr, size, IOMAP_NOCACHE_SER);
25 unsigned long size)
27 return __ioremap(physaddr, size, IOMAP_NOCACHE_NONSER);
31 unsigned long size)
33 return __ioremap(physaddr, size, IOMAP_WRITETHROUGH);
36 unsigned long size)
38 return __ioremap(physaddr, size, IOMAP_FULL_CACHING);
18 z_remap_nocache_ser(unsigned long physaddr, unsigned long size) argument
24 z_remap_nocache_nonser(unsigned long physaddr, unsigned long size) argument
30 z_remap_writethrough(unsigned long physaddr, unsigned long size) argument
35 z_remap_fullcache(unsigned long physaddr, unsigned long size) argument
H A Datari_stram.h9 void *atari_stram_alloc(long size, const char *owner);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-x86_64/
H A Dedac.h6 static __inline__ void atomic_scrub(void *va, u32 size) argument
11 for (i = 0; i < size / 4; i++, virt_addr++)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djinclude.h54 * NOTE: we assume the size parameters to these functions are of type size_t.
61 #define MEMZERO(target,size) bzero((void *)(target), (size_t)(size))
62 #define MEMCOPY(dest,src,size) bcopy((const void *)(src), (void *)(dest), (size_t)(size))
67 #define MEMZERO(target,size) memset((void *)(target), 0, (size_t)(size))
68 #define MEMCOPY(dest,src,size) memcpy((void *)(dest), (const void *)(src), (size_t)(size))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/avr32/mm/
H A Ddma-coherent.c14 void dma_cache_sync(struct device *dev, void *vaddr, size_t size, int direction) argument
24 dma_cache_inv(vaddr, size);
27 dma_cache_wback(vaddr, size);
30 dma_cache_wback_inv(vaddr, size);
38 static struct page *__dma_alloc(struct device *dev, size_t size, argument
44 size = PAGE_ALIGN(size);
45 order = get_order(size);
61 invalidate_dcache_region(phys_to_virt(page_to_phys(page)), size);
64 free = page + (size >> PAGE_SHIF
78 __dma_free(struct device *dev, size_t size, struct page *page, dma_addr_t handle) argument
87 dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) argument
101 dma_free_coherent(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle) argument
115 dma_alloc_writecombine(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) argument
133 dma_free_writecombine(struct device *dev, size_t size, void *cpu_addr, dma_addr_t handle) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os/
H A Dos_stack.c29 size_t i, size; local
37 size = backtrace(array, sizeof(array) / sizeof(array[0]));
38 strings = backtrace_symbols(array, size);
40 for (i = 0; i < size; ++i)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/src/
H A Dtool_cb_hdr.h30 size_t tool_header_cb(void *ptr, size_t size, size_t nmemb, void *userdata);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Drtp_h264.h28 void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dbuffer.h24 int size,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/drivers/
H A Dcow_sys.h9 static inline void *cow_malloc(int size) argument
11 return um_kmalloc(size);
36 static inline int cow_write_file(int fd, void *buf, int size) argument
38 return os_write_file(fd, buf, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-i386/
H A Dunmap.c13 int switcheroo(int fd, int prot, void *from, void *to, int size) argument
15 if(munmap(to, size) < 0){
18 if(mmap2(to, size, prot, MAP_SHARED | MAP_FIXED, fd, 0) == (void*) -1 ){
21 if(munmap(from, size) < 0){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-x86_64/
H A Dunmap.c13 int switcheroo(int fd, int prot, void *from, void *to, int size) argument
15 if(munmap(to, size) < 0){
18 if(mmap(to, size, prot, MAP_SHARED | MAP_FIXED, fd, 0) == (void*) -1){
21 if(munmap(from, size) < 0){
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/archival/libunarchive/
H A Ddata_extract_to_stdout.c13 archive_handle->file_header->size);
H A Ddata_skip.c11 archive_handle->seek(archive_handle, archive_handle->file_header->size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-sh/saturn/
H A Dio.h15 extern void *saturn_ioremap(unsigned long offset, unsigned long size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-generic/bitops/
H A Dext2-non-atomic.h13 #define ext2_find_first_zero_bit(addr, size) \
14 generic_find_first_zero_le_bit((unsigned long *)(addr), (size))
15 #define ext2_find_next_zero_bit(addr, size, off) \
16 generic_find_next_zero_le_bit((unsigned long *)(addr), (size), (off))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-i386/
H A Dmmu.h12 int size; member in struct:__anon8792
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dinet_ntop.h27 char *Curl_inet_ntop(int af, const void *addr, char *buf, size_t size);
33 #define Curl_inet_ntop(af,addr,buf,size) \
34 inet_ntop(af,addr,buf,(curl_socklen_t)size)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Davstring.h50 * Copy the string src to dst, but no more than size - 1 bytes, and
57 * @param size size of destination buffer
60 size_t av_strlcpy(char *dst, const char *src, size_t size);
64 * no more than size - 1 bytes, and null-terminate dst.
67 * size <= strlen(dst).
71 * @param size size of destination buffer
74 size_t av_strlcat(char *dst, const char *src, size_t size);
82 * @param size tota
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/include/libavutil/
H A Davstring.h50 * Copy the string src to dst, but no more than size - 1 bytes, and
57 * @param size size of destination buffer
60 size_t av_strlcpy(char *dst, const char *src, size_t size);
64 * no more than size - 1 bytes, and null-terminate dst.
67 * size <= strlen(dst).
71 * @param size size of destination buffer
74 size_t av_strlcat(char *dst, const char *src, size_t size);
82 * @param size tota
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/include/
H A Dum_uaccess.h21 #define __under_task_size(addr, size) \
23 (((unsigned long) (addr) + (size)) < TASK_SIZE))
25 #define __access_ok_vsyscall(type, addr, size) \
28 ((unsigned long) (addr) + (size) <= FIXADDR_USER_END) && \
29 ((unsigned long) (addr) + (size) >= (unsigned long)(addr)))
31 #define __addr_range_nowrap(addr, size) \
32 ((unsigned long) (addr) <= ((unsigned long) (addr) + (size)))
34 #define access_ok(type, addr, size) \
35 (__addr_range_nowrap(addr, size) && \
36 (__under_task_size(addr, size) || \
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/cpu/mtrr/
H A Damd.c10 unsigned long *size, mtrr_type * type)
26 *size = 0;
30 * This needs a little explaining. The size is stored as an
34 * So to get a size we do invert the mask and add 1 to the lowest
35 * mask bit (4 as its 2 bits in). This gives us a size we then shift
45 *size = (low + 4) << (15 - PAGE_SHIFT);
50 unsigned long size, mtrr_type type)
54 <size> The size of the region. If this is 0 the region is disabled.
70 if (size
9 amd_get_mtrr(unsigned int reg, unsigned long *base, unsigned long *size, mtrr_type * type) argument
49 amd_set_mtrr(unsigned int reg, unsigned long base, unsigned long size, mtrr_type type) argument
91 amd_validate_add_page(unsigned long base, unsigned long size, unsigned int type) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm/mach-au1x00/
H A Dioremap.h17 static inline phys_t __fixup_bigphys_addr(phys_t phys_addr, phys_t size) argument
26 static inline phys_t fixup_bigphys_addr(phys_t phys_addr, phys_t size) argument
28 return __fixup_bigphys_addr(phys_addr, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-mips/mach-au1x00/
H A Dioremap.h17 static inline phys_t __fixup_bigphys_addr(phys_t phys_addr, phys_t size) argument
26 static inline phys_t fixup_bigphys_addr(phys_t phys_addr, phys_t size) argument
28 return __fixup_bigphys_addr(phys_addr, size);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-arm/arch-ixp4xx/
H A Dmemory.h19 void ixp4xx_adjust_zones(int node, unsigned long *size, unsigned long *holes);
21 #define arch_adjust_zones(node, size, holes) \
22 ixp4xx_adjust_zones(node, size, holes)

Completed in 280 milliseconds

1234567891011>>