Displaying 3 results from an estimated 3 matches for "tblock".
Did you mean:
block
1998 Apr 12
0
Long file name support for smbclient
...;name));
+ break;
+ case 'L':
+ tar_size=unoct(hb->dbuf.size, sizeof(hb->dbuf.size)) + 1;
+ if ((bp=(char *) malloc((size_t) tar_size )) == NULL) {
+ DEBUG(0, ("Out of memory!"));
+ return -1;
+ }
+ memcpy((void *) bp, (const void *) hb+TBLOCK, (size_t) tar_size);
+ long_file_name=bp;
+ return tar_size;
+ break;
+ default:
DEBUG(0, ("this tar file appears to contain some kind of link - ignoring\n"));
return -2;
}
+ } else {
+ strcpy(finfo->name, prefix);
+
+ /* use l + 1 to do the...
2002 Dec 20
1
smbclient and large file support
...o.name;
}
if (dry_run)
{
- DEBUG(3,("skipping file %s of size %d bytes\n",
+ DEBUG(3,("skipping file %s of size %12.0f bytes\n",
finfo.name,
- (int)finfo.size));
+ (double)finfo.size));
shallitime=0;
ttarf+=finfo.size + TBLOCK - (finfo.size % TBLOCK);
ntarf++;
@@ -709,9 +711,9 @@
}
else
{
- DEBUG(3,("getting file %s of size %d bytes as a tar file %s",
+ DEBUG(3,("getting file %s of size %.0f bytes as a tar file %s",
finfo.name,
- (int)finfo.size,
+...
2011 Dec 13
1
[LLVMdev] Memory Dependence Analysis
...= AA->getLocation(load);
isLoad = true;
}
else
errs() << "pow!";
MDA->getNonLocalPointerDependency(loc, isLoad, bb, result);
for (SmallVectorImpl<NonLocalDepResult>::iterator it=result.begin() ; it
< result.end(); it++ ) {
errs() << "\tblock " << it->getBB() << " ";
MemDepResult dd = it->getResult();
if (dd.isClobber())
errs() << "clobber\n";
else if (dd.isDef())
errs() << "def\n";
else {
if (dd.isNonLocal())
errs() << "nonLoca...