Searched refs:inbuf (Results 176 - 200 of 211) sorted by relevance

123456789

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/crypto/
H A Dtgr192.c513 static void tgr192_update(struct crypto_tfm *tfm, const u8 *inbuf, argument
523 if (!inbuf) {
528 tctx->hash[tctx->count++] = *inbuf++;
538 tgr192_transform(tctx, inbuf);
542 inbuf += 64;
545 tctx->hash[tctx->count++] = *inbuf++;
H A Dcast6.c448 static void cast6_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) argument
451 const __be32 *src = (const __be32 *)inbuf;
481 static void cast6_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) { argument
483 const __be32 *src = (const __be32 *)inbuf;
H A Dcast5.c580 static void cast5_encrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) argument
583 const __be32 *src = (const __be32 *)inbuf;
645 static void cast5_decrypt(struct crypto_tfm *tfm, u8 *outbuf, const u8 *inbuf) argument
648 const __be32 *src = (const __be32 *)inbuf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/isdn/gigaset/
H A Disocdata.c911 static void cmd_loop(unsigned char *src, int numbytes, struct inbuf_t *inbuf) argument
913 struct cardstate *cs = inbuf->cs;
944 void gigaset_isoc_input(struct inbuf_t *inbuf) argument
946 struct cardstate *cs = inbuf->cs;
950 head = atomic_read(&inbuf->head);
951 while (head != (tail = atomic_read(&inbuf->tail))) {
955 src = inbuf->data + head;
962 gigaset_if_receive(inbuf->cs, src, numbytes);
966 cmd_loop(src, numbytes, inbuf);
973 atomic_set(&inbuf
[all...]
H A Dev-layer.c1191 /* cs->inbuf[0].inputstate |= INS_command | INS_DLE_command; */
1192 cs->inbuf[0].inputstate &=
1197 cs->inbuf[0].inputstate =
1198 (cs->inbuf[0].inputstate & ~INS_DLE_command)
1816 cs->inbuf->inputstate = INS_command;
1938 if (atomic_read(&cs->inbuf->head) != atomic_read(&cs->inbuf->tail)) {
1940 cs->ops->handle_input(cs->inbuf);
H A Dbas-gigaset.c454 * urb->context = inbuf structure for controller state
458 struct inbuf_t *inbuf = urb->context; local
459 struct cardstate *cs = inbuf->cs;
485 /* copy received bytes to inbuf */
486 have_data = gigaset_fill_inbuf(inbuf, ucs->rcvbuf, numbytes);
572 read_ctrl_callback, cs->inbuf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/libsmb/
H A Dclidfs.c457 uint32 flgs2 = SVAL(cli->inbuf,smb_flg2);
464 if ( NT_STATUS_EQUAL( NT_STATUS_PATH_NOT_COVERED, NT_STATUS(IVAL(cli->inbuf,smb_rcls)) ) )
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libgcrypt-1.5.0/cipher/
H A Ddes.c1058 do_tripledes_encrypt( void *context, byte *outbuf, const byte *inbuf )
1062 tripledes_ecb_encrypt ( ctx, inbuf, outbuf );
1067 do_tripledes_decrypt( void *context, byte *outbuf, const byte *inbuf )
1070 tripledes_ecb_decrypt ( ctx, inbuf, outbuf );
1095 do_des_encrypt( void *context, byte *outbuf, const byte *inbuf )
1099 des_ecb_encrypt ( ctx, inbuf, outbuf );
1104 do_des_decrypt( void *context, byte *outbuf, const byte *inbuf )
1108 des_ecb_decrypt ( ctx, inbuf, outbuf );
H A Dtiger.c742 const unsigned char *inbuf = inbuf_arg; local
752 if( !inbuf )
757 hd->buf[hd->count++] = *inbuf++;
765 transform( hd, inbuf );
769 inbuf += 64;
773 hd->buf[hd->count++] = *inbuf++;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Dlpar.c145 static long inbuf[2]; /* must be 2 longs */ variable
152 char ch, *buf = (char *)inbuf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A Dxmlreader.c790 xmlBufferPtr inbuf; local
799 inbuf = reader->input->buffer;
802 if (inbuf->use < reader->cur + CHUNK_SIZE) {
809 (inbuf->alloc == XML_BUFFER_ALLOC_IMMUTABLE)) {
810 if (inbuf->use == reader->cur) {
833 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
835 (const char *) &inbuf->content[reader->cur],
841 s = inbuf->use - reader->cur;
843 (const char *) &inbuf->content[reader->cur],
856 if (inbuf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/
H A Dxmlreader.c809 xmlBufferPtr inbuf; local
818 inbuf = reader->input->buffer;
821 if (inbuf->use < reader->cur + CHUNK_SIZE) {
828 (inbuf->alloc == XML_BUFFER_ALLOC_IMMUTABLE)) {
829 if (inbuf->use == reader->cur) {
852 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
854 (const char *) &inbuf->content[reader->cur],
860 s = inbuf->use - reader->cur;
862 (const char *) &inbuf->content[reader->cur],
875 if (inbuf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A Dxmlreader.c790 xmlBufferPtr inbuf; local
799 inbuf = reader->input->buffer;
802 if (inbuf->use < reader->cur + CHUNK_SIZE) {
809 (inbuf->alloc == XML_BUFFER_ALLOC_IMMUTABLE)) {
810 if (inbuf->use == reader->cur) {
833 if (inbuf->use >= reader->cur + CHUNK_SIZE) {
835 (const char *) &inbuf->content[reader->cur],
841 s = inbuf->use - reader->cur;
843 (const char *) &inbuf->content[reader->cur],
856 if (inbuf
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dtelnet.c101 const unsigned char *inbuf, /* Data received from socket */
918 const unsigned char *inbuf, /* Data received from socket */
932 (char *)&inbuf[startwrite], \
946 c = inbuf[in];
917 telrcv(struct connectdata *conn, const unsigned char *inbuf, ssize_t count) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/plugins/rp-pppoe/
H A Dif.c149 char inbuf[8192]; local
156 ifc.ifc_len = sizeof(inbuf);
157 ifc.ifc_buf = inbuf;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/hid/usbhid/
H A Dhid-core.c613 if (!(usbhid->inbuf = usb_buffer_alloc(dev, usbhid->bufsize, GFP_ATOMIC, &usbhid->inbuf_dma)))
629 usb_buffer_free(dev, usbhid->bufsize, usbhid->inbuf, usbhid->inbuf_dma);
846 usb_fill_int_urb(usbhid->urbin, dev, pipe, usbhid->inbuf, insize,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/
H A Dsys-linux.c205 static unsigned char inbuf[512]; /* buffer for chars read from loopback */ variable
1138 while ((n = read(master_fd, inbuf, sizeof(inbuf))) > 0)
1139 if (loop_chars(inbuf, n))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/papd/
H A Dprint_cups.c64 static size_t to_ascii ( char *inbuf, char **outbuf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/papd/
H A Dprint_cups.c64 static size_t to_ascii ( char *inbuf, char **outbuf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/net/wan/
H A Dsdla.c425 void *inbuf, short inlen, void *outbuf, short *outlen)
448 if (inbuf)
449 memcpy(cmd_buf->data, inbuf, inlen);
424 sdla_cmd(struct net_device *dev, int cmd, short dlci, short flags, void *inbuf, short inlen, void *outbuf, short *outlen) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/python/tests/
H A DMakefile.in292 inbuf.py \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/rdma/
H A Dib_verbs.h728 void __user *inbuf; member in struct:ib_udata
1073 return copy_from_user(dest, udata->inbuf, len) ? -EFAULT : 0;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/torture/
H A Dtorture.c1061 (int)max_xmit, (int)cnum, SVAL(cli->inbuf, smb_tid));
4612 flgs2 = SVAL(c_nt.inbuf,smb_flg2);
4616 nt_status = NT_STATUS(IVAL(c_nt.inbuf,smb_rcls));
4629 flgs2 = SVAL(c_dos.inbuf,smb_flg2), errnum;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/mips/kernel/
H A Dsysirix.c1966 asmlinkage int irix_utssys(char __user *inbuf, int arg, int type, char __user *outbuf) argument
1973 retval = irix_uname((struct iuname __user *)inbuf);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/printing/
H A Dnt_printing.c1440 pstring inbuf; local
1448 memset(inbuf, '\0', sizeof(inbuf));

Completed in 499 milliseconds

123456789