Searched refs:pbuf (Results 1 - 25 of 58) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/python/
H A Dpy_tdbpack.c52 static PyObject *pytdbunpack_item(char, char **pbuf, int *plen, PyObject *);
59 pytdbunpack_string(char **pbuf, int *plen, const char *encoding);
61 static void pack_le_uint32(unsigned long val_long, unsigned char *pbuf);
435 static void pack_le_uint32(unsigned long val_long, unsigned char *pbuf) argument
437 pbuf[0] = val_long & 0xff;
438 pbuf[1] = (val_long >> 8) & 0xff;
439 pbuf[2] = (val_long >> 16) & 0xff;
440 pbuf[3] = (val_long >> 24) & 0xff;
445 unsigned char **pbuf)
447 memcpy(*pbuf, fro
444 pack_bytes(long len, const char *from, unsigned char **pbuf) argument
531 pytdbunpack_uint32(char **pbuf, int *plen) argument
551 pytdbunpack_int16(char **pbuf, int *plen) argument
572 pytdbunpack_string(char **pbuf, int *plen, const char *encoding) argument
595 pytdbunpack_buffer(char **pbuf, int *plen, PyObject *val_list) argument
664 pytdbunpack_item(char ch, char **pbuf, int *plen, PyObject *val_list) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/hardware/eicon/
H A Dmntfunc.c213 byte *pbuf; local
215 if (!(pbuf = diva_os_malloc(0, mask))) {
230 memcpy(pbuf, pmsg, size);
233 diva_os_copy_to_user (NULL, buf, (void *) pbuf, size))
237 diva_os_free(0, pbuf);
245 byte *pbuf = NULL; local
252 if (!(pbuf = diva_os_malloc(0, mask))) {
268 pbuf[written++] = (byte) size;
269 pbuf[written++] = (byte) (size >> 8);
270 pbuf[writte
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavcodec/
H A Dlzw.c45 const uint8_t *pbuf, *ebuf; member in struct:LZWState
75 s->bs = *s->pbuf++;
77 s->bbuf |= (*s->pbuf++) << s->bbits;
85 s->bbuf = (s->bbuf << 8) | (*s->pbuf++);
96 return ((struct LZWState*)p)->pbuf;
104 while(s->pbuf < s->ebuf && s->bs>0){
105 s->pbuf += s->bs;
106 s->bs = *s->pbuf++;
109 s->pbuf= s->ebuf;
137 s->pbuf
[all...]
H A Ddvbsubdec.c211 uint8_t *pbuf; member in struct:DVBSubRegion
323 if (region->pbuf)
324 av_free(region->pbuf);
724 uint8_t *pbuf; local
757 pbuf = region->pbuf;
780 x_pos += dvbsub_read_2bit_string(pbuf + (y_pos * region->width) + x_pos,
795 x_pos += dvbsub_read_4bit_string(pbuf + (y_pos * region->width) + x_pos,
805 x_pos += dvbsub_read_8bit_string(pbuf + (y_pos * region->width) + x_pos,
1021 if (region->pbuf)
1183 uint32_t *pbuf; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/pkcs12/
H A Dp12_crpt.c92 unsigned char *salt, *pbuf; local
96 pbuf = param->value.sequence->data;
98 !(pbe = d2i_PBEPARAM (NULL, &pbuf, param->value.sequence->length))) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/pkcs12/
H A Dp12_crpt.c93 const unsigned char *pbuf; local
103 pbuf = param->value.sequence->data;
104 if (!(pbe = d2i_PBEPARAM(NULL, &pbuf, param->value.sequence->length))) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/gt64120/wrppmc/
H A Dsetup.c76 static char pbuf[256] = {'\0', }; local
77 char *ch = pbuf;
81 memset(pbuf, 0, 256);
83 i = vsprintf(pbuf, fmt, args);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libbb/
H A Dlineedit.c1098 char *pbuf; local
1107 pbuf = buf;
1108 pbuf[1] = 0;
1122 pbuf = user_buf ? user_buf : (char*)"";
1126 pbuf = hostname_buf;
1127 if (!pbuf) {
1128 pbuf = xzalloc(256);
1129 if (gethostname(pbuf, 255) < 0) {
1130 strcpy(pbuf, "?");
1132 char *s = strchr(pbuf, '
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/asn1/
H A Dasn_pack.c73 unsigned char *pbuf; local
74 pbuf = buf;
75 if (!(sk = d2i_ASN1_SET(NULL, &pbuf, len, d2i, free_func,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/evp/
H A Dp5_crpt.c113 unsigned char *salt, *pbuf; local
116 pbuf = param->value.sequence->data;
118 !(pbe = d2i_PBEPARAM (NULL, &pbuf, param->value.sequence->length))) {
H A Dp5_crpt2.c151 unsigned char *pbuf, *salt, key[EVP_MAX_KEY_LENGTH]; local
157 pbuf = param->value.sequence->data;
160 !(pbe2 = d2i_PBE2PARAM(NULL, &pbuf, plen))) {
197 pbuf = pbe2->keyfunc->parameter->value.sequence->data;
201 !(kdf = d2i_PBKDF2PARAM(NULL, &pbuf, plen)) ) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Dasn_pack.c73 const unsigned char *pbuf; local
74 pbuf = buf;
75 if (!(sk = d2i_ASN1_SET(NULL, &pbuf, len, d2i, free_func,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_print.c142 unsigned char *buf, *pbuf; local
165 pbuf = buf;
168 int v = (int) *(pbuf++);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/evp/
H A Dp5_crpt.c114 const unsigned char *pbuf; local
123 pbuf = param->value.sequence->data;
124 if (!(pbe = d2i_PBEPARAM(NULL, &pbuf, param->value.sequence->length))) {
H A Dp5_crpt2.c152 const unsigned char *pbuf; local
165 pbuf = param->value.sequence->data;
167 if(!(pbe2 = d2i_PBE2PARAM(NULL, &pbuf, plen))) {
211 pbuf = pbe2->keyfunc->parameter->value.sequence->data;
213 if(!(kdf = d2i_PBKDF2PARAM(NULL, &pbuf, plen)) ) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/procps/
H A Dtop.c217 static char *fmt_100percent_8(char pbuf[8], unsigned value, unsigned total) argument
221 strcpy(pbuf, " 100% ");
222 return pbuf;
228 pbuf[0] = ' ';
229 pbuf[1] = t ? t + '0' : ' ';
230 pbuf[2] = '0' + (value / 10);
231 pbuf[3] = '.';
232 pbuf[4] = '0' + (value % 10);
233 pbuf[5] = '%';
234 pbuf[
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/netfilter/
H A Dnf_conntrack_amanda.c91 char pbuf[sizeof("65535")], *tmp; local
135 len = min_t(unsigned int, sizeof(pbuf) - 1, stop - off);
136 if (skb_copy_bits(*pskb, off, pbuf, len))
138 pbuf[len] = '\0';
140 port = htons(simple_strtoul(pbuf, &tmp, 10));
141 len = tmp - pbuf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/mon/
H A Dmon_text.c91 char *pbuf; member in struct:mon_text_ptr
383 ptr.pbuf = rp->printf_buf;
388 ptr.cnt += snprintf(ptr.pbuf + ptr.cnt, ptr.limit - ptr.cnt,
410 ptr.pbuf = rp->printf_buf;
424 ptr.cnt += snprintf(ptr.pbuf + ptr.cnt, ptr.limit - ptr.cnt,
478 p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
497 p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
509 p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
517 p->cnt += snprintf(p->pbuf + p->cnt, p->limit - p->cnt,
520 p->cnt += snprintf(p->pbuf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/sound/parisc/
H A Dharmony.c210 h->pbuf.buf += h->pbuf.count; /* PAGE_SIZE */
211 h->pbuf.buf %= h->pbuf.size; /* MAX_BUFS*PAGE_SIZE */
214 h->pbuf.addr + h->pbuf.buf);
318 harmony_write(h, HARMONY_PNXTADD, h->pbuf.addr);
417 h->pbuf.size = snd_pcm_lib_buffer_bytes(ss);
418 h->pbuf.count = snd_pcm_lib_period_bytes(ss);
419 if (h->pbuf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/IGMP-PROXY/src/
H A Digmpv3.c910 char buf[12], *pbuf = NULL; local
922 pbuf = (char*) malloc(sizeof(*query) + numsrc * sizeof(struct in_addr));
923 if (pbuf == NULL)
925 query = (igmpv3q_t *) pbuf;
968 if (pbuf)
969 free(pbuf);
986 if (pbuf)
987 free(pbuf);
1168 char *pbuf = NULL; local
1174 pbuf
1338 char *pbuf = NULL; local
1716 char *pbuf = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dtivo_utils.c125 seedRandomness(int n, void *pbuf, uint32_t seed) argument
127 unsigned char *zbuf = pbuf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/include/bcmcrypto/
H A Ddh.h126 DH *DH_init(unsigned char *pbuf, int plen, int g);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dsgiseeq.c167 if (!sp->tx_desc[i].tdma.pbuf) {
174 sp->tx_desc[i].tdma.pbuf = CPHYSADDR(buffer);
181 if (!sp->rx_desc[i].rdma.pbuf) {
188 sp->rx_desc[i].rdma.pbuf = CPHYSADDR(buffer);
214 i, (&r[i]), r[i].rdma.pbuf, r[i].rdma.cntinfo,
218 i, (&r[i]), r[i].rdma.pbuf, r[i].rdma.cntinfo,
223 i, (&t[i]), t[i].tdma.pbuf, t[i].tdma.cntinfo,
227 i, (&t[i]), t[i].tdma.pbuf, t[i].tdma.cntinfo,
601 buf[i].tdma.pbuf = 0;
613 buf[i].rdma.pbuf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/tipc/
H A Dlink.c2654 struct sk_buff *pbuf = *pending; local
2662 while (pbuf && ((msg_seqno(buf_msg(pbuf)) != long_msg_seq_no)
2663 || (msg_orignode(fragm) != msg_orignode(buf_msg(pbuf))))) {
2664 prev = pbuf;
2665 pbuf = pbuf->next;
2668 if (!pbuf && (msg_type(fragm) == FIRST_FRAGMENT)) {
2681 pbuf = buf_acquire(msg_size(imsg));
2682 if (pbuf !
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ehca/
H A Dehca_mrmw.c1602 struct ib_phys_buf *pbuf = phys_buf_array; local
1611 if (((u64)iova_start & ~PAGE_MASK) != (pbuf->addr & ~PAGE_MASK)) {
1613 "pbuf->addr=%lx pbuf->size=%lx",
1614 iova_start, pbuf->addr, pbuf->size);
1617 if (((pbuf->addr + pbuf->size) % PAGE_SIZE) &&
1619 ehca_gen_err("addr/size mismatch in 1st buf, pbuf->addr=%lx "
1620 "pbuf
1689 struct ib_phys_buf *pbuf; local
[all...]

Completed in 390 milliseconds

123