Searched refs:fileSize (Results 1 - 25 of 86) sorted by relevance

1234

/macosx-10.9.5/ICU-511.35/icuSources/samples/layout/
H A DUnicodeReader.cpp29 int32_t fileSize; local
47 fileSize = ftell(f);
81 fileSize -= signatureLength;
83 byteBuffer = new char[fileSize];
92 fread(byteBuffer, sizeof(char), fileSize, f);
102 UnicodeString myText(byteBuffer, fileSize, cp);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFTPDirectoryParser.h134 fileSize.truncate(0);
148 String fileSize; member in struct:WebCore::ListResult
/macosx-10.9.5/cddafs-252/Classes/
H A DTSystemUtils.cpp155 CFIndex fileSize = 0; local
164 result = CFNumberGetValue ( fileSizeNumber, kCFNumberCFIndexType, &fileSize );
167 data = CFDataCreateMutable ( kCFAllocatorDefault, fileSize );
170 CFDataSetLength ( data, fileSize );
181 endPtr = ( UInt8 * ) dataPtr + fileSize;
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/examples/tablelist/
H A DembeddedWindows.tcl49 $tbl columnconfigure 2 -name fileSize -sortmode integer
63 set fileSize [file size $fileName]
64 $tbl insert end [list $fileName $fileSize $fileSize "" no]
66 if {$fileSize > $maxFileSize} {
67 set maxFileSize $fileSize
97 set fileSize [$tbl cellcget $row,fileSize -text]
98 place $w.f -relwidth [expr {double($fileSize) / $::maxFileSize}]
H A DembeddedWindows_tile.tcl80 $tbl columnconfigure 2 -name fileSize -sortmode integer
98 set fileSize [file size $fileName]
99 $tbl insert end [list $fileName $fileSize $fileSize "" no]
101 if {$fileSize > $maxFileSize} {
102 set maxFileSize $fileSize
132 set fileSize [$tbl cellcget $row,fileSize -text]
133 place $w.f -relwidth [expr {double($fileSize) / $::maxFileSize}]
/macosx-10.9.5/ICU-511.35/icuSources/tools/gencfu/
H A Dgencfu.cpp304 long fileSize; local
312 fileSize = ftell(file);
314 result = new char[fileSize+10];
320 long t = fread(result, 1, fileSize, file);
321 if (t != fileSize) {
326 result[fileSize]=0;
327 *len = static_cast<int32_t>(fileSize);
/macosx-10.9.5/expat-12/expat/tests/benchmark/
H A Dbenchmark.c31 int nrOfLoops, bufferSize, fileSize, i, isFinal; local
70 fileSize = fread (XMLBuf, sizeof (char), fileAttr.st_size, fd);
79 XMLBufEnd = XMLBuf + fileSize;
/macosx-10.9.5/Security-55471.14.18/include/security_codesigning/
H A Dsinglediskrep.cpp81 return fd().fileSize();
H A Dcfmdiskrep.cpp101 return fd().fileSize();
161 fd.seek(fd.fileSize() - sizeof(Sentinel));
163 if (fd.read(&sentinel, sizeof(sentinel), fd.fileSize() - sizeof(Sentinel)) == sizeof(Sentinel))
/macosx-10.9.5/Security-55471.14.18/libsecurity_codesigning/lib/
H A Dsinglediskrep.cpp81 return fd().fileSize();
H A Dcfmdiskrep.cpp101 return fd().fileSize();
161 fd.seek(fd.fileSize() - sizeof(Sentinel));
163 if (fd.read(&sentinel, sizeof(sentinel), fd.fileSize() - sizeof(Sentinel)) == sizeof(Sentinel))
/macosx-10.9.5/CF-855.17/
H A DCFUniChar.c190 static bool __CFUniCharLoadBytesFromFile(const char *fileName, const void **bytes, int64_t *fileSize) { argument
192 static bool __CFUniCharLoadBytesFromFile(const wchar_t *fileName, const void **bytes, int64_t *fileSize) {
221 if (NULL != fileSize) {
225 *fileSize = 0; // This indicates no checking. Is it right ?
227 *fileSize = memoryInfo.RegionSize;
247 if (NULL != fileSize) *fileSize = statBuf.st_size;
256 static bool __CFUniCharLoadFile(const char *bitmapName, const void **bytes, int64_t *fileSize) { argument
258 static bool __CFUniCharLoadFile(const wchar_t *bitmapName, const void **bytes, int64_t *fileSize) {
265 if (NULL != fileSize) *fileSiz
307 __CFSimpleFileSizeVerification(const void *bytes, int64_t fileSize) argument
310 __CFSimpleFileSizeVerification(const void *bytes, int64_t fileSize) argument
312 __CFSimpleFileSizeVerification(const void *bytes, int64_t fileSize) argument
375 int64_t fileSize; local
695 int64_t fileSize; local
1212 int64_t fileSize; local
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Dpkg_gencmn.c84 uint32_t basenameLength, basenameOffset, fileSize, fileOffset; member in struct:__anon1459
228 fileOffset+=(files[i].fileSize+15)&~0xf;
267 printf("adding %s (%ld byte%s)\n", files[i].pathname, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s");
285 length=files[i].fileSize;
287 if (nread != files[i].fileSize) {
288 fprintf(stderr, "gencmn: unable to read %s properly (got %ld/%ld byte%s)\n", files[i].pathname, (long)nread, (long)files[i].fileSize, files[i].fileSize == 1 ? "" : "s");
465 files[fileCount].fileSize=length;
/macosx-10.9.5/securityd-55199.3/src/
H A DAuthorizationDBPlist.cpp172 off_t fileSize = st.st_size; local
173 CFMutableDataRef xmlData = CFDataCreateMutable(NULL, fileSize);
174 CFDataSetLength(xmlData, fileSize);
176 ssize_t bytesRead = read(fd, buffer, fileSize);
177 if (bytesRead != fileSize) {
185 bytesRead, fileSize, mFileName.c_str());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/efl/tests/
H A Dtest_ewk2_favicon_database.cpp54 size_t fileSize = eina_file_size_get(f); local
63 soup_message_body_append(message->response_body, SOUP_MEMORY_COPY, contents, fileSize);
/macosx-10.9.5/Security-55471.14.18/include/security_utilities/
H A Dstreams.cpp84 return fileSize();
/macosx-10.9.5/Security-55471.14.18/libsecurity_utilities/lib/
H A Dstreams.cpp84 return fileSize();
/macosx-10.9.5/cddafs-252/
H A DAIFFSupport.h131 BuildCDAIFFHeader ( CDAIFFHeader * header, uint32_t fileSize );
/macosx-10.9.5/dyld-239.4/launch-cache/
H A Ddsc_iterator.h42 uint64_t fileSize; // of segment member in struct:dyld_shared_cache_segment_info
/macosx-10.9.5/smb-697.95.1/include/netsmb/
H A Dsmbio.h47 uint64_t fileSize; member in struct:open_outparm
H A Dsmbio_2.h36 uint64_t fileSize; member in struct:open_outparm_ex
/macosx-10.9.5/ICU-511.35/icuSources/test/intltest/
H A Ddcfmtest.cpp489 int32_t fileSize; local
494 fileSize = ftell(f);
495 fileBuf = new char[fileSize];
497 amtRead = fread(fileBuf, 1, fileSize, f);
498 if (amtRead != fileSize || fileSize <= 0) {
512 if (fileSize<3 || uprv_strncmp(fileBuf, "\xEF\xBB\xBF", 3) != 0) {
/macosx-10.9.5/ICU-511.35/icuSources/test/thaitest/
H A Dthaitest.cpp308 int32_t fileSize; local
321 fileSize = ftell(f);
324 bufferChars = new char[fileSize];
332 fread(bufferChars, sizeof(char), fileSize, f);
341 UnicodeString myText(bufferChars, fileSize, "UTF-8");
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DFileSystemWin.cpp60 ULARGE_INTEGER fileSize; local
61 fileSize.HighPart = findData.nFileSizeHigh;
62 fileSize.LowPart = findData.nFileSizeLow;
64 if (fileSize.QuadPart > static_cast<ULONGLONG>(std::numeric_limits<long long>::max()))
67 size = fileSize.QuadPart;
/macosx-10.9.5/tcl-102/tcl_ext/tclvfs/tclvfs/library/template/
H A Dtdelta.tcl181 set fileSize [tell $f]
183 set fileStats(size) $fileSize
217 set endBlockPointer $fileSize
220 while {$endBlockPointer < $fileSize} {
248 if {$endBlockPointer >= $fileSize} {
292 set fileSize [tell $f]
294 if {$sizecheck && ($fileSize < [expr $blockSize * 5])} {close $f ; return $digest}
304 set fileIncrement [expr $fileSize/10]
305 set fpLocation [expr $fileSize - 21]

Completed in 395 milliseconds

1234