Searched refs:nbytes (Results 1 - 25 of 232) sorted by path

12345678910

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dnwlib.c71 size_t nbytes,
63 _NonAppStart( void *NLMHandle, void *errorScreen, const char *cmdLine, const char *loadDirPath, size_t uninitializedDataLength, void *NLMFileHandle, int (*readRoutineP)( int conn, void *fileHandle, size_t offset, size_t nbytes, size_t *bytesRead, void *buffer ), size_t customDataOffset, size_t customDataSize, int messageCount, const char **messages ) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/tests/server/
H A Dsockfilt.c255 * in nbytes or it fails with a condition that cannot be handled with a simple
259 static ssize_t fullread(int filedes, void *buffer, size_t nbytes) argument
266 rc = read(filedes, (unsigned char *)buffer + nread, nbytes - nread);
288 } while((size_t)nread < nbytes);
299 * indicated in nbytes or it fails with a condition that cannot be handled
303 static ssize_t fullwrite(int filedes, const void *buffer, size_t nbytes) argument
310 wc = write(filedes, (unsigned char *)buffer + nwrite, nbytes - nwrite);
332 } while((size_t)nwrite < nbytes);
341 * read_stdin tries to read from stdin nbytes into the given buffer. This is a
342 * blocking function that will only return TRUE when nbytes hav
347 read_stdin(void *buffer, size_t nbytes) argument
364 write_stdout(const void *buffer, size_t nbytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavdevice/
H A Dx11grab.c392 long nbytes; local
416 nbytes = (long)rep.length << 2;
417 _XReadPad(dpy, image->data, nbytes);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/jpeg-7/
H A Djdatasrc.c93 size_t nbytes; local
95 nbytes = JFREAD(src->infile, src->buffer, INPUT_BUF_SIZE);
97 if (nbytes <= 0) {
104 nbytes = 2;
108 src->pub.bytes_in_buffer = nbytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx64/
H A Dinffasx64.asm188 sub rax, [rsp+40] ; /* nbytes = out - beg */
191 jb L_clip_window ; /* if (dist > nbytes) 4.2% */
263 mov ecx, eax ; /* ecx = nbytes */
265 neg ecx ; /* nbytes = -nbytes */
270 add ecx, r15d ; /* nbytes = dist - nbytes */
275 sub eax, ecx ; /* eax -= nbytes */
276 add rsi, rax ; /* from += wsize - nbytes */
280 jbe L_do_copy ; /* if (nbytes >
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dzutil.h95 void *_Cdecl farmalloc( unsigned long nbytes );
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dfloppyd.c153 static size_t buf_read (io_buffer buf, Byte* buffer, size_t nbytes) { argument
156 if (nbytes <= buf->in_valid) {
157 memcpy(buffer, buf->in_buffer+buf->in_start, nbytes);
158 buf->in_valid -= nbytes;
159 buf->in_start += nbytes;
160 rval = nbytes;
165 nbytes -= buf->in_valid;
167 if (nbytes > BUFFERED_IO_SIZE) {
168 rval = read(buf->handle, buffer, nbytes);
177 if (rval < nbytes) {
195 buf_write(io_buffer buf, void* buffer, size_t nbytes) argument
216 buf_read(io_buffer handle, Byte* buffer, size_t nbytes) argument
220 buf_write(io_buffer handle, void* buffer, size_t nbytes) argument
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/
H A Dhw_cswift.c506 sw_param.up.exp.modulus.nbytes = BN_bn2bin(m,
509 sw_param.up.exp.exponent.nbytes = BN_bn2bin(p,
531 arg.nbytes = BN_bn2bin(a, (unsigned char *)argument->d);
533 res.nbytes = BN_num_bytes(m);
534 memset(result->d, 0, res.nbytes);
547 BN_bin2bn((unsigned char *)result->d, res.nbytes, r);
606 sw_param.up.crt.p.nbytes = BN_bn2bin(p, (unsigned char *)rsa_p->d);
608 sw_param.up.crt.q.nbytes = BN_bn2bin(q, (unsigned char *)rsa_q->d);
610 sw_param.up.crt.dmp1.nbytes = BN_bn2bin(dmp1,
613 sw_param.up.crt.dmq1.nbytes
933 size_t nbytes = 0; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/vendor_defns/
H A Dcswift.h154 SW_U32 nbytes; /* number of bytes in the buffer "value" */ member in struct:_SW_LARGENUMBER
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Ddeflate.c106 z_free(notused, ptr, nbytes)
109 u_int nbytes;
H A Dzlib.h155 typedef void (*free_func) OF((voidpf opaque, voidpf address, uInt nbytes));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/client/
H A Dsmbspool.c322 int nbytes, /* Number of bytes read */ local
356 while ((nbytes = fread(buffer, 1, sizeof(buffer), fp)) > 0)
358 if (cli_write(cli, fnum, 0, buffer, tbytes, nbytes) != nbytes)
364 tbytes += nbytes;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/lib/
H A Dsysacls.c632 int nbytes; local
683 nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
691 if ((len + nbytes) > maxlen) {
694 maxlen += nbytes + 20 * (acl_d->count - i);
703 slprintf(&text[len], nbytes-1, "%s:%s:%s\n", tag, id, perms);
704 len += nbytes - 1;
1263 int nbytes; local
1314 nbytes = strlen(tag) + 1 + strlen(id) + 1 + 3 + 1 + 1;
1322 if ((len + nbytes) > maxlen) {
1325 maxlen += nbytes
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/btree/
H A Dbt_delete.c67 u_int32_t nbytes; local
83 nbytes = BINTERNAL_SIZE(bi->len);
86 nbytes = BINTERNAL_SIZE(bi->len);
96 nbytes = RINTERNAL_SIZE;
134 nbytes = BOVERFLOW_SIZE;
137 nbytes = BOVERFLOW_SIZE;
143 nbytes = BKEYDATA_SIZE(bk->len);
154 if ((ret = __db_ditem(dbc, h, indx, nbytes)) != 0)
H A Dbt_put.c437 u_int32_t nbytes; local
451 nbytes =
454 return (__db_partsize(nbytes, data));
462 __bam_build(dbc, op, dbt, h, indx, nbytes)
464 u_int32_t op, indx, nbytes;
484 if (rdata->ulen < nbytes) {
486 nbytes, &rdata->data)) != 0) {
491 rdata->ulen = nbytes;
499 F_ISSET(dbp, DB_AM_FIXEDLEN) ? t->re_pad : 0, nbytes);
606 int32_t nbytes; local
[all...]
H A Dbt_split.c718 u_int32_t n, nbytes, nksize; local
761 nbytes = BINTERNAL_PSIZE(child_bi->len);
763 if (P_FREESPACE(dbp, ppage) < nbytes)
809 nbytes = BINTERNAL_PSIZE(child_bk->len);
850 if ((n = BINTERNAL_PSIZE(nksize)) < nbytes)
851 nbytes = n;
855 noprefix: if (P_FREESPACE(dbp, ppage) < nbytes)
872 nbytes = BINTERNAL_PSIZE(BOVERFLOW_SIZE);
874 if (P_FREESPACE(dbp, ppage) < nbytes)
914 nbytes
970 db_indx_t half, *inp, nbytes, off, splitp, top; local
1170 db_indx_t *cinp, nbytes, off, *pinp; local
1221 memcpy(P_ENTRY(dbp, cp, off), &internal, nbytes); local
1225 P_ENTRY(dbp, pp, nxt), nbytes); local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/db/
H A Ddb_auto.c65 LOGCOPY_32(env, &argp->nbytes, bp);
66 bp += sizeof(argp->nbytes);
94 opcode, pgno, indx, nbytes, hdr,
103 u_int32_t nbytes;
216 LOGCOPY_32(env, bp, &nbytes);
217 bp += sizeof(nbytes);
H A Ddb_autop.c47 (void)printf("\tnbytes: %lu\n", (u_long)argp->nbytes);
H A Ddb_cam.c2799 u_int32_t len, nbytes; local
2809 nbytes = __db_partsize(oldrec->size, partial);
2810 newrec->size = nbytes;
2812 if ((ret = __os_malloc(env, nbytes, &buf)) != 0)
2819 0, nbytes);
2848 __db_partsize(nbytes, data)
2849 u_int32_t nbytes;
2864 * size is the oldsize (nbytes) minus the bytes we are replacing (dlen)
2867 if (nbytes < data->doff + data->dlen) /* Case 1 */
2870 return (nbytes
[all...]
H A Ddb_dup.c23 __db_ditem(dbc, pagep, indx, nbytes)
26 u_int32_t indx, nbytes;
40 ldbt.size = nbytes;
43 (u_int32_t)indx, nbytes, &ldbt, NULL, &LSN(pagep))) != 0)
65 memmove(from + nbytes, from, inp[indx] - HOFFSET(pagep));
66 HOFFSET(pagep) += nbytes;
72 inp[cnt] += nbytes;
91 __db_pitem(dbc, pagep, indx, nbytes, hdr, data)
95 u_int32_t nbytes;
108 if (nbytes > P_FREESPAC
[all...]
H A Ddb_rec.c61 if ((ret = __db_pitem(dbc, pagep, argp->indx, argp->nbytes,
72 pagep, argp->indx, argp->nbytes)) != 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dbinc_auto/
H A Ddb_auto.h14 u_int32_t nbytes; member in struct:___db_addrem_args
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/fileops/
H A Dfop_basic.c198 size_t nbytes; local
238 if ((ret = __os_write(env, fhp, buf, size, &nbytes)) != 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/hash/
H A Dhash.c986 u_int32_t nbytes; local
1012 nbytes = (ISBIG(hcp, key->size) ? HOFFPAGE_PSIZE :
1017 key, nbytes, DB_LOCK_WRITE, pgnop)) == DB_NOTFOUND) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/libdb_java/
H A Ddb_java_wrap.c1512 int nbytes; member in struct:__dbj_verify_data
1525 if (len > vd->nbytes) {
1526 vd->nbytes = len;
5506 data4.nbytes = 0;

Completed in 594 milliseconds

12345678910