Searched refs:size (Results 251 - 275 of 11939) sorted by relevance

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/webserver/default/
H A Damuleweb-main-search.php37 font-size: 18px;
43 font-size: 14px;
66 font-size: 12px;
71 font-size: 14px;
76 font-size: 12px;
81 font-size: 12px;
88 font-size: 12px;
93 font-size: 12px;
100 font-size: 12px;
159 <input name="searchval" type="text" id="searchval4" size
[all...]
H A Damuleweb-main-shared.php71 font-size: 18px;
77 font-size: 14px;
100 font-size: 12px;
105 font-size: 14px;
110 font-size: 12px;
115 font-size: 12px;
122 font-size: 12px;
127 font-size: 12px;
134 font-size: 12px;
225 <th><a href="amuleweb-main-shared.php?sort=size">Siz
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/pci/
H A Dops-msc.c90 int where, int size, u32 * val)
94 if ((size == 2) && (where & 1))
96 else if ((size == 4) && (where & 3))
103 if (size == 1)
105 else if (size == 2)
114 int where, int size, u32 val)
118 if ((size == 2) && (where & 1))
120 else if ((size == 4) && (where & 3))
123 if (size == 4)
130 if (size
89 msc_pcibios_read(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 * val) argument
113 msc_pcibios_write(struct pci_bus *bus, unsigned int devfn, int where, int size, u32 val) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DMapProxy.java32 int size = map.size();
33 keys = (K[]) new Object[size];
34 values = (V[]) new Object[size];
44 int size = values.length;
45 Map<K,V> map = newInstance(size);
46 for (int i = 0; i < size; i += 1) {
52 protected abstract Map<K,V> newInstance(int size); argument
59 protected Map<K,V> newInstance(int size) { argument
60 return new HashMap<K,V>(size);
69 newInstance(int size) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/lock/
H A Dlock_list.c21 * object and a page list. A lock object consists of a 16-bit size
52 #define RET_SIZE(size, count) ((size) + \
65 #define PUT_SIZE(dp, size) do { u_int16_t __s = (size); \
77 (obj)->data, (obj)->size); \
79 DB_ALIGN((obj)->size, \
90 #define GET_SIZE(dp, size) do { LOGCOPY_16(env, &size, dp); \
112 u_int32_t i, j, nfid, npgno, size; local
229 u_int16_t npgno, size; local
321 u_int16_t npgno, size; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libpng/libpng-1.2.50/
H A Dpngmem.c43 png_size_t size; local
47 size = png_sizeof(png_info);
49 size = png_sizeof(png_struct);
59 struct_ptr = (*(malloc_fn))(png_ptr, (png_uint_32)size);
63 struct_ptr = (png_voidp)farmalloc(size);
65 png_memset(struct_ptr, 0, size);
99 /* Allocate memory. For reasonable files, size should never exceed
113 * Note that we can't use png_size_t for the "size" declaration,
119 png_calloc(png_structp png_ptr, png_uint_32 size) argument
123 ret = (png_malloc(png_ptr, size));
130 png_malloc(png_structp png_ptr, png_uint_32 size) argument
148 png_malloc_default(png_structp png_ptr, png_uint_32 size) argument
361 png_size_t size; local
446 png_calloc(png_structp png_ptr, png_uint_32 size) argument
457 png_malloc(png_structp png_ptr, png_uint_32 size) argument
475 png_malloc_default(png_structp png_ptr, png_uint_32 size) argument
571 png_malloc_warn(png_structp png_ptr, png_uint_32 size) argument
590 png_size_t size; local
603 png_size_t size; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dutil_file.c105 char *file_pload(char *syscmd, size_t *size) argument
140 if (size) {
141 *size = total;
155 size_t size; local
162 size = sbuf.st_size;
164 size = MIN(size, maxsize);
167 p = (char *)SMB_MALLOC(size+1);
172 if (read(fd, p, size) != size) {
189 file_load(const char *fname, size_t *size, size_t maxsize) argument
212 unmap_file(void* start, size_t size) argument
232 map_file(char *fname, size_t size) argument
269 file_lines_parse(char *p, size_t size, int *numlines) argument
321 size_t size = 0; local
340 size_t size; local
358 size_t size; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/mm/
H A Ddma-noncoherent.c95 ppc_vm_region_alloc(struct ppc_vm_region *head, size_t size, gfp_t gfp) argument
97 unsigned long addr = head->vm_start, end = head->vm_end - size;
108 if ((addr + size) < addr)
110 if ((addr + size) <= c->vm_start)
123 new->vm_end = addr + size;
153 __dma_alloc_coherent(struct device *dev, size_t size, dma_addr_t *handle, gfp_t gfp) argument
181 size = PAGE_ALIGN(size);
183 if ((limit && size >= limit) ||
184 size >
206 memset(page_address(page), 0, size); local
255 __dma_free_coherent(size_t size, void *vaddr) argument
317 __dma_sync(void *vaddr, size_t size, int direction) argument
355 __dma_sync_page_highmem(struct page *page, unsigned long offset, size_t size, int direction) argument
391 __dma_sync_page(struct page *page, unsigned long offset, size_t size, int direction) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/base/
H A Ddma-mapping.c17 size_t size; member in struct:dma_devres
26 dma_free_coherent(dev, this->size, this->vaddr, this->dma_handle);
33 dma_free_noncoherent(dev, this->size, this->vaddr, this->dma_handle);
41 WARN_ON(this->size != match->size ||
51 * @size: Size of allocation
61 void * dmam_alloc_coherent(struct device *dev, size_t size, argument
71 vaddr = dma_alloc_coherent(dev, size, dma_handle, gfp);
79 dr->size = size;
96 dmam_free_coherent(struct device *dev, size_t size, void *vaddr, dma_addr_t dma_handle) argument
120 dmam_alloc_noncoherent(struct device *dev, size_t size, dma_addr_t *dma_handle, gfp_t gfp) argument
155 dmam_free_noncoherent(struct device *dev, size_t size, void *vaddr, dma_addr_t dma_handle) argument
186 dmam_declare_coherent_memory(struct device *dev, dma_addr_t bus_addr, dma_addr_t device_addr, size_t size, int flags) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Dbitops.h406 * @size: size of the array in bits
409 unsigned long size)
411 typedef struct { long _[__BITOPS_WORDS(size)]; } addrtype;
434 : "+&a" (bytes), "+&d" (size)
443 * @size: size of the array in bits
446 unsigned long size)
448 typedef struct { long _[__BITOPS_WORDS(size)]; } addrtype;
471 : "+&a" (bytes), "+&a" (size)
408 __ffz_word_loop(const unsigned long *addr, unsigned long size) argument
445 __ffs_word_loop(const unsigned long *addr, unsigned long size) argument
613 find_first_zero_bit(const unsigned long *addr, unsigned long size) argument
633 find_first_bit(const unsigned long * addr, unsigned long size) argument
651 find_next_zero_bit(const unsigned long * addr, unsigned long size, unsigned long offset) argument
687 find_next_bit(const unsigned long * addr, unsigned long size, unsigned long offset) argument
756 ext2_find_first_zero_bit(void *vaddr, unsigned int size) argument
767 ext2_find_next_zero_bit(void *vaddr, unsigned long size, unsigned long offset) argument
796 ext2_find_first_bit(void *vaddr, unsigned long size) argument
808 ext2_find_next_bit(void *vaddr, unsigned long size, unsigned long offset) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-core/
H A Dutil.h31 void avahi_hexdump(const void *p, size_t size);
33 char *avahi_format_mac_address(char *t, size_t l, const uint8_t* mac, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-core/
H A Dutil.h31 void avahi_hexdump(const void *p, size_t size);
33 char *avahi_format_mac_address(char *t, size_t l, const uint8_t* mac, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/x86/
H A Dsvq1enc_init.c28 intptr_t size);
30 intptr_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Drtpenc_h263.c43 void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size) argument
51 while (size > 0) {
53 if (size >= 2 && (buf1[0] == 0) && (buf1[1] == 0)) {
56 size -= 2;
62 len = FFMIN(max_packet_size - 2, size);
65 if (len < size) {
76 ff_rtp_send_data(s1, s->buf, q - s->buf, (len == size));
79 size -= len;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavutil/
H A Dfile.h35 * *size to the size in bytes of the buffer in *bufptr.
43 int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
49 * @param size size in bytes of bufptr, must be the same as returned
52 void av_file_unmap(uint8_t *bufptr, size_t size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/mtools-4.0.10/
H A Dhash.c27 int size; /* actual size of the array */ member in struct:hashtable
41 static int alloc_ht(T_HashTable *H, int size) argument
46 if (sizes[i] > size*4 )
50 if (sizes[i] > size*2 )
54 if (sizes[i] > size)
58 size = sizes[i];
59 if(size < H->size)
60 size
74 make_ht(T_HashFunc f1, T_HashFunc f2, T_ComparFunc c, int size, T_HashTable **H) argument
131 int size,i; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ui/
H A Dui_compat.c65 int _ossl_old_des_read_pw(char *buf, char *buff, int size, const char *prompt, argument
68 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dpostinmemory.c29 size_t size; member in struct:MemoryStruct
33 WriteMemoryCallback(void *contents, size_t size, size_t nmemb, void *userp) argument
35 size_t realsize = size * nmemb;
38 mem->memory = realloc(mem->memory, mem->size + realsize + 1);
45 memcpy(&(mem->memory[mem->size]), contents, realsize);
46 mem->size += realsize;
47 mem->memory[mem->size] = 0;
60 chunk.size = 0; /* no data at this point */
93 * Now, our chunk.memory points to a memory block that is chunk.size
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/ttpci/
H A Dav7110_ipack.h4 extern int av7110_ipack_init(struct ipack *p, int size,
5 void (*func)(u8 *buf, int size, void *priv));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/txx9/
H A Dspi.h19 int spi_eeprom_register(int busid, int chipid, int size);
23 static inline int spi_eeprom_register(int busid, int chipid, int size) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/parisc/mm/
H A Dioremap.c27 void __iomem * __ioremap(unsigned long phys_addr, unsigned long size, unsigned long flags) argument
35 unsigned long end = phys_addr + size - 1;
44 /* Don't allow wraparound or zero size */
45 last_addr = phys_addr + size - 1;
46 if (!size || last_addr < phys_addr)
57 t_end = t_addr + (size - 1);
74 size = PAGE_ALIGN(last_addr + 1) - phys_addr;
79 area = get_vm_area(size, VM_IOREMAP);
84 if (ioremap_page_range((unsigned long)addr, (unsigned long)addr + size,
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/boot/
H A Dof.h9 void *of_claim(unsigned long virt, unsigned long size, unsigned long align);
10 void *of_vmlinux_alloc(unsigned long size);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/include/asm/
H A Dedac.h19 static __inline__ void atomic_scrub(void *va, u32 size) argument
25 for (i = 0; i < size / sizeof(*virt_addr); i++, virt_addr++) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/scsi/qla4xxx/
H A Dql4_dbg.c13 void qla4xxx_dump_buffer(void *b, uint32_t size) argument
22 for (cnt = 0; cnt < size; c++) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/asm-generic/bitops/
H A Dminix.h12 #define minix_find_first_zero_bit(addr,size) \
13 find_first_zero_bit((unsigned long *)(addr),(size))

Completed in 215 milliseconds

<<11121314151617181920>>