This is a read-only archive of lispforum.com. The forum was locked to new users and posts and is preserved here as static HTML from a database snapshot taken on 2019-09-07.

difference between cffi mem-ref/mem-aref

3 posts · 1940 views

What is the difference between these two cffi functions? The fine manual is rather terse about this and I haven't managed to make them do something different yet.


-a

Re: difference between cffi mem-ref/mem-aref

The manual is quite explicit on the difference:
The mem-aref function is similar to mem-ref but will automatically calculate the offset from an index.
To elaborate, the optional argument to those functions is treated differently, in mem-ref the offset is in bytes, but in mem-aref the offset is the index multiplied by the size of referenced type.

Looking at the code this is in fact the only functional difference:
(defun mem-aref (ptr type &optional (index 0))
  "Like MEM-REF except for accessing 1d arrays."
  (mem-ref ptr type (* index (foreign-type-size type))))
Although there are compiler macros which implement optimizations if TYPE and/or INDEX are constant.

Re: difference between cffi mem-ref/mem-aref

Thanks, didn't think of looking at the source :oops:


-a