search for: 32767

Displaying 20 results from an estimated 502 matches for "32767".

Did you mean: 32768
2007 Mar 01
1
Strange behavior scale and switcher plugin after update
...dded one of the options "window_match" in scale and switcher plugins; these do not show some windows like gmplayer or amsn's windows This is the output of xprop $ xprop _NET_WINDOW_DECOR(INTEGER) = 20061011, 46149375, 4, 4, 27, 4, 4, 4, 27, 4, 9, 0, 36965, -11, -34, -68, 0, 582, 32767, 0, 0, 32869, 571, -34, -68, 0, 32767, 32767, 582, 0, 37222, -68, -34, 13, 0, 81, 32767, 664, 0, 26773, -11, 0, 0, -239, 32767, 240, 1, 36, 18581, -11, 240, 0, -239, 32767, 32767, 241, 36, 27289, -11, -239, 0, 0, 32767, 239, 481, 36, 26790, 0, 0, 13, -239, 32767, 240, 1, 49, 18598, 0, 240, 13,...
2020 Feb 15
2
Have the debugger show an away with a dynamic size?
...; ++i) 5 MyArray[i] = s; 6 return 0; -> 7 } 8 9 int main(){ 10 foo(5); (lldb) frame variable (int) s = 5 (unsigned long) __vla_expr0 = 5 (int) i = 5 (int [81]) MyArray = { [0] = 5 [1] = 5 [2] = 5 [3] = 5 [4] = 5 [5] = 0 [6] = -136481184 [7] = 32767 [8] = -8408 [9] = 32767 [10] = -8544 [11] = 32767 [12] = 1 [13] = 5 [14] = 5 [15] = 0 [16] = -8512 [17] = 32767 [18] = 0 [19] = 5 [20] = -8432 [21] = 32767 [22] = 4195641 [23] = 0 [24] = -8208 [25] = 32767 [26] = 0 [27] = 0 [28] = 4195664 [29] = 0 [30]...
2006 Aug 29
0
Daily Xen-HVM Build Testing: cs11278
...FAIL: 10 XPASS: 0 XFAIL: 3 Details: FAIL: 16_create_smallmem_neg Starting a console with 16 MB passed, expected test to fail XFAIL: 02_network_local_ping_pos ping loopback failed for size 65507. ping eth0 failed for size 1 48 64 512 1440 1500 1505 4096 4192 32767 65507. FAIL: 03_network_local_tcp_pos TCP hping2 over eth0 failed for size 1 48 64 512 1440 1448 1500 1505 4096 4192 32767 65495. FAIL: 04_network_local_udp_pos UDP hping2 over eth0 failed for size 1 48 64 512 1440 1448 1500 1505 4096 4192 32767 65495. XFAIL: 05_netwo...
2006 Aug 03
1
Daily Xen-HVM Build Testing: cs10910
...urrent_pos [15] Failed to create domain FAIL: 16_create_smallmem_neg Starting a console with 16 MB passed, expected test to fail XFAIL: 02_network_local_ping_pos ping loopback failed for size 65507. ping eth0 failed for size 1 48 64 512 1440 1500 1505 4096 4192 32767 65507. FAIL: 03_network_local_tcp_pos TCP hping2 over eth0 failed for size 1 48 64 512 1440 1448 1500 1505 4096 4192 32767 65495. FAIL: 04_network_local_udp_pos UDP hping2 over eth0 failed for size 1 48 64 512 1440 1448 1500 1505 4096 4192 32767 65495. XFAIL: 05_netwo...
2011 Sep 26
0
[LLVMdev] [LLVMDev] The ComputeHash algorithm in FoldingSet is unsafe
...into the ComputeHash() function of FoldingSet. It computes the SAME hash value for these two 32-bit unsigned integer sequences: size: 17 4144534024, 32767, 4146895704, 32767, 4027803688, 32767, 4026983736, 32767, 4147202696, 32767, 4026587256, 32767, 0, 4026589472, 32767, 0, 0, size: 16 4...
2011 Sep 26
0
[LLVMdev] The ComputeHash algorithm in FoldingSet isunsafe
...into the ComputeHash() function of FoldingSet. It computes the SAME hash value for these two 32-bit unsigned integer sequences: size: 17 4144534024, 32767, 4146895704, 32767, 4027803688, 32767, 4026983736, 32767, 4147202696, 32767, 4026587256, 32767, 0, 4026589472, 32767, 0, 0, size: 16 4...
2008 Sep 25
3
usb interface support
...0 5: 0 6: 0 Butt Axes: 0:-16891 1:-17229 2: 0 3: 0 4: 0 5: 0 6: 0 Butt Axes: 0:-16891 1:-17229 2:-20269 3: 0 4: 0 5: 0 6: 0 Butt Axes: 0:-16891 1:-17229 2:-20269 3:-32767 4: 0 5: 0 6: 0 Butt Axes: 0:-16891 1:-17229 2:-20269 3:-32767 4:-32767 5: 0 6: 0 Butt Axes: 0:-16891 1:-17229 2:-20269 3:-32767 4:-32767 5:-17229 6: 0 Butt Axes: 0:-16891 1:-17229 2:-202...
2006 Nov 21
2
One bug in the SVN and rtp wrapper issue
Hi Jean-Marc and All, Two things need your confirmation/suggestion. 1) First, I think there is a bug in libspeex/lsp.c line 512. /* hard limit ak's to +/- 32767 */ if (a < -32767) a =32767; // This line should be changed to if (a < -32767) a = -32767; if (a > 32767) a = 32767; ak[j-1] = (short)a; 2) About the RTP wrapper for VoIP I'd like to use the payload format defined in the SVN document rtp.txt as below. What I'...
2006 Nov 21
2
Re: One bug in the SVN and rtp wrapper issue
...Which rtp docment should be followed? Anyone else has written the RTP wrapper already? Lianghu On 11/22/06, Jean-Marc Valin <jean-marc.valin@usherbrooke.ca> wrote: > > > 1) First, I think there is a bug in libspeex/lsp.c line 512. > > > > /* hard limit ak's to +/- 32767 */ > > if (a < -32767) a =32767; // This line should be changed to if > > (a < -32767) a = -32767; > > if (a > 32767) a = 32767; > > ak[j-1] = (short)a; > > Oops. Thanks for pointing that out. It's fixed in svn. > > > 2) About...
2006 Nov 21
2
Re: One bug in the SVN and rtp wrapper issue
...; > On 11/22/06, *Jean-Marc Valin* <jean-marc.valin@usherbrooke.ca > > <mailto:jean-marc.valin@usherbrooke.ca>> wrote: > > > > > 1) First, I think there is a bug in libspeex/lsp.c line 512. > > > > > > /* hard limit ak's to +/- 32767 */ > > > if (a < -32767) a =32767; // This line should be changed > to if > > > (a < -32767) a = -32767; > > > if (a > 32767) a = 32767; > > > ak[j-1] = (short)a; > > > > Oops. Thanks for pointing th...
2004 Dec 28
5
Sound distorted after normalized.
> 16 bit ints have a range of -32768 to 32767. If you divide > -32768 by 32767.0 you end up with -1.00003051850948 which > is a bad thing. > > Try normalizing with a value of 32768.0. No. Speex expects values in the +-32767 range, not +-1.0. Just converting from int16 to float *is* the right thing to do. Jean-Marc -- Jean-Mar...
2009 May 19
2
Using while statements to insert rows in a dataframe
...me of my own data and have encountered a problem that I need to fix. I have a dataframe with 8 columns and approximately 850 rows. I have provided an excerpt of the dataframe below. Within column 6 (Question) the numbers 1:33 repeat down the entire column. Occasionally, however, another value (-32767) appears. I need to locate this value everytime it appears and in its place insert 33 rows that are numbered 1:33 in column Question. Additionally, I need to maintain the integrity of the other columns so that the values at that location in each column are also repeated 33 times. So, in the exam...
2020 Feb 13
3
Have the debugger show an away with a dynamic size?
Hi. I searched and the closest thing I could find was this http://lists.llvm.org/pipermail/llvm-dev/2018-February/121348.html Currently a known sized array looks and debugs as expected. I use llvm.dbg.declare with DICompositeType tag: DW_TAG_array_type and the size field. In my language arrays are always passed around with a pointer and size pair. I'd like debugging to show up as nicely
2012 Nov 13
1
problem with AuthorizedKeysCommand on OpenBSD
...he keys don't seem to be making it to the SSH server, however. Run with debugging, I get: ... debug3: mm_request_receive entering debug3: monitor_read: checking request 20 debug3: mm_answer_keyallowed entering debug3: mm_answer_keyallowed: key_from_blob: 0x81973440 debug1: temporarily_use_uid: 32767/32767 (e=0/0) debug3: Running AuthorizedKeysCommand: "/usr/local/libexec/ssh-ldap-wrapper" as "nobody" debug1: restore_uid: 0/0 debug1: temporarily_use_uid: 32767/32767 (e=0/0) debug2: key not found user_key_command_allowed2: dup2: Bad file descriptor AuthorizedKeysCommand /usr/...
2006 Nov 21
0
Re: One bug in the SVN and rtp wrapper issue
> 1) First, I think there is a bug in libspeex/lsp.c line 512. > > /* hard limit ak's to +/- 32767 */ > if (a < -32767) a =32767; // This line should be changed to if > (a < -32767) a = -32767; > if (a > 32767) a = 32767; > ak[j-1] = (short)a; Oops. Thanks for pointing that out. It's fixed in svn. > 2) About the RTP wrapper for VoIP > > I&...
2006 Nov 21
0
Re: One bug in the SVN and rtp wrapper issue
...-Marc > Lianghu > > On 11/22/06, *Jean-Marc Valin* <jean-marc.valin@usherbrooke.ca > <mailto:jean-marc.valin@usherbrooke.ca>> wrote: > > > 1) First, I think there is a bug in libspeex/lsp.c line 512. > > > > /* hard limit ak's to +/- 32767 */ > > if (a < -32767) a =32767; // This line should be changed to if > > (a < -32767) a = -32767; > > if (a > 32767) a = 32767; > > ak[j-1] = (short)a; > > Oops. Thanks for pointing that out. It's fixed in svn. &gt...
2009 Sep 22
3
R PNG graph width limitation
...g dendrogram in R on Linux server: ========= data<-read.table(file="mean_ratio.txt.noheader",row.names=1,sep="\t",quote="\"") hc<-hclust(dist(data),"ward") png(file="mean_ratio.txt.noheader.ward.png",bg="white",pointsize=8,width=32767,height=1536) plot(hc,hang=-1) dev.off() ========= I found that 32767 is the largest width I can go. I tried 32768 and the graphics becomes all black. I need to go higher since even with 32767 width is not enough for the dendrogram. What is the problem and what is the workaround? Thanks, zphna...
2006 Nov 21
0
Re: One bug in the SVN and rtp wrapper issue
...; > <mailto: jean-marc.valin@usherbrooke.ca > <mailto:jean-marc.valin@usherbrooke.ca>>> wrote: > > > > > 1) First, I think there is a bug in libspeex/lsp.c line 512. > > > > > > /* hard limit ak's to +/- 32767 */ > > > if (a < -32767) a =32767; // This line should be > changed to if > > > (a < -32767) a = -32767; > > > if (a > 32767) a = 32767; > > > ak[j-1] = (short)a; > > > >...
2012 Mar 14
4
converting unsigned short sample to signed short sample
Thanks a lot for replying, The question now is , after subtracting 32767 from each unsigned sample, will the new signed samples represent the same original voice ? ???? For explanation, assume "Hi" is said in 8000 unsigned sample ,if i subtract 32767 from each sample and play the resulting 8000 sample as signed PCM samples,will they be "Hi" ?! For...
2002 Jan 22
2
Peak value
Hi, While testing ReplayGain (so it could be related to a bug), I noticed the following gain comments for a file: RG_PEAK=1.71580 RG_RADIO=-7.91 dB RG_AUDIOPHILE=-6.72 dB I've never seen such a large peak. Not that I've looked much, nor have I analyzed the file further. I just thought I should mention it. :) The file is the track Board Burner by Mixmaster Mike, available at: