Searched refs:size (Results 1 - 25 of 23208) sorted by relevance

1234567891011>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/asm-generic/
H A Dgetorder.h9 static inline __attribute_const__ int get_order(unsigned long size) argument
13 size = (size - 1) >> (PAGE_SHIFT - 1);
16 size >>= 1;
18 } while (size);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/asm-generic/
H A Dgetorder.h9 static inline __attribute_const__ int get_order(unsigned long size) argument
13 size = (size - 1) >> (PAGE_SHIFT - 1);
16 size >>= 1;
18 } while (size);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/drivers/staging/octeon/
H A Dethernet-mem.h28 int cvm_oct_mem_fill_fpa(int pool, int size, int elements);
29 void cvm_oct_mem_empty_fpa(int pool, int size, int elements);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/staging/octeon/
H A Dethernet-mem.h28 int cvm_oct_mem_fill_fpa(int pool, int size, int elements);
29 void cvm_oct_mem_empty_fpa(int pool, int size, int elements);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/arch/x86/include/asm/xen/
H A Dgrant_table.h4 #define xen_alloc_vm_area(size) alloc_vm_area(size)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/arch/x86/include/asm/xen/
H A Dgrant_table.h4 #define xen_alloc_vm_area(size) alloc_vm_area(size)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/asm-generic/bitops/
H A Dfind.h6 size, unsigned long offset);
9 long size, unsigned long offset);
12 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
13 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/asm-generic/bitops/
H A Dfind.h6 size, unsigned long offset);
9 long size, unsigned long offset);
12 #define find_first_bit(addr, size) find_next_bit((addr), (size), 0)
13 #define find_first_zero_bit(addr, size) find_next_zero_bit((addr), (size), 0)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/include/linux/
H A Dcirc_buf.h15 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
17 /* Return space available, 0..size-1. We always leave one free char
20 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) \
26 ({int end = (size) - (tail); \
27 int n = ((head) + end) & ((size)-1); \
31 #define CIRC_SPACE_TO_END(head,tail,size) \
32 ({int end = (size)
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/linux/
H A Dcirc_buf.h15 #define CIRC_CNT(head,tail,size) (((head) - (tail)) & ((size)-1))
17 /* Return space available, 0..size-1. We always leave one free char
20 #define CIRC_SPACE(head,tail,size) CIRC_CNT((tail),((head)+1),(size))
25 #define CIRC_CNT_TO_END(head,tail,size) \
26 ({int end = (size) - (tail); \
27 int n = ((head) + end) & ((size)-1); \
31 #define CIRC_SPACE_TO_END(head,tail,size) \
32 ({int end = (size)
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/lzma/C/
H A DAlloc.h8 void *MyAlloc(size_t size);
15 void *MidAlloc(size_t size);
17 void *BigAlloc(size_t size);
22 #define MidAlloc(size) MyAlloc(size)
24 #define BigAlloc(size) MyAlloc(size)
H A DAlloc.c20 void *MyAlloc(size_t size) argument
22 if (size == 0)
25 fprintf(stderr, "\nAlloc %10d bytes; count = %10d", size, g_allocCount++);
27 return malloc(size);
41 void *MidAlloc(size_t size) argument
43 if (size == 0)
46 fprintf(stderr, "\nAlloc_Mid %10d bytes; count = %10d", size, g_allocCountMid++);
48 return VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE);
74 SIZE_T size = 0; local
79 size
87 BigAlloc(size_t size) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/lzma/C/
H A DAlloc.h8 void *MyAlloc(size_t size);
15 void *MidAlloc(size_t size);
17 void *BigAlloc(size_t size);
22 #define MidAlloc(size) MyAlloc(size)
24 #define BigAlloc(size) MyAlloc(size)
H A DAlloc.c20 void *MyAlloc(size_t size) argument
22 if (size == 0)
25 fprintf(stderr, "\nAlloc %10d bytes; count = %10d", size, g_allocCount++);
27 return malloc(size);
41 void *MidAlloc(size_t size) argument
43 if (size == 0)
46 fprintf(stderr, "\nAlloc_Mid %10d bytes; count = %10d", size, g_allocCountMid++);
48 return VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE);
74 SIZE_T size = 0; local
79 size
87 BigAlloc(size_t size) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/lzma/C/
H A DAlloc.h8 void *MyAlloc(size_t size);
15 void *MidAlloc(size_t size);
17 void *BigAlloc(size_t size);
22 #define MidAlloc(size) MyAlloc(size)
24 #define BigAlloc(size) MyAlloc(size)
H A DAlloc.c20 void *MyAlloc(size_t size) argument
22 if (size == 0)
25 fprintf(stderr, "\nAlloc %10d bytes; count = %10d", size, g_allocCount++);
27 return malloc(size);
41 void *MidAlloc(size_t size) argument
43 if (size == 0)
46 fprintf(stderr, "\nAlloc_Mid %10d bytes; count = %10d", size, g_allocCountMid++);
48 return VirtualAlloc(0, size, MEM_COMMIT, PAGE_READWRITE);
74 SIZE_T size = 0; local
79 size
87 BigAlloc(size_t size) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/shared/
H A Dat_cmd.h5 extern char *Gobi_SimCard(char *line, int size); //get sim card status line
8 extern char *Gobi_IMEI(char *line, int size); //get device IMEI number
10 extern char *Gobi_ConnectISP(char *line, int size); //get current connect ISP name
20 char * Gobi_FwVersion(char *line, int size); //get FW version string
21 char * Gobi_QcnVersion(char *line, int size); //get Qcn version string
23 char * Gobi_SelectBand(const char *band, char *line, int size); //set LTE band. could be B3/B7/B20/B38 .
24 char * Gobi_BandChannel(char *line, int size); //get Band and Channel
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/shared/
H A Dat_cmd.h5 extern char *Gobi_SimCard(char *line, int size); //get sim card status line
8 extern char *Gobi_IMEI(char *line, int size); //get device IMEI number
10 extern char *Gobi_ConnectISP(char *line, int size); //get current connect ISP name
20 char * Gobi_FwVersion(char *line, int size); //get FW version string
21 char * Gobi_QcnVersion(char *line, int size); //get Qcn version string
23 char * Gobi_SelectBand(const char *band, char *line, int size); //set LTE band. could be B3/B7/B20/B38 .
24 char * Gobi_BandChannel(char *line, int size); //get Band and Channel
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/shared/
H A Dat_cmd.h5 extern char *Gobi_SimCard(char *line, int size); //get sim card status line
8 extern char *Gobi_IMEI(char *line, int size); //get device IMEI number
10 extern char *Gobi_ConnectISP(char *line, int size); //get current connect ISP name
20 char * Gobi_FwVersion(char *line, int size); //get FW version string
21 char * Gobi_QcnVersion(char *line, int size); //get Qcn version string
23 char * Gobi_SelectBand(const char *band, char *line, int size); //set LTE band. could be B3/B7/B20/B38 .
24 char * Gobi_BandChannel(char *line, int size); //get Band and Channel
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/tools/misc/lzma_src/C/
H A DAlloc.h11 void *MyAlloc(size_t size);
18 void *MidAlloc(size_t size);
20 void *BigAlloc(size_t size);
25 #define MidAlloc(size) MyAlloc(size)
27 #define BigAlloc(size) MyAlloc(size)
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/ntfs/
H A Dmalloc.h31 * @size: number of bytes to allocate
36 * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and
42 static inline void *__ntfs_malloc(unsigned long size, gfp_t gfp_mask) argument
44 if (likely(size <= PAGE_SIZE)) {
45 BUG_ON(!size);
50 if (likely((size >> PAGE_SHIFT) < totalram_pages))
51 return __vmalloc(size, gfp_mask, PAGE_KERNEL);
57 * @size: number of bytes to allocate
59 * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and
64 static inline void *ntfs_malloc_nofs(unsigned long size) argument
81 ntfs_malloc_nofs_nofail(unsigned long size) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/ntfs/
H A Dmalloc.h31 * @size: number of bytes to allocate
36 * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and
42 static inline void *__ntfs_malloc(unsigned long size, gfp_t gfp_mask) argument
44 if (likely(size <= PAGE_SIZE)) {
45 BUG_ON(!size);
50 if (likely((size >> PAGE_SHIFT) < totalram_pages))
51 return __vmalloc(size, gfp_mask, PAGE_KERNEL);
57 * @size: number of bytes to allocate
59 * Allocates @size bytes of memory, rounded up to multiples of PAGE_SIZE and
64 static inline void *ntfs_malloc_nofs(unsigned long size) argument
81 ntfs_malloc_nofs_nofail(unsigned long size) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/os_brew/
H A Dfwrite.c21 fwrite(buf, size, count, fp)
23 size_t size, count;
28 return (size * count);
30 return ((size_t)IFILE_Write(fp, buf, size * count) / size);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/db-4.8.30/os_brew/
H A Dfwrite.c21 fwrite(buf, size, count, fp)
23 size_t size, count;
28 return (size * count);
30 return ((size_t)IFILE_Write(fp, buf, size * count) / size);
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/db-4.8.30/os_brew/
H A Dfwrite.c21 fwrite(buf, size, count, fp)
23 size_t size, count;
28 return (size * count);
30 return ((size_t)IFILE_Write(fp, buf, size * count) / size);

Completed in 163 milliseconds

1234567891011>>