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

<<11121314151617181920>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ui/
H A Dui_compat.c64 int _ossl_old_des_read_pw(char *buf,char *buff,int size,const char *prompt,int verify) argument
66 return UI_UTIL_read_pw(buf, buff, size, prompt, verify);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/examples/pcap2nbench/
H A Dntcreateandxresponse.cpp26 NtCreateAndXResponse::NtCreateAndXResponse(const uint8_t *data, size_t size) argument
28 if (size < 71) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/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/components/opensource/linux/linux-2.6.36/arch/sparc/include/asm/
H A Dbitext.h15 int size; member in struct:bit_map
25 extern void bit_map_init(struct bit_map *t, unsigned long *map, int size);
H A Djsflash.h25 __u32 size; member in struct:jsflash_ident_arg
36 __u32 size; member in struct:jsflash_program_arg
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/tile/include/asm/
H A Dhardwall.h25 * The HARDWALL_CREATE() ioctl is a macro with a "size" argument.
29 * The "size" is the number of bytes of cpu mask data.
32 #define HARDWALL_CREATE(size) \
33 _IOC(_IOC_READ, HARDWALL_IOCTL_BASE, _HARDWALL_CREATE, (size))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/kernel/
H A Dmem_detect.c18 unsigned long addr = 0, size; local
31 size = 0;
34 size += rzm;
35 if (memsize && addr + size >= memsize)
37 } while (type == tprot(addr + size));
40 chunk[i].size = size;
44 addr += size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/xtensa/include/asm/
H A Dflat.h6 #define flat_reloc_valid(reloc, size) ((reloc) <= (size))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/
H A Dflat.h10 #define flat_reloc_valid(reloc, size) ((reloc) <= (size))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/ar7/
H A Dmemory.c37 u32 size = (64 << 20); local
38 u32 *addr = (u32 *)KSEG1ADDR(AR7_SDRAM_BASE + size - 4);
44 size >>= 1;
45 tmpaddr -= size >> 2;
49 tmpaddr += size >> 2;
52 size <<= 1;
53 } while (size < (64 << 20));
57 return size;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/
H A Dedac.h6 static inline void atomic_scrub(void *va, u32 size) argument
12 for (i = 0; i < size / sizeof(unsigned long); i++) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/mips/include/asm/mach-generic/
H A Dioremap.h18 static inline phys_t fixup_bigphys_addr(phys_t phys_addr, phys_t size) argument
23 static inline void __iomem *plat_ioremap(phys_t offset, unsigned long size, argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/
H A Dprio_heap.c9 int heap_init(struct ptr_heap *heap, size_t size, gfp_t gfp_mask, argument
12 heap->ptrs = kmalloc(size, gfp_mask);
15 heap->size = 0;
16 heap->max = size / sizeof(void *);
32 if (heap->size < heap->max) {
34 pos = heap->size++;
58 if (left < heap->size && heap->gt(ptrs[left], p))
60 if (right < heap->size && heap->gt(ptrs[right], ptrs[largest]))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/debug/
H A Drepeat.c30 const size_t size = strlen(argv[2]); local
33 fwrite(argv[2], 1, size, stdout);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/xz/src/liblzma/simple/
H A Dsimple_encoder.c17 lzma_simple_props_size(uint32_t *size, const void *options) argument
20 *size = (opt == NULL || opt->start_offset == 0) ? 0 : 4;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dprio_heap.h15 * @size - current number of valid elements in @ptrs (in the range 0..@size-1
21 int size; member in struct:ptr_heap
26 * heap_init - initialize an empty heap with a given memory size
28 * @size: amount of memory to use in bytes
32 extern int heap_init(struct ptr_heap *heap, size_t size, gfp_t gfp_mask,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dadts.h41 int size, int pce_size);
43 uint8_t *buf, int size);
H A Davc.h28 int ff_avc_parse_nal_units(AVIOContext *s, const uint8_t *buf, int size);
29 int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size);
H A Drtpenc.h74 void ff_rtp_send_h264(AVFormatContext *s1, const uint8_t *buf1, int size);
75 void ff_rtp_send_h263(AVFormatContext *s1, const uint8_t *buf1, int size);
76 void ff_rtp_send_aac(AVFormatContext *s1, const uint8_t *buff, int size);
77 void ff_rtp_send_latm(AVFormatContext *s1, const uint8_t *buff, int size);
78 void ff_rtp_send_amr(AVFormatContext *s1, const uint8_t *buff, int size);
79 void ff_rtp_send_mpegvideo(AVFormatContext *s1, const uint8_t *buf1, int size);
80 void ff_rtp_send_xiph(AVFormatContext *s1, const uint8_t *buff, int size);
81 void ff_rtp_send_vp8(AVFormatContext *s1, const uint8_t *buff, int size);
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) {
75 ff_rtp_send_data(s1, s->buf, q - s->buf, (len == size));
78 size -= len;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unicase/
H A Du8-casefold.c44 int size = 0; local
49 if (size + BUFSIZE > alloc)
52 if (alloc < size + BUFSIZE)
53 alloc = size + BUFSIZE;
61 count = fread (buf + size, 1, BUFSIZE, stream);
71 size += count;
73 buf = realloc (buf, size + 1);
79 buf[size] = '\0';
H A Du8-tolower.c57 int size = 0; local
62 if (size + BUFSIZE > alloc)
65 if (alloc < size + BUFSIZE)
66 alloc = size + BUFSIZE;
74 count = fread (buf + size, 1, BUFSIZE, stream);
84 size += count;
86 buf = realloc (buf, size + 1);
92 buf[size] = '\0';
H A Du8-totitle.c44 int size = 0; local
49 if (size + BUFSIZE > alloc)
52 if (alloc < size + BUFSIZE)
53 alloc = size + BUFSIZE;
61 count = fread (buf + size, 1, BUFSIZE, stream);
71 size += count;
73 buf = realloc (buf, size + 1);
79 buf[size] = '\0';
H A Du8-toupper.c57 int size = 0; local
62 if (size + BUFSIZE > alloc)
65 if (alloc < size + BUFSIZE)
66 alloc = size + BUFSIZE;
74 count = fread (buf + size, 1, BUFSIZE, stream);
84 size += count;
86 buf = realloc (buf, size + 1);
92 buf[size] = '\0';
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libunistring-0.9.3/lib/unistdio/
H A Du-snprintf.h19 SNPRINTF (DCHAR_T *buf, size_t size, const FCHAR_T *format, ...) argument
25 result = VSNPRINTF (buf, size, format, args);

Completed in 152 milliseconds

<<11121314151617181920>>