Displaying 2 results from an estimated 2 matches for "f_sum".
Did you mean:
i_sum
2011 Dec 14
1
[Bug 8659] New: link-by-hash.diff: Fix error when running without --link-by-hash
...P5
Component: core
AssignedTo: wayned at samba.org
ReportedBy: chris at onthe.net.au
QAContact: rsync-qa at samba.org
Created attachment 7178
--> https://bugzilla.samba.org/attachment.cgi?id=7178
Fix error when running without --link-by-hash
Don't pass F_SUM(file) into receive_data() if not using --link-by-hash.
When running without --link-by-hash (and without --checksum), F_SUM(file)
isn't allocated. However this location was being unconditionally passed into
receive_data() which would then write into it, stamping on whatever happened
to be there...
2012 Mar 28
0
[LLVMdev] GSoC 2012 Proposal: Python bindings for LLVM
...m/p/google-summer-of-code-2009-swig/downloads/list
[6]. http://forge.scilab.org/index.php/p/epfs/
*Appendix*
*llvm-py Implementation
*
Here I give a small example to show the relationship between the Python
function in llvm-py and the C function in LLVM.
Let us analysis an example in llvm-py:
*f_sum = my_module.add_function(ty_func, "sum").*
How the above statement is implemented to call LLVM C function successfully?
The llvm-py package has six modules, of which the most important is the
core module, consisting of the following files:
*core.py * high-level support code
*_core.c *...