search for: _contains

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

Did you mean: contains
2020 Jul 15
2
Openblas?
On 2020-07-15 14:36, Dirk Eddelbuettel wrote: > > G?ran, > > This is not an easy email to reply to because it _contains nothing > reproducible_. Thanks Dirk, Sorry about that, but my real question was (see below): "Is the problem that openblas uses C versions of blas?" That is, do I need to change F77_CALL(name)(...); to cblas_name(...); everywhere? And if so, is this really a good idea with old...
2020 Jul 15
2
Openblas?
Hello, I thought that I should try openblas when building a CRAN package containing lots of old (twentieth century) C-code with frequent calls to blas and lapack routines. I have the following options on my Ubuntu 20.04 machine: Selection Path Priority Status ------------------------------------------------------------ * 0
2020 Jul 15
0
Openblas?
G?ran, This is not an easy email to reply to because it _contains nothing reproducible_. On 15 July 2020 at 13:24, G?ran Brostr?m wrote: | Hello, | | I thought that I should try openblas when building a CRAN package | containing lots of old (twentieth century) C-code with frequent calls to | blas and lapack routines. I have the following options on my Ubuntu...
2020 Jul 15
0
Openblas?
On 15 July 2020 at 16:13, G?ran Brostr?m wrote: | On 2020-07-15 14:36, Dirk Eddelbuettel wrote: | > | > G?ran, | > | > This is not an easy email to reply to because it _contains nothing | > reproducible_. | | Thanks Dirk, | | Sorry about that, but my real question was (see below): "Is the problem | that openblas uses C versions of blas?" That is, do I need to change | | F77_CALL(name)(...); | | to | | cblas_name(...); | | everywhere? And if so, is this...
2007 Dec 18
2
Changes to 'refs/tags/0.5.5'
...s don't segfault if we don't have a movie typo check event receiving by calling a Movie vfunc add swfdec_as_object_has_variable() add swfdec_player_is_mouse_pressed() macro for code clarity set default event handlers for SwfdecMovie mouse events fix _contains() checks only react to mouse button 0 number buttons correctly and release the mouse grab on button release confused mouse_in and mouse_out vfuncs implement mouse_events vfunc fix to new mouse API port to new API add mouse movement test emit a mouse-i...
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...35:25 2007 +0100 movies on top of other movies need to receive events diff --git a/libswfdec/swfdec_button_movie.c b/libswfdec/swfdec_button_movie.c index 0a8a50c..4395c2e 100644 --- a/libswfdec/swfdec_button_movie.c +++ b/libswfdec/swfdec_button_movie.c @@ -273,7 +273,7 @@ swfdec_button_movie_contains (SwfdecMovie *movie, double x, double y, gboolean e /* check for movies in a higher layer that react to events */ SwfdecMovie *ret; ret = SWFDEC_MOVIE_CLASS (swfdec_button_movie_parent_class)->contains (movie, x, y, TRUE); - if (ret && ret != movie) + if (ret &&a...