Searched refs:filesize (Results 1 - 22 of 22) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/coreutils/
H A Dcksum.c18 long length, filesize; local
38 filesize = length;
45 printf("%" PRIu32 " %li\n", crc, filesize);
49 printf("%" PRIu32 " %li %s\n", crc, filesize, *argv);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_windows/
H A Dos_stat.c64 unsigned __int64 filesize; local
72 filesize = ((unsigned __int64)bhfi.nFileSizeHigh << 32) +
77 *mbytesp = (u_int32_t)(filesize / MEGABYTE);
79 *bytesp = (u_int32_t)(filesize % MEGABYTE);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A Dftpgetinfo.c47 const double filesize; local
72 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, &filesize);
73 if((CURLE_OK == res) && (filesize>0))
74 printf("filesize %s: %0.0f bytes\n", filename, filesize);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/scripts/
H A Dbinoffset.c48 size_t filesize; variable
86 for (bix = 0; bix < filesize; bix++) {
112 fprintf (stderr, "filesize: %ld\n", err < 0 ? (long)err : stat.st_size);
136 filesize = get_filesize (inputfd);
138 madr = mmap (0, filesize, PROT_READ, MAP_PRIVATE, inputfd, 0);
147 if (munmap (madr, filesize))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/e2fsprogs/old_e2fsprogs/ext2fs/
H A Dgetsize.c74 LARGE_INTEGER filesize; local
76 DWORD filesize; local
103 } else if (GetFileSizeEx(dev, &filesize)) {
104 *retblocks = filesize.QuadPart / blocksize;
108 filesize = GetFileSize(dev, NULL);
109 if (INVALID_FILE_SIZE != filesize) {
110 *retblocks = filesize / blocksize;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/ffmpeg-0.5.1/libavformat/
H A Dhttp.c44 int64_t off, filesize; member in struct:__anon648
128 s->filesize = -1;
191 } else if (!strcmp (tag, "Content-Length") && s->filesize == -1) {
192 s->filesize = atoll(p);
200 s->filesize = atoll(slash+1);
248 s->filesize = -1;
326 return s->filesize;
327 else if ((s->filesize == -1 && whence == SEEK_END) || h->is_streamed)
335 off += s->filesize;
H A Daiff.c311 int size, filesize; local
319 filesize = get_tag(pb, &tag);
320 if (filesize < 0 || tag != MKTAG('F', 'O', 'R', 'M'))
330 filesize -= 4;
336 while (filesize > 0) {
342 filesize -= size + 8;
H A Dmp3.c457 int len, ret, filesize; local
472 filesize = url_fsize(s->pb);
473 if (filesize > 128) {
474 url_fseek(s->pb, filesize - 128, SEEK_SET);
H A Davidec.c128 int64_t filesize= url_fsize(s->pb); local
150 if(filesize > 0 && base >= filesize){
152 if(base>>32 == (base & 0xFFFFFFFF) && (base & 0xFFFFFFFF) < filesize && filesize <= 0xFFFFFFFF)
H A Dnutdec.c499 int64_t filesize= url_fsize(bc); local
504 url_fseek(bc, filesize-12, SEEK_SET);
505 url_fseek(bc, filesize-get_be64(bc), SEEK_SET);
H A Dutils.c1387 int64_t start_pos, filesize; local
1403 filesize = url_fsize(s->pb);
1404 pos_max = filesize - 1;
1420 if(tmp_pos >= filesize)
1701 int64_t filesize, duration; local
1719 filesize = ic->file_size;
1720 if (filesize > 0) {
1723 duration= av_rescale(8*filesize, st->time_base.den, ic->bit_rate*(int64_t)st->time_base.num);
1740 int64_t filesize, offset, duration; local
1786 filesize
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/plugin_winamp2/
H A Dplayback.h80 FLAC__bool FLAC_plugin__decoder_init(FLAC__StreamDecoder *decoder, const char *filename, FLAC__int64 filesize, stream_data_struct *stream_data, output_config_t *config);
H A Dinfobox.c224 LONGLONG filesize; local
231 filesize = FileSize(file);
232 if (!filesize) return FALSE;
238 bps = (DWORD)(filesize / (125*streaminfo.data.stream_info.total_samples/streaminfo.data.stream_info.sample_rate));
247 streaminfo.data.stream_info.min_blocksize, streaminfo.data.stream_info.max_blocksize, filesize, streaminfo.data.stream_info.total_samples,
H A Din_flac.c78 LONGLONG filesize; local
83 if (!(filesize = FileSize(fn))) return -1;
85 if (!FLAC_plugin__decoder_init(decoder_, fn, filesize, &stream_data_, &flac_cfg.output))
H A Dplayback.c112 FLAC__bool FLAC_plugin__decoder_init(FLAC__StreamDecoder *decoder, const char *filename, FLAC__int64 filesize, stream_data_struct *stream_data, output_config_t *config) argument
154 stream_data->average_bps = (unsigned)(filesize / (125.*(double)(FLAC__int64)stream_data->total_samples/(double)stream_data->sample_rate));
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/networking/
H A Dftpgetput.c138 /* I think 'filesize' usage here is bogus. Let's see... */
139 //off_t filesize = -1;
140 #define filesize ((off_t)-1) macro
152 //filesize = BB_STRTOOFF(buf + 4, NULL, 10);
153 //if (errno || filesize < 0)
181 //if (filesize != -1)
182 // filesize -= beg_range;
200 if (filesize != -1) {
201 if (bb_copyfd_size(fd_data, fd_local, filesize) == -1)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dimap.c433 curl_off_t filesize = curlx_strtoofft(ptr+1, NULL, 10); local
434 if(filesize)
435 Curl_pgrsSetDownloadSize(data, filesize);
437 infof(data, "Found %" FORMAT_OFF_TU " bytes to download\n", filesize);
445 if(chunk > (size_t)filesize)
447 chunk = (size_t)filesize;
453 filesize -= chunk;
470 infof(data, "Filesize left: %" FORMAT_OFF_T "\n", filesize);
472 if(!filesize)
477 Curl_setup_transfer(conn, FIRSTSOCKET, filesize, FALS
[all...]
H A Dftp.c151 curl_off_t filesize);
2005 curl_off_t filesize)
2012 if(data->set.max_filesize && (filesize > data->set.max_filesize)) {
2016 ftp->downloadsize = filesize;
2021 if(filesize == -1) {
2033 if(filesize < -data->state.resume_from) {
2036 data->state.resume_from, filesize);
2042 data->state.resume_from = filesize - ftp->downloadsize;
2045 if(filesize < data->state.resume_from) {
2048 data->state.resume_from, filesize);
2004 ftp_state_post_retr_size(struct connectdata *conn, curl_off_t filesize) argument
2092 curl_off_t filesize; local
[all...]
H A Dssh.c1499 curl_off_t size = attrs.filesize;
1504 data->state.resume_from = attrs.filesize;
1983 curl_off_t size = attrs.filesize;
2009 from, attrs.filesize);
2031 if((curl_off_t)attrs.filesize < -data->state.resume_from) {
2034 data->state.resume_from, attrs.filesize);
2038 data->state.resume_from += attrs.filesize;
2041 if((curl_off_t)attrs.filesize < data->state.resume_from) {
2044 data->state.resume_from, attrs.filesize);
2050 data->req.size = attrs.filesize
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dmcopy.c298 mt_size_t filesize, newsize; local
304 & date, &filesize, &type, 0) < 0 ){
309 if(fileTooBig(filesize)) {
327 if (!getfreeMinBytes(arg->mp.targetDir, filesize))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_seeking/
H A Dmain.c110 fprintf(stderr, "ERROR: can't determine filesize for %s\n", rawfilename);
268 static FLAC__bool seek_barrage(FLAC__bool is_ogg, const char *filename, off_t filesize, unsigned count, FLAC__int64 total_samples, unsigned read_mode, FLAC__int32 **pcm) argument
326 n = 9 * filesize / (decoder_client_data.channels * decoder_client_data.bits_per_sample);
468 fprintf(stderr, "ERROR: can't determine filesize for %s\n", flacfilename);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/flac/
H A Dencode.c93 off_t filesize; member in struct:__anon823
1459 decoder_data.filesize = (infilesize == (off_t)(-1)? 0 : infilesize);
1542 encoder_session.unencoded_size = decoder_data.filesize;
2541 if(0 == data->filesize)
2544 *stream_length = (FLAC__uint64)data->filesize;

Completed in 236 milliseconds