Searched refs:ebuf (Results 1 - 20 of 20) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/maurice/
H A Dexample4.c47 char ebuf[BUFLEN+24]; local
68 EVP_EncodeUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
70 write(STDOUT, ebuf, ebuflen);
73 EVP_EncodeFinal(&ectx, ebuf, &ebuflen);
75 write(STDOUT, ebuf, ebuflen);
81 char ebuf[BUFLEN+24]; local
103 rc = EVP_DecodeUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
108 write(STDOUT, ebuf, ebuflen);
116 write(STDOUT, ebuf, ebuflen);
119 EVP_DecodeFinal(&ectx, ebuf,
[all...]
H A Dexample3.c50 char ebuf[BUFLEN + 8]; local
78 EVP_CipherUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
80 write(STDOUT, ebuf, ebuflen);
83 EVP_CipherFinal_ex(&ectx, ebuf, &ebuflen);
86 write(STDOUT, ebuf, ebuflen);
H A Dexample1.c69 char ebuf[512]; local
114 EVP_SealUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
116 write(STDOUT, ebuf, ebuflen);
119 EVP_SealFinal(&ectx, ebuf, &ebuflen);
121 write(STDOUT, ebuf, ebuflen);
130 char ebuf[512]; local
176 int readlen = read(STDIN, ebuf, sizeof(ebuf));
186 EVP_OpenUpdate(&ectx, buf, &buflen, ebuf, readlen);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/maurice/
H A Dexample4.c47 char ebuf[BUFLEN+24]; local
68 EVP_EncodeUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
70 write(STDOUT, ebuf, ebuflen);
73 EVP_EncodeFinal(&ectx, ebuf, &ebuflen);
75 write(STDOUT, ebuf, ebuflen);
81 char ebuf[BUFLEN+24]; local
103 rc = EVP_DecodeUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
108 write(STDOUT, ebuf, ebuflen);
116 write(STDOUT, ebuf, ebuflen);
119 EVP_DecodeFinal(&ectx, ebuf,
[all...]
H A Dexample3.c50 char ebuf[BUFLEN + 8]; local
78 EVP_CipherUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
80 write(STDOUT, ebuf, ebuflen);
83 EVP_CipherFinal_ex(&ectx, ebuf, &ebuflen);
86 write(STDOUT, ebuf, ebuflen);
H A Dexample1.c69 char ebuf[512]; local
114 EVP_SealUpdate(&ectx, ebuf, &ebuflen, buf, readlen);
116 write(STDOUT, ebuf, ebuflen);
119 EVP_SealFinal(&ectx, ebuf, &ebuflen);
121 write(STDOUT, ebuf, ebuflen);
130 char ebuf[512]; local
176 int readlen = read(STDIN, ebuf, sizeof(ebuf));
186 EVP_OpenUpdate(&ectx, buf, &buflen, ebuf, readlen);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-m68knommu/
H A Dmcfsmc.h97 unsigned short *buf, *ebuf; local
103 for (ebuf = buf + (len >> 1); (buf < ebuf); )
114 unsigned short *buf, *ebuf; local
118 for (ebuf = buf + len; (buf < ebuf); )
125 unsigned long *buf, *ebuf; local
129 for (ebuf = buf + len; (buf < ebuf); )
136 unsigned short *buf, *ebuf; local
147 unsigned long *buf, *ebuf; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/hw/ipath/
H A Dipath_stats.c237 char ebuf[256]; local
239 iserr = ipath_decode_err(ebuf, sizeof ebuf,
246 "(%s)\n", ebuf);
257 ebuf);
260 " problem interrupt (%s)\n", ebuf);
H A Dipath_driver.c1010 void *ebuf; local
1051 ebuf = NULL;
1057 * set ebuf (so we try to copy data) unless the
1063 ebuf = ipath_get_egrbuf(dd, etail, 0);
1082 ipath_ib_rcv(dd->verbs_dev, rc + 1, ebuf, tlen);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Dclient6_token.l224 char ebuf[BUFSIZ], *bp, *ep;
226 bp = ebuf;
227 ep = ebuf + sizeof(ebuf);
232 dprintf(level, ebuf);
/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
104 while(s->pbuf < s->ebuf && s->bs>0){
109 s->pbuf= s->ebuf;
138 s->ebuf = s->pbuf + buf_size;
H A Dmpegvideo_enc.c1486 uint8_t *ebuf= s->edge_emu_buffer + 32; local
1487 ff_emulated_edge_mc(ebuf , ptr_y , wrap_y,16,16,mb_x*16,mb_y*16, s->width , s->height);
1488 ptr_y= ebuf;
1489 ff_emulated_edge_mc(ebuf+18*wrap_y , ptr_cb, wrap_c, 8, mb_block_height, mb_x*8, mb_y*8, s->width>>1, s->height>>1);
1490 ptr_cb= ebuf+18*wrap_y;
1491 ff_emulated_edge_mc(ebuf+18*wrap_y+8, ptr_cr, wrap_c, 8, mb_block_height, mb_x*8, mb_y*8, s->width>>1, s->height>>1);
1492 ptr_cr= ebuf+18*wrap_y+8;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Ddb_java.i172 com.sleepycat.util.ErrorBuffer ebuf = (com.sleepycat.util.ErrorBuffer)errBuf.get();
173 if (ebuf == null) {
178 ebuf = new com.sleepycat.util.ErrorBuffer(3);
179 errBuf.set(ebuf);
181 ebuf.append(msg);
186 com.sleepycat.util.ErrorBuffer ebuf = (com.sleepycat.util.ErrorBuffer)errBuf.get();
188 if (ebuf != null) {
189 ret = ebuf.get();
190 ebuf.clear();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/jffs2/
H A Derase.c315 void *ebuf; local
320 ebuf = kmalloc(PAGE_SIZE, GFP_KERNEL);
321 if (!ebuf) {
334 ret = c->mtd->read(c->mtd, ofs, readlen, &retlen, ebuf);
345 unsigned long *datum = ebuf + i;
357 kfree(ebuf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/db/internal/
H A DDbEnv.java151 com.sleepycat.util.ErrorBuffer ebuf = (com.sleepycat.util.ErrorBuffer)errBuf.get();
152 if (ebuf == null) {
157 ebuf = new com.sleepycat.util.ErrorBuffer(3);
158 errBuf.set(ebuf);
160 ebuf.append(msg);
165 com.sleepycat.util.ErrorBuffer ebuf = (com.sleepycat.util.ErrorBuffer)errBuf.get();
167 if (ebuf != null) {
168 ret = ebuf.get();
169 ebuf.clear();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/block/aoe/
H A Daoecmd.c532 char ebuf[128]; local
539 snprintf(ebuf, sizeof ebuf, "aoecmd_ata_rsp: ata response "
542 aoechr_error(ebuf);
553 snprintf(ebuf, sizeof ebuf,
560 aoechr_error(ebuf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/dvb/dvb-core/
H A Ddvb_ca_en50221.c165 static int dvb_ca_en50221_read_data(struct dvb_ca_private *ca, int slot, u8 * ebuf, int ecount);
166 static int dvb_ca_en50221_write_data(struct dvb_ca_private *ca, int slot, u8 * ebuf, int ecount);
583 * @param ebuf If non-NULL, the data will be written to this buffer. If NULL,
585 * @param ecount Size of ebuf. Ignored if ebuf is NULL.
589 static int dvb_ca_en50221_read_data(struct dvb_ca_private *ca, int slot, u8 * ebuf, int ecount) argument
599 if (ebuf == NULL) {
632 if (ebuf == NULL) {
676 if (ebuf == NULL) {
683 memcpy(ebuf, bu
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/usb/
H A Ddm9601.c280 u16 *ebuf = (u16 *) data; local
289 &ebuf[i]) < 0)
H A Dasix.c675 u16 *ebuf = (u16 *)data; local
689 eeprom->offset + i, 0, 2, &ebuf[i]) < 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/
H A Dnatsemi.c3020 u16 *ebuf = (u16 *)buf; local
3026 ebuf[i] = eeprom_read(ioaddr, i);
3030 ebuf[i] = SWAP_BITS(ebuf[i]);

Completed in 163 milliseconds