search for: bcdef

Displaying 6 results from an estimated 6 matches for "bcdef".

Did you mean: abcdef
2007 May 31
0
Branch 'as' - 8 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_string.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_as_types.c test/trace
...new file mode 100644 index 0000000..3704fb9 Binary files /dev/null and b/test/trace/substr-5.swf differ diff --git a/test/trace/substr-5.swf.trace b/test/trace/substr-5.swf.trace new file mode 100644 index 0000000..4bcee52 --- /dev/null +++ b/test/trace/substr-5.swf.trace @@ -0,0 +1,420 @@ +-10 - ABCDEF +-10:-10 - +-10:-9 - +-10:-8 - +-10:-7 - +-10:-6 - +-10:-5 - A +-10:-4 - AB +-10:-3 - ABC +-10:-2 - ABCD +-10:-1 - ABCDE +-10:0 - +-10:1 - A +-10:2 - AB +-10:3 - ABC +-10:4 - ABCD +-10:5 - ABCDE +-10:6 - ABCDEF +-10:7 - ABCDEF +-10:8 - ABCDEF +-10:9 - ABCDEF +-9 - ABCDEF +-9:-10 - +-9:-9 -...
2013 Dec 13
1
substring() and propagation of names
Hi, In R < 3.0.0, we used to get: > substring(c(A="abcdefghij", B="123456789"), 2, 6:2) A B A B A "bcdef" "2345" "bcd" "23" "b" But in R >= 3.0.0, we get: > substring(c(A="abcdefghij", B="123456789"), 2, 6:2) [1]...
2013 Feb 18
9
[PATCH 0/5] vringh
This introduces vringh, which are generic accessors for virtio rings (host side). There's a host-side implementation in vhost, but it assumes that the rings are in userspace, and is tied to the vhost implementation. I have patches to adapt it to use vringh, but I'm pushing this in the next merge window for Sjur, who has CAIF patches which need it. This also includes a test program in
2013 Feb 18
9
[PATCH 0/5] vringh
This introduces vringh, which are generic accessors for virtio rings (host side). There's a host-side implementation in vhost, but it assumes that the rings are in userspace, and is tied to the vhost implementation. I have patches to adapt it to use vringh, but I'm pushing this in the next merge window for Sjur, who has CAIF patches which need it. This also includes a test program in
2013 Jan 17
8
[PATCH 1/6] virtio_host: host-side implementation of virtio rings.
Getting use of virtio rings correct is tricky, and a recent patch saw an implementation of in-kernel rings (as separate from userspace). This patch attempts to abstract the business of dealing with the virtio ring layout from the access (userspace or direct); to do this, we use function pointers, which gcc inlines correctly. Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> ---
2013 Jan 17
8
[PATCH 1/6] virtio_host: host-side implementation of virtio rings.
Getting use of virtio rings correct is tricky, and a recent patch saw an implementation of in-kernel rings (as separate from userspace). This patch attempts to abstract the business of dealing with the virtio ring layout from the access (userspace or direct); to do this, we use function pointers, which gcc inlines correctly. Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> ---