Searched refs:buf (Results 1 - 25 of 5179) sorted by relevance

1234567891011>>

/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/arch/ppc/xmon/
H A Dsetjmp.c8 xmon_setjmp(long *buf) argument
14 : : "r" (buf));
19 xmon_longjmp(long *buf, int val) argument
27 : : "r" (buf), "r" (val));
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Did3v2.c24 int ff_id3v2_match(const uint8_t *buf) argument
26 return buf[0] == 'I' &&
27 buf[1] == 'D' &&
28 buf[2] == '3' &&
29 buf[3] != 0xff &&
30 buf[4] != 0xff &&
31 (buf[6] & 0x80) == 0 &&
32 (buf[7] & 0x80) == 0 &&
33 (buf[8] & 0x80) == 0 &&
34 (buf[
37 ff_id3v2_tag_len(const uint8_t * buf) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/tests/server/
H A Dbase64.pl5 my $buf;
6 while(read(STDIN, $buf, 60*57)) {
7 my $enc = encode_base64($buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/coreutils/
H A Dpwd.c17 char *buf; local
19 buf = xrealloc_getcwd_or_warn(NULL);
20 if (buf != NULL) {
21 puts(buf);
22 free(buf);
H A Dlogname.c30 char buf[128]; local
37 if (getlogin_r(buf, sizeof(buf)) == 0) {
38 puts(buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/router/busybox-1.x/libbb/
H A Dxreadlink.c17 char *buf = NULL; local
21 buf = xrealloc(buf, bufsize += GROWBY);
22 readsize = readlink(path, buf, bufsize);
24 free(buf);
29 buf[readsize] = '\0';
31 return buf;
36 char *buf = xmalloc_readlink(path); local
37 if (!buf) {
41 return buf;
[all...]
H A Dlogin.c25 char buf[256+1]; local
39 outbuf = buf;
40 buf[0] = c;
41 buf[1] = '\0';
43 buf[1] = '\r';
44 buf[2] = '\0';
66 c = getdomainname(buf, sizeof(buf) - 1);
67 buf[c >= 0 ? c : 0] = '\0';
70 strftime(buf, sizeo
94 char buf[MAXHOSTNAMELEN+1]; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/demos/tunala/
H A Dbuffer.c5 void buffer_init(buffer_t *buf) argument
7 buf->used = 0;
8 buf->total_in = buf->total_out = 0;
11 void buffer_close(buffer_t *buf) argument
14 buf->used = 0;
18 unsigned int buffer_used(buffer_t *buf) { argument
19 return buf->used; }
20 unsigned int buffer_unused(buffer_t *buf) { argument
21 return (MAX_DATA_SIZE - buf
22 buffer_full(buffer_t *buf) argument
24 buffer_notfull(buffer_t *buf) argument
26 buffer_empty(buffer_t *buf) argument
28 buffer_notempty(buffer_t *buf) argument
30 buffer_total_in(buffer_t *buf) argument
32 buffer_total_out(buffer_t *buf) argument
69 buffer_takedata(buffer_t *buf, unsigned char *ptr, unsigned int size) argument
88 buffer_from_fd(buffer_t *buf, int fd) argument
102 buffer_to_fd(buffer_t *buf, int fd) argument
151 buffer_from_SSL(buffer_t *buf, SSL *ssl) argument
165 buffer_to_SSL(buffer_t *buf, SSL *ssl) argument
179 buffer_from_BIO(buffer_t *buf, BIO *bio) argument
191 buffer_to_BIO(buffer_t *buf, BIO *bio) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/demos/tunala/
H A Dbuffer.c5 void buffer_init(buffer_t *buf) argument
7 buf->used = 0;
8 buf->total_in = buf->total_out = 0;
11 void buffer_close(buffer_t *buf) argument
14 buf->used = 0;
18 unsigned int buffer_used(buffer_t *buf) { argument
19 return buf->used; }
20 unsigned int buffer_unused(buffer_t *buf) { argument
21 return (MAX_DATA_SIZE - buf
22 buffer_full(buffer_t *buf) argument
24 buffer_notfull(buffer_t *buf) argument
26 buffer_empty(buffer_t *buf) argument
28 buffer_notempty(buffer_t *buf) argument
30 buffer_total_in(buffer_t *buf) argument
32 buffer_total_out(buffer_t *buf) argument
69 buffer_takedata(buffer_t *buf, unsigned char *ptr, unsigned int size) argument
88 buffer_from_fd(buffer_t *buf, int fd) argument
102 buffer_to_fd(buffer_t *buf, int fd) argument
151 buffer_from_SSL(buffer_t *buf, SSL *ssl) argument
165 buffer_to_SSL(buffer_t *buf, SSL *ssl) argument
179 buffer_from_BIO(buffer_t *buf, BIO *bio) argument
191 buffer_to_BIO(buffer_t *buf, BIO *bio) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/include/
H A Dbyteorder.h57 #define CVAL(buf,pos) (((unsigned char *)(buf))[pos])
58 #define PVAL(buf,pos) ((unsigned)CVAL(buf,pos))
59 #define SVAL(buf,pos) (PVAL(buf,pos)|PVAL(buf,(pos)+1)<<8)
74 SVAL(buf,pos) - extract a 2 byte SMB value
75 IVAL(buf,pos) - extract a 4 byte SMB value
76 SVALS(buf,po
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/openssl/crypto/
H A Dcversion.c75 static char buf[sizeof(DATE)+11]; local
77 BIO_snprintf(buf,sizeof buf,"built on: %s",DATE);
78 return(buf);
86 static char buf[sizeof(CFLAGS)+11]; local
88 BIO_snprintf(buf,sizeof buf,"compiler: %s",CFLAGS);
89 return(buf);
97 static char buf[sizeof(PLATFORM)+11]; local
99 BIO_snprintf(buf,sizeo
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Dcversion.c72 static char buf[sizeof(DATE)+11]; local
74 BIO_snprintf(buf,sizeof buf,"built on: %s",DATE);
75 return(buf);
83 static char buf[sizeof(CFLAGS)+11]; local
85 BIO_snprintf(buf,sizeof buf,"compiler: %s",CFLAGS);
86 return(buf);
94 static char buf[sizeof(PLATFORM)+11]; local
96 BIO_snprintf(buf,sizeo
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna/
H A Duuid.h14 get_uuid_string(char *buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.03.14/
H A Duuid.h28 get_uuid_string(char *buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/minidlna.07.26/
H A Duuid.h14 get_uuid_string(char *buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm-mips/
H A Dds1216.h22 #define DS1216_SEC(buf) (buf[DS1216_SEC_BYTE])
23 #define DS1216_MIN(buf) (buf[DS1216_MIN_BYTE])
24 #define DS1216_HOUR(buf) (buf[DS1216_HOUR_BYTE] & DS1216_HOUR_MASK)
25 #define DS1216_AMPM(buf) (buf[DS1216_HOUR_BYTE] & DS1216_AMPM_MASK)
26 #define DS1216_1224(buf) (buf[DS1216_HOUR_BYT
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/asm/
H A Dds1216.h22 #define DS1216_SEC(buf) (buf[DS1216_SEC_BYTE])
23 #define DS1216_MIN(buf) (buf[DS1216_MIN_BYTE])
24 #define DS1216_HOUR(buf) (buf[DS1216_HOUR_BYTE] & DS1216_HOUR_MASK)
25 #define DS1216_AMPM(buf) (buf[DS1216_HOUR_BYTE] & DS1216_AMPM_MASK)
26 #define DS1216_1224(buf) (buf[DS1216_HOUR_BYT
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/net/tipc/
H A Dmsg.c44 void tipc_msg_print(struct print_buf *buf, struct tipc_msg *msg, const char *str) argument
47 tipc_printf(buf, str);
51 tipc_printf(buf, "BNDL::");
52 tipc_printf(buf, "MSGS(%u):", msg_msgcnt(msg));
55 tipc_printf(buf, "BCASTP::");
58 tipc_printf(buf, "FRAGM::");
61 tipc_printf(buf, "FIRST:");
64 tipc_printf(buf, "BODY:");
67 tipc_printf(buf, "LAST:");
70 tipc_printf(buf, "UNKNOW
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/netatalk-2.2.0/libatalk/unicode/
H A Dbyteorder.h58 #define CVAL(buf,pos) (((unsigned char *)(buf))[pos])
59 #define PVAL(buf,pos) ((unsigned)CVAL(buf,pos))
60 #define SVAL(buf,pos) (PVAL(buf,pos)|PVAL(buf,(pos)+1)<<8)
75 SVAL(buf,pos) - extract a 2 byte SMB value
76 IVAL(buf,pos) - extract a 4 byte SMB value
77 SVALS(buf,po
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclioplock.c31 pstring buf; local
34 cli->outbuf = buf;
36 memset(buf,'\0',smb_size);
37 set_message(buf,8,0,True);
39 SCVAL(buf,smb_com,SMBlockingX);
40 SSVAL(buf,smb_tid, cli->cnum);
42 SSVAL(buf,smb_vwv0,0xFF);
43 SSVAL(buf,smb_vwv1,0);
44 SSVAL(buf,smb_vwv2,fnum);
46 SSVAL(buf,smb_vwv
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/smbwrapper/
H A Drealcalls.c25 int real_utime(const char *name, struct utimbuf *buf) argument
29 tv[0].tv_sec = buf->actime;
31 tv[1].tv_sec = buf->modtime;
41 struct utimbuf buf; local
43 buf.actime = tv[0].tv_sec;
44 buf.modtime = tv[1].tv_sec;
46 return real_utime(name, &buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/ata/
H A Dsata_promise.h46 unsigned int devno, u8 *buf)
49 u32 *buf32 = (u32 *) buf;
80 buf[12] = (1 << 5) | PDC_PKT_CLEAR_BSY | ATA_REG_DEVICE;
81 buf[13] = dev_reg;
84 buf[14] = (1 << 5) | PDC_REG_DEVCTL;
85 buf[15] = tf->ctl;
90 static inline unsigned int pdc_pkt_footer(struct ata_taskfile *tf, u8 *buf, argument
94 buf[i++] = (1 << 5) | ATA_REG_DEVICE;
95 buf[i++] = tf->device;
99 buf[
44 pdc_pkt_header(struct ata_taskfile *tf, dma_addr_t sg_table, unsigned int devno, u8 *buf) argument
105 pdc_prep_lba28(struct ata_taskfile *tf, u8 *buf, unsigned int i) argument
128 pdc_prep_lba48(struct ata_taskfile *tf, u8 *buf, unsigned int i) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/drivers/media/dvb/frontends/
H A Dnxt200x.c72 static int i2c_writebytes (struct nxt200x_state* state, u8 addr, u8 *buf, u8 len) argument
75 struct i2c_msg msg = { .addr = addr, .flags = 0, .buf = buf, .len = len };
85 static u8 i2c_readbytes (struct nxt200x_state* state, u8 addr, u8* buf, u8 len) argument
88 struct i2c_msg msg = { .addr = addr, .flags = I2C_M_RD, .buf = buf, .len = len };
98 static int nxt200x_writebytes (struct nxt200x_state* state, u8 reg, u8 *buf, u8 len) argument
102 struct i2c_msg msg = { .addr = state->config->demod_address, .flags = 0, .buf = buf2, .len = len + 1 };
105 memcpy(&buf2[1], buf, len);
115 static u8 nxt200x_readbytes (struct nxt200x_state* state, u8 reg, u8* buf, u argument
150 u8 attr, len2, buf; local
211 u8 buf, len2, attr; local
258 u8 buf, stopval, counter = 0; local
291 u8 buf; local
300 u8 buf[9]; local
331 u8 buf, count = 0; local
391 u8 buf; local
418 u8 buf[3], written = 0, chunkpos = 0; local
485 u8 buf[3]; local
536 u8 buf[5]; local
887 u8 buf[2]; local
947 u8 buf[3]; local
1153 u8 buf [] = {0,0,0,0,0}; local
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/zebra/zebra/
H A Dipforward_solaris.c33 char *buf; local
36 buf = (char *) XMALLOC (MTYPE_TMP, sizeof forward + 1);
37 strcpy (buf, forward);
41 free (buf);
49 si.ic_len = strlen (buf) + 1;
50 si.ic_dp = (caddr_t) buf;
56 free (buf);
62 ipforwarding = atoi (buf);
63 free (buf);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dzutil.h47 typedef uLong (*check_func) (uLong check, const Byte *buf,
57 #define DO1(buf,i) {s1 += buf[i]; s2 += s1;}
58 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1);
59 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2);
60 #define DO8(buf,
78 zlib_adler32(uLong adler, const Byte *buf, uInt len) argument
[all...]

Completed in 162 milliseconds

1234567891011>>