Searched refs:log (Results 1 - 25 of 65) sorted by relevance

123

/haiku/src/add-ons/kernel/drivers/audio/ac97/sis7018/
H A Dsis7018.settings.sample13 ## logfile [full path to private log file]
14 ## default path value: /var/log/sis7018.log
17 logfile /var/log/sis7018.log
19 ## reset_logfile [on|off] - truncate private log file on driver/system restart
25 ## add_timestamp [on|off] - add time of writing the string in private log file.
/haiku/src/system/libroot/posix/musl/math/x86/
H A Dlog.s1 .global log
2 .type log,@function
3 log: label
/haiku/src/add-ons/kernel/drivers/audio/usb/
H A Dusb_audio.settings20 ## logfile [full path to private log file]
21 ## default path value: /var/log/usb_asix.log
24 logfile /boot/home/usb_audio.log
26 ## reset_logfile [on|off] - truncate private log file on driver/system restart
32 ## add_timestamp [on|off] - add time of writing the string in private log file.
/haiku/src/system/libroot/posix/glibc/include/arch/x86_64/
H A Dasm-syntax.h21 #define ALIGN(log) .align 1<<log
/haiku/src/system/libroot/posix/glibc/include/arch/x86/
H A Dasm-syntax.h23 # define ALIGN(log) .align 1<<log
25 # define ALIGN(log) .align log
/haiku/src/add-ons/kernel/file_cache/
H A Dlog.cpp69 put_log_entry(cache_log *log) argument
79 dprintf("log: Dropped log entry!\n");
84 cache_log *log = &sLogEntries[sCurrentEntry++]; local
87 log->team = thread->team->id;
88 strlcpy(log->team_name, thread->name, B_OS_NAME_LENGTH);
90 log->timestamp = system_time();
92 return log;
100 cache_log *log = get_log_entry(); local
101 if (log
131 cache_log *log = get_log_entry(); local
157 cache_log *log = get_log_entry(); local
269 cache_log *log = &sLogEntries[i]; local
332 cache_log *log = &sLogEntries[i]; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/generic/
H A Dutil.h37 area_id alloc_mem(phys_addr_t *phy, void **log, size_t size, const char *name,
39 area_id map_mem(void **log, phys_addr_t phy, size_t size, const char *name);
H A Dutil.c67 alloc_mem(phys_addr_t *phy, void **log, size_t size, const char *name, bool user) argument
99 if (log)
100 *log = logadr;
103 LOG(("area = %d, size = %d, log = %#08X, phy = %#08X\n", area, size, logadr,
110 map_mem(void **log, phys_addr_t phy, size_t size, const char *name) argument
124 *log = (void *)((uintptr_t)mapadr + (uintptr_t)offset);
127 phy, *log, offset, phyadr, mapadr, size, area));
/haiku/src/add-ons/kernel/drivers/audio/ice1712/
H A Dutil.h15 area_id alloc_mem(physical_entry *phy, addr_t *log, size_t size,
H A Dutil.cpp41 alloc_mem(physical_entry *phy, addr_t *log, size_t size, const char *name) argument
69 if (log)
70 *log = (addr_t)logadr;
72 ITRACE("area = %" B_PRId32 ", size = %" B_PRIuSIZE ", log = 0x%" \
74 *log, phy->address);
/haiku/src/system/libroot/posix/musl/math/
H A Dacosh.c8 /* acosh(x) = log(x + sqrt(x*x-1)) */
21 return log(2*x - 1/(x+sqrt(x*x-1)));
23 return log(x) + 0.693147180559945309417232121458176568;
H A Dasinh.c3 /* asinh(x) = sign(x)*log(|x|+sqrt(x*x+1)) ~= x - x^3/6 + o(x^5) */
16 x = log(x) + 0.693147180559945309417232121458176568;
19 x = log(2*x + 1/(sqrt(x*x+1)+x));
H A Dtgamma.c196 /* lgamma(x) ~ -log(|x|) for tiny |x| */
199 return -log(absx);
206 return log(fabs(x));
209 /* second term (log(S)-g) could be more precise here.. */
210 /* or with stirling: (|x|-0.5)*(log(|x|)-1) + poly(1/|x|) */
211 r = (absx-0.5)*(log(absx+gmhalf)-1) + (log(S(absx)) - (gmhalf+0.5));
216 r = log(pi/(fabs(x)*absx)) - r;
H A Dlogl.c36 * log(1+x) = x - 0.5 x**2 + x**3 P(x)/Q(x).
40 * log(x) = log(1+z/2) - log(1-z/2) = z + z**3 P(z)/Q(z).
60 return log(x);
63 /* Coefficients for log(1+x) = x - x**2/2 + x**3 P(x)/Q(x)
86 /* Coefficients for log(x) = z + z^3 P(z^2)/Q(z^2),
129 /* logarithm using log(x) = z + z**3 P(z)/Q(z),
151 /* logarithm using log(1+x) = x - .5x**2 + x**3 P(x)/Q(x) */
173 return log(
[all...]
H A Dlgamma_r.c21 * lgamma(1+s) = log(s) + lgamma(s)
23 * lgamma(7.3) = log(6.3) + lgamma(6.3)
24 * = log(6.3*5.3) + lgamma(5.3)
25 * = log(6.3*5.3*4.3*3.3*2.3) + lgamma(2.3)
49 * lgamma(x)~(x-0.5)log(x)-x+0.5*log(2pi)+1/(12x)-1/(360x**3)+....
51 * lgamma(x)~(x-0.5)*(log(x)-1)-.5*(log(2pi)-1) + ...)
53 * f(z) = lgamma(x) - (x-0.5)(log(x)-1)
66 * lgamma(x) = log(|Gamm
[all...]
/haiku/3rdparty/mmu_man/scripts/
H A Dbootstrap-haiku.sh17 log () { function
29 log "Getting url of latest revision..."
41 log "Downloading latest revision: $file"
49 log "Unziping..."
68 log "Making the partition bootable..."
74 log "Copying files..."
/haiku/headers/private/graphics/common/
H A Dlog_coll.h13 application to retrieve the log.
31 // add log entry with 0..3 (uint32) data
32 #define LOG( li, what ) log( li, what, 0 )
33 #define LOG1( li, what, arg1 ) log( li, what, 1, arg1 );
34 #define LOG2( li, what, arg1, arg2 ) log( li, what, 2, arg1, arg2 );
35 #define LOG3( li, what, arg1, arg2, arg3 ) log( li, what, 3, arg1, arg2, arg3 );
38 // one log entry
54 void log( struct log_info_t *li, uint16 what, const uint8 num_args, ... );
56 #define log( a, b, c... ) macro
/haiku/src/add-ons/input_server/devices/wacom/
H A DMasterServerDevice.h80 FILE* log = fopen("/var/log/wacom.log", "a"); local
83 vfprintf(log, fmt, ap);
85 fflush(log);
86 fclose(log);
/haiku/src/apps/poorman/
H A DPoorManLoggingView.h52 void SetLogFileName(const char* log) argument
54 fLogFileName->SetText(log);
H A DPoorManServer.cpp147 //log it
393 BString log; local
407 log.SetTo("Sending file: ");
409 log << hc->hs->cwd;
412 log << '/' << hc->expnfilename << '\n';
413 poorman_log(log.String(), true, &hc->client_addr);
431 log.SetTo("Error sending file: ");
433 log << hc->hs->cwd;
436 log << '/' << hc->expnfilename << '\n';
437 poorman_log(log
[all...]
/haiku/src/libs/print/libprint/
H A DJSDSlider.cpp40 gamma = exp((Value() * log(2.0) * 0.01) );
/haiku/src/tests/kits/opengl/glsl/
H A Dshaderutil.c64 GLchar log[1000]; local
66 glGetShaderInfoLog(shader, 1000, &len, log);
67 fprintf(stderr, "Error: problem compiling shader: %s\n", log);
139 GLchar log[1000]; local
141 glGetProgramInfoLog(program, 1000, &len, log);
142 fprintf(stderr, "Shader link error:\n%s\n", log);
159 GLchar log[1000]; local
161 glGetProgramInfoLog(program, 1000, &len, log);
162 fprintf(stderr, "Program validation error:\n%s\n", log);
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Ds_catanh.c71 __real__ res = 0.25 * (log (num) - log (den));
H A Ds_catan.c80 __imag__ res = 0.25 * log (num / den);
/haiku/src/libs/mapm/
H A Dmapmgues.c25 * 'guesses' for the sqrt, cbrt, log, arcsin, and arccos functions.
50 * induce error of 10 ^ -5 in log guess for known starting
54 * simplify log guess since caller guarantee's limited input magnitude
104 * for cbrt, log, asin, and acos we induce an error of 10 ^ -5.
119 dd = log(dd) / 3.0; /* cbrt algorithm actually finds 1/cbrt */
130 m_apm_set_double(r, (1.00001 * log(dd))); /* induce error of 10 ^ -5 */

Completed in 88 milliseconds

123