st_size            42 core/raw.c             if ((stat(filename,&st) != 0) || (st.st_size < camera_sensor.raw_size))
st_size            46 core/raw.c             if (st.st_size == camera_sensor.raw_size)
st_size            46 include/std/stdlib.h     unsigned long   st_size;
st_size            16 lib/lang/fileutil.c static char* _load_file(const char* name, int* rv_size, int* st_size, int add0)
st_size            30 lib/lang/fileutil.c 		ssize = st.st_size;
st_size            31 lib/lang/fileutil.c 		if ((st_size != 0) && (*st_size > 0) && (ssize > *st_size))       // Limit size read to the size requested
st_size            32 lib/lang/fileutil.c 		    ssize = *st_size;
st_size            70 lib/lang/fileutil.c     if (st_size) *st_size = ssize;
st_size           446 lib/lua/loslib.c     setfield(L,"size",st.st_size);	/* size of file, in bytes */
st_size           458 lib/lua/loslib.c     setfield(L,"blocks",(st.st_size/512) + (st.st_size%512)?1:0); 
st_size           798 modules/dng.c      if (stat(fn, &st) != 0 || st.st_size<=camera_sensor.raw_size)
st_size           817 modules/dng.c                      fseek(dng, st.st_size-camera_sensor.raw_size, SEEK_SET); // SEEK_END is not working?
st_size           848 modules/dng.c      if ((stat(fn,&st) == 0) && (st.st_size >= camera_sensor.raw_size))
st_size           853 modules/dng.c              lseek(fd, st.st_size-camera_sensor.raw_size, SEEK_SET);
st_size          1029 modules/dng.c      filesize=st.st_size;
st_size           352 modules/file_shelter.c                 de->size  = st.st_size;
st_size           292 modules/games/gui_sokoban.c         if (stat((char *)level_file_name,&st) != 0 || st.st_size==0) 
st_size           299 modules/games/gui_sokoban.c         buf=malloc(st.st_size+1);
st_size           305 modules/games/gui_sokoban.c         fread(buf,1,st.st_size,fd);
st_size           306 modules/games/gui_sokoban.c         buf[st.st_size]=0;
st_size           502 modules/gui_fselect.c                 de->size  = st.st_size;
st_size            79 modules/gui_read.c     read_file_size = (read_file>=0 && stat((char*)file, &st)==0)?st.st_size:0;
st_size            59 modules/raw_merge.c     if (stat(from,&st) != 0 || st.st_size < camera_sensor.raw_size)
st_size            64 modules/raw_merge.c     fromDNG = st.st_size - camera_sensor.raw_size;
st_size            67 modules/raw_merge.c     if (stat(sub,&st) != 0 || st.st_size < camera_sensor.raw_size)
st_size            72 modules/raw_merge.c     subDNG = st.st_size - camera_sensor.raw_size;
st_size           324 modules/raw_merge.c     if (stat(filename,&st) != 0 || st.st_size < camera_sensor.raw_size)
st_size           329 modules/raw_merge.c     int fcrawDNG = st.st_size - camera_sensor.raw_size;
st_size           431 modules/raw_merge.c     if (stat(namebuf,&st) != 0 || st.st_size < camera_sensor.raw_size)
st_size           436 modules/raw_merge.c     int destDNG = st.st_size - camera_sensor.raw_size;
st_size           674 platform/generic/wrappers.c     unsigned long	st_size;	/* size of file, in bytes */
st_size           704 platform/generic/wrappers.c     unsigned long	st_size;
st_size           724 platform/generic/wrappers.c     unsigned long	st_size;
st_size           736 platform/generic/wrappers.c     unsigned long	st_size;        // fixme: very likely 64bit, upper 32 bit is st_unknown_2
st_size           763 platform/generic/wrappers.c             pStat->st_size = lStat.st_size;
st_size            44 platform/ixus200_sd980/wrappers.c     unsigned long	st_size;
st_size          1138 tools/capdis.c     int dumpsize = st.st_size;
st_size          1144 tools/code_gen.c     size_t len = st.st_size;
st_size            98 tools/dumputil.c 	if (st.st_size < MIN_DUMP_SIZE) {
st_size           103 tools/dumputil.c     if ((p = malloc(st.st_size)) == NULL ) {
st_size           104 tools/dumputil.c         fprintf(stderr,"error: unable to allocate %lu bytes\n",(unsigned long)st.st_size);
st_size           116 tools/dumputil.c     rcnt=fread(p, 1, st.st_size, dumpfile);
st_size           119 tools/dumputil.c     if (rcnt != (size_t)st.st_size) {
st_size           125 tools/dumputil.c 	dump->size=st.st_size;
st_size            96 tools/elf2flt/elf.h   elf32_word      st_size;        /* Size of associated object. */
st_size           242 tools/elf2flt/elfflt.c     printf("SYMBOL %x [%02x: %-15s] - value=0x%x, size=%d, info=0x%x, section=%d\n", a, s.st_name, name, s.st_value, s.st_size, s.st_info, s.st_shndx);    
st_size            23 tools/ghidra_scripts/datatypes/fw_types.h     unsigned long	st_size;	/* size of file, in bytes */
st_size            50 tools/ghidra_scripts/datatypes/fw_types.h     unsigned long	st_size;
st_size            68 tools/ghidra_scripts/datatypes/fw_types.h     unsigned long	st_size;
st_size            80 tools/ghidra_scripts/datatypes/fw_types.h     unsigned long	st_size;        // fixme: very likely 64bit, upper 32 bit is st_unknown_2
st_size           237 tools/makeexport.c         size = (stat((char*)filename, &st)==0)?st.st_size:0;
st_size           192 tools/makelang.c         size = (stat((char*)filename, &st)==0)?st.st_size:0;
st_size           307 tools/rawconvert.c 	in_data=malloc(st.st_size);
st_size           313 tools/rawconvert.c 	rcount=fread(in_data,1,st.st_size,fp);
st_size           314 tools/rawconvert.c 	assert(rcount==(size_t)st.st_size);
st_size           319 tools/rawconvert.c 	if((npixels*op->ibpp) >> 3 != st.st_size) {
st_size           321 tools/rawconvert.c 					argv[0], iname, width, height, op->ibpp, (npixels*op->ibpp) >> 3, (unsigned)st.st_size);
st_size           328 tools/rawconvert.c 	fprintf(stderr,"input:  %s %ux%u %u bpp %u bytes\n",iname, width, height, op->ibpp, (unsigned)(st.st_size));
st_size           130 tools/yuvconvert.c 	if(isize > st.st_size) {
st_size           132 tools/yuvconvert.c 				argv[0],width,height,isize,(unsigned long)st.st_size);
st_size           134 tools/yuvconvert.c 	} else if ( isize < st.st_size) {
st_size           136 tools/yuvconvert.c 				argv[0],width,height,isize,(unsigned long)st.st_size);