search for: precenc

Displaying 9 results from an estimated 9 matches for "precenc".

Did you mean: precent
2020 Oct 06
0
how to enforce audio device precence?
Hi, how can I make it so that audio continues to go the monitor connected to the display port when another monitor gets connected to the HDMI port?
2005 Dec 19
1
help on barplots
Hello, I am a beginner with R and I would need some help with doing barplots. My problem is that I would like to include both diffrent colors of the bars and precence/absence of shading lines in the barplots. When reading in the help file about the "col" command it states: col: a vector of colors for the bars or bar components. By default, grey is used if 'height' is a vector, and a gamma-corrected grey palette if '...
2004 Sep 19
0
[LLVMdev] Need for HAVE_MALLOC_H and a rewrite of../Config/alloca.h to handle this define
Hi On win32 the alloca function is prototyped in <malloc.h>. The configure script checks the precence of this header file: ----------------------- ... checking malloc.h usability... yes checking malloc.h presence... yes checking for malloc.h... yes ... ----------------------- Later in the configure script, it checks: ----------------------- ... checking for working alloca.h... no checking for all...
2004 Sep 19
0
[LLVMdev] Need for HAVE_MALLOC_H and a rewrite of../Config/alloca.hto handle this define
>From: "Henrik Bach" <henrik_bach_llvm at hotmail.com> >Date: Sun, 19 Sep 2004 02:26:51 +0200 > >Hi > >On win32 the alloca function is prototyped in <malloc.h>. > >The configure script checks the precence of this header file: >----------------------- >... >checking malloc.h usability... yes >checking malloc.h presence... yes >checking for malloc.h... yes >... >----------------------- > >Later in the configure script, it checks: >----------------------- >... >chec...
1999 Oct 15
2
IEEE_754 logic
Can anybody of the architects of R enlighten me about the reasoning behind the selection of the IEEE 754 mode for the building of R, please? Special points of interest are: 1. The selection seems to be based on the availability of isnan() and finite(). Is this a common way to test for IEEE 754? 2. The C9x draft introduces isfinite() instead of finite() (and as I see, some systems, e.g. the
2011 May 11
4
help with validations
Hi, I am trying to use the new rails 3 validations and running into some issues. for my password I have, validates :password, :presence => {:on => :create}, :length => { :minimum => 5, :maximum => 16 }, :confirmation => true the presence and length are creating problem. I only want to be able to check for the password at create time to confirm if it is present. at
2012 Apr 07
1
[PATCH 2/2] Update and improve autotools build
...if +#if !defined(HAVE_LROUND) +#if defined(_MSC_VER) +#include <float.h> +#define copysign _copysign +#elif defined(__GNUC__) +#define copysign __builtin_copysign +#endif +static inline long int lround(double x) { + return (long)(x + copysign (0.5, x)); +} +//If this fails, we are in the precence of a mid 90's compiler..move along... +#endif void FLAC__lpc_window_data(const FLAC__int32 in[], const FLAC__real window[], FLAC__real out[], unsigned data_len) { @@ -199,14 +212,8 @@ int FLAC__lpc_quantize_coefficients(const FLAC__real lp_coeff[], unsigned order, FLAC__int32 q; for(...
2012 Dec 26
0
[PATCH] Fix building with MSYS and MinGW(-w64); Improve Makefile.lite build system
...--- a/src/libFLAC/lpc.c +++ b/src/libFLAC/lpc.c @@ -61,7 +61,7 @@ #elif defined(__GNUC__) #define copysign __builtin_copysign #endif -static inline long int lround(double x) { +inline long int lround(double x) { return (long)(x + copysign (0.5, x)); } //If this fails, we are in the precence of a mid 90's compiler..move along... diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index 11b6310..b1ee208 100644 --- a/src/metaflac/Makefile.am +++ b/src/metaflac/Makefile.am @@ -43,8 +43,8 @@ metaflac_SOURCES = \ metaflac_LDFLAGS = metaflac_LDADD = \ - $(top_build...
2012 Dec 27
4
[PATCH] Makefile.lite: Fix building with MSYS and MinGW(-w64), Improvements
...--- a/src/libFLAC/lpc.c +++ b/src/libFLAC/lpc.c @@ -61,7 +61,7 @@ #elif defined(__GNUC__) #define copysign __builtin_copysign #endif -static inline long int lround(double x) { +inline long int lround(double x) { return (long)(x + copysign (0.5, x)); } //If this fails, we are in the precence of a mid 90's compiler..move along... diff --git a/src/metaflac/Makefile.am b/src/metaflac/Makefile.am index 11b6310..b1ee208 100644 --- a/src/metaflac/Makefile.am +++ b/src/metaflac/Makefile.am @@ -43,8 +43,8 @@ metaflac_SOURCES = \ metaflac_LDFLAGS = metaflac_LDADD = \ - $(top_build...