Searched refs:siz (Results 51 - 75 of 79) sorted by relevance

1234

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/
H A Dzipup.c772 z->siz = (zoff_t)(m == STORE && q >= 0 ? q : 0); /* will be changed later */
803 z->siz += RAND_HEAD_LEN; /* to be updated later */
957 z->siz = 0;
969 z->siz = s;
972 z->siz += RAND_HEAD_LEN;
H A Dzip.c911 " -ds siz each dot is siz processed where siz is nm as splits (0 no dots)",
3949 t += z->siz;
4272 csize = z->siz;
5261 bad_bytes_so_far += z->siz;
5263 good_bytes_so_far += z->siz;
5264 bytes_so_far += z->siz;
5294 if ((*lpZipUserFunctions->ServiceApplication64)(z->zname, z->siz))
5300 filesize64 = z->siz;
[all...]
H A Dzip.h155 uzoff_t siz, len; /* zip64 support 08/29/2003 R.Nausedat */ member in struct:zlist
H A Dzipsplit.c721 2 * (zoff_t)z->nam + 2 * (zoff_t)z->cext + z->com + z->siz;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/libncftp/
H A Drcmd.c309 FTPSendCommandStr(const FTPCIPtr cip, char *const command, const size_t siz) argument
346 if ((cp + 2) >= (command + siz - 1)) {
H A Dopen.c986 size_t siz; local
991 siz = sizeof(FTPConnectionInfo);
992 (void) memset(cip, 0, siz);
H A Dncftp.h1007 int FTPSendCommandStr(const FTPCIPtr cip, char *const command, const size_t siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/ncftp/
H A Dbookmark.c837 DefaultBookmarkName(char *dst, size_t siz, char *src) argument
864 (void) Strncpy(dst, token, siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ncftp-3.2.5/source/win/bmed/
H A Dbookmark.c837 DefaultBookmarkName(char *dst, size_t siz, char *src) argument
864 (void) Strncpy(dst, token, siz);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/
H A Dapps.c3199 int raw_read_stdin(void *buf, int siz) argument
3202 if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
3208 int raw_read_stdin(void *buf, int siz) argument
3210 return read(fileno(stdin), buf, siz);
3215 int raw_write_stdout(const void *buf, int siz) argument
3218 if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
3224 int raw_write_stdout(const void *buf, int siz) argument
3226 return write(fileno(stdout), buf, siz);
H A Denc.c552 int siz = EVP_CIPHER_iv_length(cipher); local
553 if (siz == 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/
H A Dapps.c3199 int raw_read_stdin(void *buf, int siz) argument
3202 if (ReadFile(GetStdHandle(STD_INPUT_HANDLE), buf, siz, &n, NULL))
3208 int raw_read_stdin(void *buf, int siz) argument
3210 return read(fileno(stdin), buf, siz);
3215 int raw_write_stdout(const void *buf, int siz) argument
3218 if (WriteFile(GetStdHandle(STD_OUTPUT_HANDLE), buf, siz, &n, NULL))
3224 int raw_write_stdout(const void *buf, int siz) argument
3226 return write(fileno(stdout), buf, siz);
H A Denc.c552 int siz = EVP_CIPHER_iv_length(cipher); local
553 if (siz == 0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Djpeg2000.c85 int i, siz = tag_tree_size(w, h); local
87 for (i = 0; i < siz; i++) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/libtransmission/
H A Dutils.c883 * Copy src to string dst of size siz. At most siz-1 characters
884 * will be copied. Always NUL terminates (unless siz == 0).
885 * Returns strlen(src); if retval >= siz, truncation occurred.
888 tr_strlcpy( char * dst, const void * src, size_t siz )
891 return strlcpy( dst, src, siz );
895 size_t n = siz;
913 if( siz != 0 )
H A Dutils.h371 size_t tr_strlcpy( char * dst, const void * src, size_t siz );
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Dservice.c123 size_t siz; local
125 next_codepoint(s,&siz);
126 switch(siz) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/
H A Dprint-decnet.c858 size_t siz; local
862 str = (char *)malloc(siz = sizeof("00.0000"));
865 snprintf(str, siz, "%d.%d", area, node);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/char/
H A Dhpet.c796 size_t siz; local
814 siz = sizeof(struct hpets) + ((hdp->hd_nirqs - 1) *
817 hpetp = kzalloc(siz, GFP_KERNEL);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/
H A Druntest.c685 int siz = 0; local
695 while ((res = read(fd, &base[siz], info.st_size - siz)) > 0) {
696 siz += res;
700 if (siz != info.st_size) {
705 base[siz] = 0;
707 *size = siz;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/libxml2-2.7.2/source/
H A Druntest.c685 int siz = 0; local
695 while ((res = read(fd, &base[siz], info.st_size - siz)) > 0) {
696 siz += res;
700 if (siz != info.st_size) {
705 base[siz] = 0;
707 *size = siz;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/vms/
H A Dvms.c1680 unsigned siz;
1685 siz = hdr->size;
1691 siz, NULL, (uch *)&cc$rms_fab, FABL);
1694 siz, NULL, (uch *)&cc$rms_xaball, XALLL);
1698 siz, NULL, (uch *)&cc$rms_xabkey, XKEYL);
1702 siz, NULL, (uch *)&cc$rms_xabfhc, XFHCL);
1706 siz, NULL, (uch *)&cc$rms_xabdat, XDATL);
1711 siz, NULL, (uch *)&cc$rms_xabrdt, XRDTL);
1715 siz, NULL, (uch *)&cc$rms_xabpro, XPROL);
1724 vers = extract_izvms_block(__G__ blk, siz,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/unzip60/
H A Dprocess.c1040 size_t siz; local
1045 int siz; local
1072 siz = fread(waste, 1, 1, file);
1099 siz = read(fh, waste, 1);
1100 if (siz != 0) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/
H A Dlibfs.c178 ssize_t generic_read_dir(struct file *filp, char __user *buf, size_t siz, loff_t *ppos) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/x86/kernel/cpu/mcheck/
H A Dmce.c1855 const char *buf, size_t siz)
1854 set_trigger(struct sys_device *s, struct sysdev_attribute *attr, const char *buf, size_t siz) argument

Completed in 631 milliseconds

1234