search for: omag

Displaying 7 results from an estimated 7 matches for "omag".

Did you mean: imag
2017 Oct 09
4
Understanding of ldd header allocation
...Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align LOAD 0x001000 0x80000000 0x80000000 0x08284 0x08284 RWE 0x1000 Section to Segment mapping: Segment Sections... 00 .text .rodata .eh_frame .data However, what ldd does is different. (To create a single segment I use --omagic argument, it works fine and is unrelated). The first segment is created at a lower address, with ELF headers in it, and then the actual text section exactly at 0x80000000: Elf file type is EXEC (Executable file) Entry point 0x80002670 There are 3 program headers, starting at offset 52 Program...
2008 May 03
2
Resampler (no api)
..._ALLOC; + spx_word16_t ystack[FIXED_STACK_ALLOC]; +#endif + + st->out_stride = 1; + + while (ilen && olen) { + spx_word16_t *y = ystack; + spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen; + spx_uint32_t ochunk = (olen > ylen) ? ylen : olen; + spx_uint32_t omagic = 0; + + if (st->magic_samples[channel_index]) { + omagic = speex_resampler_magic(st, channel_index, &y, ochunk); + ochunk -= omagic; + olen -= omagic; + } + if (! st->magic_samples[channel_index]) { + if (in) { + for(j=0;j<ichunk;++j) +#if...
2010 Jun 21
1
Interpreting lm Residuals...
...it and the residuals to one of my sub-groups, for illustration. By eye, the overwhelming majority of the residuals are within +- 0.4, and I would therefore expect the standard error of the residuals to be ~0.2. However, the output from lm does not show this: >summary(ofit) Call: lm(formula = omag ~ oper, weights = (1/oerr)) Residuals: Min 1Q Median 3Q Max -3.32185 -0.41181 0.03983 0.40041 2.52971 Coefficients: Estimate Std. Error t value Pr(>|t|) (Intercept) 19.52847 0.03979 490.8 <2e-16 *** oper -4.25297 0.02101 -202.4...
2008 May 03
0
Resampler, memory only variant
..._ALLOC; + spx_word16_t ystack[FIXED_STACK_ALLOC]; +#endif + + st->out_stride = 1; + + while (ilen && olen) { + spx_word16_t *y = ystack; + spx_uint32_t ichunk = (ilen > xlen) ? xlen : ilen; + spx_uint32_t ochunk = (olen > ylen) ? ylen : olen; + spx_uint32_t omagic = 0; + + if (st->magic_samples[channel_index]) { + omagic = speex_resampler_magic(st, channel_index, &y, ochunk); + ochunk -= omagic; + olen -= omagic; + } + if (! st->magic_samples[channel_index]) { + if (in) { + for(j=0;j<ichunk;++j) +#if...
2016 Mar 07
2
Linking the FreeBSD base system with lld -- status update
...7 libc_nonshared.a libssp_nonshared.a )". ld.bfd includes a built-in /lib search path and finds /lib/libc.so.7 there. lld relies only on the -L paths specified on the command line, and cannot locate libc.so.7. As a workaround I've changed /usr/lib/libc.so to include the full path. 4. -N/--omagic option -N makes the text and data sections RW and does not page-align data. It is used by boot loader components. 5. -dc option -dc assigns space to common symbols when producing relocatable output (-r). It is used by the /rescue build, which is a single binary assembled from a collection of i...
2019 Jun 14
0
resample of libopusenc-0.2.1 outputs all zeros if define FIXED_POINT
...ide_save]); + /* [-1.0, 1.0] ==> [-32768, 32767] */ + x[j+st->filt_len-1]=WORD2INT(32768 * in[j*istride_save]); #else x[j+st->filt_len-1]=in[j*istride_save]; #endif @@ -1017,7 +1018,8 @@ EXPORT int speex_resampler_process_int(S for (j=0;j<ochunk+omagic;++j) #ifdef FIXED_POINT - out[j*ostride_save] = ystack[j]; + /* [-32768, 32767] ==> [-1.0, 1.0] */ + out[j*ostride_save] = ystack[j] / 32768.f; #else out[j*ostride_save] = WORD2INT(ystack[j]); #endif
2019 Mar 11
2
Compiling for baremetal ARMv4 on Ubuntu Linux
Hello Christian, I reran my script with a similar cmake command to yours. After the build finished the following command from the build directory gave me: find . -name \*builtins.a ./lib/clang/9.0.0/armv6m-none-eabi/lib/libclang_rt.builtins.a ./lib/clang/9.0.0/armv7m-none-eabi/lib/libclang_rt.builtins.a ./lib/clang/9.0.0/armv7em-none-eabi/lib/libclang_rt.builtins.a I hope you see something like