search for: _sin

Displaying 3 results from an estimated 3 matches for "_sin".

Did you mean: _in
2004 Aug 06
1
Fixed-point cos/acos
Hi, Before I try to code this myself, I'd like to know if anyone has a fixed-point routine to compute the cos and acos functions. All I need is around 3-digit accuracy. Thanks. Jean-Marc -- Jean-Marc Valin, M.Sc.A., ing. jr. LABORIUS (http://www.gel.usherb.ca/laborius) Université de Sherbrooke, Québec, Canada -------------- next part -------------- A non-text attachment was
2017 Feb 06
3
Kaleidoscope tutorial: comments, corrections and Windows support
...xternal() || Symb.isWeakExternal()) > Result |= SymbolRef::SF_Global | SymbolRef::SF_Exported; Works and sounds reasonable to me, but maybe you can prove me wrong. - "ready> sin(1.0);": On Windows, this fails with "LLVM ERROR: Program used external function '_sin' which could not be resolved!" because "DynamicLibrary::SearchForAddressOfSymbol" iterates over all loaded libraries and uses GetProcAddress to try getting the address. But for the old "msvcrt.dll" as well as the newer "ucrtbased.dll", the math...
2009 Dec 31
1
[PATCH] Autogenerate uureg opcode macros
..._RFL(dst, src0, src1) ureg_RFL(ureg, dst, _src(src0), _src(src1)) -#define _SEQ(dst, src0, src1) ureg_SEQ(ureg, dst, _src(src0), _src(src1)) -#define _SFL(dst, src0, src1) ureg_SFL(ureg, dst, _src(src0), _src(src1)) -#define _SGT(dst, src0, src1) ureg_SGT(ureg, dst, _src(src0), _src(src1)) -#define _SIN(dst, src) ureg_SIN(ureg, dst, _src(src)) -#define _SLE(dst, src0, src1) ureg_SLE(ureg, dst, _src(src0), _src(src1)) -#define _SNE(dst, src0, src1) ureg_SNE(ureg, dst, _src(src0), _src(src1)) -#define _STR(dst, src0, src1) ureg_STR(ureg, dst, _src(src0), _src(src1)) -#define _TEX(dst, target, src0,...