Displaying 9 results from an estimated 9 matches for "101,25".
Did you mean:
101,2
2003 Oct 22
1
Help with STL function in R compared to S-Plus
...user specifies a univariate time series,
and the length of window for a seasonal component, a trend component
and one or more frequency (or low-pass filter) component(s).
Using the data "co2" as example, the S-Plus specification is something
like:
stl(co2, ss.window=17, fc.window=c(101,25), fc.degree=c(1,2)))
The near-equivalent specification of stl in R is something like:
stl(co2, s.window=17, l.window=c(101,25), l.degree=c(1,2))
The user has the option of selecting multiple frequency components in
S-Plus asa concatenation of values, as: fc.window =c(101,25) as the
S-Pl...
2007 Jul 21
2
tincctl patches
(Second try to send this. I wonder if the first one gotten eaten by a
spam filter; I'll link to patches instead of attaching them.)
Here are the tincctl patches I've been working on. They apply to
http://www.tinc-vpn.org/svn/tinc/branches/1.1@1545. I intend to commit
them once the crypto stuff's fixed. Since they're basically done, I'm
emailing them now for review and in case
2004 Aug 24
5
MMX/mmxext optimisations
quite some speed improvement indeed.
attached the updated patch to apply to svn/trunk.
j
-------------- next part --------------
A non-text attachment was scrubbed...
Name: theora-mmx.patch.gz
Type: application/x-gzip
Size: 8648 bytes
Desc: not available
Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20040824/5a5f2731/theora-mmx.patch-0001.bin
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
...ev/null; then
+ git config --file .gitmodules submodule.gnulib.url >/dev/null; then
git submodule init
GNULIB_SRCDIR=`cd $GNULIB_SRCDIR && pwd`
git config --replace-all submodule.gnulib.url $GNULIB_SRCDIR
diff --git a/cat/virt-cat.pl b/cat/virt-cat.pl
index 1ac720c..1017876 100755
--- a/cat/virt-cat.pl
+++ b/cat/virt-cat.pl
@@ -116,8 +116,8 @@ at all.
=cut
GetOptions ("help|?" => \$help,
- "version" => \$version,
- "connect|c=s" => \$uri,
+ "version" => \$version,
+ "connect|...
2019 May 06
25
[PATCH v4 00/19] Share TTM code among DRM framebuffer drivers
...| 75 +--
drivers/gpu/drm/vboxvideo/vbox_mode.c | 36 +-
drivers/gpu/drm/vboxvideo/vbox_ttm.c | 355 +---------
include/drm/drm_device.h | 4 +
include/drm/drm_gem_vram_helper.h | 139 ++++
include/drm/drm_vram_mm_helper.h | 101 +++
42 files changed, 1693 insertions(+), 2386 deletions(-)
create mode 100644 drivers/gpu/drm/drm_gem_vram_helper.c
create mode 100644 drivers/gpu/drm/drm_vram_helper_common.c
create mode 100644 drivers/gpu/drm/drm_vram_mm_helper.c
create mode 100644 include/drm/drm_gem_vram_helper.h
create...
2019 May 06
25
[PATCH v4 00/19] Share TTM code among DRM framebuffer drivers
...| 75 +--
drivers/gpu/drm/vboxvideo/vbox_mode.c | 36 +-
drivers/gpu/drm/vboxvideo/vbox_ttm.c | 355 +---------
include/drm/drm_device.h | 4 +
include/drm/drm_gem_vram_helper.h | 139 ++++
include/drm/drm_vram_mm_helper.h | 101 +++
42 files changed, 1693 insertions(+), 2386 deletions(-)
create mode 100644 drivers/gpu/drm/drm_gem_vram_helper.c
create mode 100644 drivers/gpu/drm/drm_vram_helper_common.c
create mode 100644 drivers/gpu/drm/drm_vram_mm_helper.c
create mode 100644 include/drm/drm_gem_vram_helper.h
create...
2019 May 08
22
[PATCH v5 00/20] Share TTM code among DRM framebuffer drivers
Several simple framebuffer drivers copy most of the TTM code from each
other. The implementation is always the same; except for the name of
some data structures.
As recently discussed, this patch set provides generic memory-management
code for simple framebuffers with dedicated video memory. It further
converts the respective drivers to the generic code. The shared code
is basically the same
2019 May 08
22
[PATCH v5 00/20] Share TTM code among DRM framebuffer drivers
Several simple framebuffer drivers copy most of the TTM code from each
other. The implementation is always the same; except for the name of
some data structures.
As recently discussed, this patch set provides generic memory-management
code for simple framebuffers with dedicated video memory. It further
converts the respective drivers to the generic code. The shared code
is basically the same
2007 Nov 30
0
36 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_date.c libswfdec/swfdec_as_initialize.as libswfdec/swfdec_as_initialize.h libswfdec/swfdec_as_strings.c libswfdec/swfdec_flash_security.c
...e (4, 0);
ASSetNativeAccessor = ASnative (4, 1);
flash = {};
-ASSetPropFlags (this, "flash", 4096);
/*** Object ***/
/* Only Flash extensions here, rest to swfdec_as_initialize.as */
@@ -33,6 +32,9 @@ ASSetPropFlags (this, "flash", 4096);
Object.registerClass = ASnative(101, 8);
ASSetPropFlags (Object, null, 7);
+// so we can use it in this script
+ASSetPropFlags (Object, "addProperty", 0, 128);
+
/*** Error ***/
function Error (msg) {
@@ -76,7 +78,6 @@ AsBroadcaster.initialize = function (o) {
o._listeners = [];
ASSetPropFlags(o, "broadcas...