search for: 11,16

Displaying 20 results from an estimated 31 matches for "11,16".

Did you mean: 1,16
2005 Feb 27
3
music on hold trouble
...on SJPhone. I have 2 asterisk installations one from the Rapid distribution and one from the latest CVS. On the rapid dist when I press the music on hold button on my SJPhone I get music on hold. When I do the same I get no music on hold just silence. I create extension like this exten => 1111,1,MusicOnHold(Default), and when I dial it then I hear music, so music on hold works but the hold button do not. Can anyone help with this? is this a bug in CVS? here are debugs from both installs (1 working and 1 not working): ********************** WORKING ************************ Sip...
2011 Jun 29
2
[LLVMdev] hello world error
...puts(i8*) The .str is present in the argument to the puts function in %1 is present in the bitcode. But when i use llc to change the bitcode to alpha assembly, i get the following: ldah $29,0($27) !gpdisp!1 lda $29,0($29) !gpdisp!1 $main..ng: lda $30,-32($30) stq $9,24($30) stq $11,16($30) bis $26,$26,$9 * ldq $27,puts($29) * !literal lda $11,8($30) jsr $26,($27),0 The puts call is there, but register 16 which i believe is supposed to have the arguments to a function call is not set. If i manually add the line to the assembly, lda $16, $.str($29) where $.str is...
2009 Jan 30
1
problem using identify() after plot()
...kidentify2.pdf I'd be grateful if anyone could take a look at it. The text() labels are in red, and the results of pointing-and-clicking are shown in black. Notice point 4, for example: near the origin in black, but upper center in red (which is where the real data point should be: point 4 is (11,16) Any chance all the NA's are the problem? plot(V2,mean.barr, type="n") text(V2, mean.barr, label=rownames(temp), col="red") identify(rownames(temp)) # here's the gist of the data str(temp) summary(temp) rownames(temp) temp mean.barr V2 1 NA 6 2...
2011 Jun 29
0
[LLVMdev] hello world error
Hi, I found that machine dead code elimination, does not respect the calling convention of alpha and eliminates r16, which was set correctly during code generation. I verified it with -print-after-all. Does anybody have a patch for this? On Wed, Jun 29, 2011 at 11:12 AM, Ankit Sethia <asethia at eecs.umich.edu>wrote: > Hi All, > > I am using llvm-2.9 to cross compile to alpha. I know that alpha is in > experimental stage, but i can not get even the "Hello World" program to run > on it. > > Here is what happens, the...
2005 Mar 15
0
dial to h.323
...keeper@192.168.0.153'. Sip read: INVITE sip:3214567@192.168.0.203 SIP/2.0 Via: SIP/2.0/UDP 192.168.0.117;branch=z9hG4bK2038176231 From:<sip:2000@192.168.0.203>; To: <sip:3214567@192.168.0.203> Call-ID: 51@192.168.0.117 CSeq: 20 INVITE Contact: <sip:2000@192.168.0.117> Max-Forwards: 5 User-Agent:SKYPHONE/1.03 Subject: hello Expires: 120 Allow: INVITE, ACK, CANCEL, BYE, OPTIONS, REFER...
2013 Apr 09
1
failed compiling dovecot 2.1.16 under solaris
...quot;, line 200: warning: improper pointer/integer combination: arg #1 cc: acomp failed for quota-status.c I could solve this problem with *** ./src/plugins/quota/quota-status.c.orig Thu Apr 4 22:58:30 2013 --- ./src/plugins/quota/quota-status.c Tue Apr 9 16:08:12 2013 *************** *** 11,16 **** --- 11,17 ---- #include "mail-storage-service.h" #include "quota-private.h" #include "quota-plugin.h" + #include <stdlib.h> enum quota_protocol { QUOTA_PROTOCOL_UNKNOWN = 0, but I don't know if this is the correct way to fi...
2000 Jun 21
0
IRIX patches
...gt;pw_name, strerror(errno)); + #endif /* WITH_IRIX_PROJECT */ /* Permanently switch to the desired uid. */ permanently_set_uid(pw->pw_uid); *** openssh-2.1.1p1.orig/uidswap.c Sat Apr 15 21:18:49 EDT 2000 --- openssh-2.1.1p1/uidswap.c Wed Jun 21 15:14:07 EDT 2000 *************** *** 11,16 **** --- 11,19 ---- #include "ssh.h" #include "uidswap.h" + #ifdef WITH_IRIX_AUDIT + #include <sat.h> + #endif /* WITH_IRIX_AUDIT */ /* * Note: all these functions must work in all of the following cases: *************** *** 83,88 **** --- 86,99 ---- vo...
2010 Feb 16
1
Math.factor error message
...or(c(37L, 36L, 42L, 41L, 44L, 38L, 31L, 61L, 66L, 91L, : log not meaningful for factors My data is composed of one column. I would appreciate, if any one could provide me with some hints to get around the problem. Best regards, Ben -------------- next part -------------- BNS CER "11,14" "11,11" "11,25" "11,22" "11,31" "11,15" "11,00" "11,88" "11,94" "12,44" "12,90" "12,94" "12,97" "12,80" "12,78" "13,14" "13,72" &q...
2011 Nov 02
1
[PATCH] drm/nouveau: fix acpi related kbuild warnings
...| 2 +- drivers/gpu/drm/nouveau/nouveau_drv.h | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/nouveau/Kconfig b/drivers/gpu/drm/nouveau/Kconfig index ca16399..0e6c40f 100644 --- a/drivers/gpu/drm/nouveau/Kconfig +++ b/drivers/gpu/drm/nouveau/Kconfig @@ -11,11 +11,16 @@ config DRM_NOUVEAU select FRAMEBUFFER_CONSOLE if !EXPERT select FB_BACKLIGHT if DRM_NOUVEAU_BACKLIGHT select ACPI_VIDEO if ACPI && X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL && INPUT - select ACPI_WMI if ACPI - select MXM_WMI if ACPI + s...
2011 Jun 29
1
[LLVMdev] hello world error
Hi, Can people suggest how this is solved for other ISAs? This happens only for Alpha and not for x86-64. The register 16 does not have any uses within that function, but is used inside puts. So Machine DCE thinks it is dead code. On Wed, Jun 29, 2011 at 4:20 PM, Ankit Sethia <asethia at eecs.umich.edu>wrote: > Hi, > > I found that machine dead code elimination, does not respect the calling > convention of alpha and eliminates r16, which was set correctly during code > generation. I verified it with -print-after-all. > D...
2010 Jul 16
0
Mixed Conditional Logit with nested data
...0,0,1,0,0 1,5,B,0,1,0,0,0,1,0,0,1,0 1,6,A,1,1,0,0,1,0,0,0,0,1 1,6,B,0,0,0,1,0,0,1,0,1,0 1,7,A,1,1,0,0,0,0,1,1,0,0 1,7,B,0,0,1,0,0,1,0,0,0,1 1,8,A,1,0,0,1,1,0,0,0,1,0 1,8,B,0,0,1,0,0,1,0,0,0,1 1,9,A,1,0,1,0,1,0,0,1,0,0 1,9,B,0,0,0,1,0,1,0,0,1,0 1,10,A,1,1,0,0,1,0,0,0,1,0 1,10,B,0,0,0,1,0,0,1,1,0,0 1,11,A,1,0,1,0,0,1,0,1,0,0 1,11,B,0,0,0,1,1,0,0,0,0,1 1,12,A,1,1,0,0,0,1,0,1,0,0 1,12,B,0,0,1,0,0,0,1,0,1,0 1,13,A,0,0,0,1,0,0,1,0,1,0 1,13,B,1,1,0,0,0,1,0,0,0,1 1,14,A,0,0,0,1,0,0,1,0,0,1 1,14,B,1,0,1,0,1,0,0,1,0,0 1,15,A,1,1,0,0,1,0,0,0,1,0 1,15,B,0,0,0,1,0,1,0,0,0,1 1,16,A,1,1,0,0,0,0,1,1,0,0 1,16,B,...
2004 Apr 22
0
Çaêàç 6uëåòîâ...
...u c???????o ???u???? ??u???u, ??????? ?? ga?y? ?u c???, ?u e?y ?a????y??. ??????o ???p? ??u?e?c???e?c?! ?o???o? ?ea?p ?c?o??a? ??e?a: ???ge??? ?.????y? 1 ?a????? ?e????a ?.?.???c???-?op?a?o? 2,4 ??ap?a? ?.Xa????p?? 3,8 ?o? ??xo? ?.????yc 6 ??????? ???a ?.? ?a???????? 7,9 ?a?e?? ??.??????u?a 10,11 E?????? ?????? ?.? ????o???u? 11 ? ?ep?????? ??y???u? ?ea???????? ??e??u "3??o?a? ??c??" 12 O????? ????? C.C. ????????? 24,25,29,30 ?a??-?????p? "?e??a ?e ?a ????" 27 ??e??? "???ya ?e ?? ???c" 28 ???a? c????: ???eo u ??y??e??? ?.?. ??o?o???? 2,4,27,29,30 ?o???ge?u...
2007 Jun 15
0
Branch 'as' - 4 commits - libswfdec/swfdec_movie.c libswfdec/swfdec_player.c libswfdec/swfdec_sprite.c test/trace
...onstruct_queue, movie); + swfdec_player_remove_all_actions (player, movie); if (klass->finish_movie) klass->finish_movie (movie); player->movies = g_list_remove (player->movies, movie); diff-tree d8b550fa5c0a47912941ab3e3bb0358fa3c481e9 (from 7126839b418cf8980ab2c67401e99010d11c496c) Author: Benjamin Otte <otte at gnome.org> Date: Thu Jun 14 16:06:25 2007 +0200 implement FSCommand:quit so tests can decide to quit whenever they like diff --git a/test/trace/trace.c b/test/trace/trace.c index 55f8e98..50bb5c6 100644 --- a/test/trace/trace.c +++ b/test/trace/tra...
2005 Mar 02
1
Dial application invoked again and again
...or what Kamran Ahmad ------------------------------------------------------ *CLI> sip debug SIP Debugging Enabled *CLI> Sip read: INVITE sip:2000@192.168.0.203 SIP/2.0 Via: SIP/2.0/UDP 192.168.0.117;branch=z9hG4bK2038176231 From:<sip:3000@192.168.0.203>; To: <sip:2000@192.168.0.203> Call-ID: 52@192.168.0.117 CSeq: 20 INVITE Contact: <sip:3000@192.168.0.117> Max-Forwards: 5 User-Agent:SKYPHONE/1.03 Subject: hello Expires: 120 Allow: INVITE, ACK, CANCEL, BYE, OPTIONS, REFER,SU...
2016 Jan 13
6
[PATCH v3 0/4] x86: faster mb()+documentation tweaks
...ependencies Michael S. Tsirkin (4): x86: add cc clobber for addl x86: drop a comment left over from X86_OOSTORE x86: tweak the comment about use of wmb for IO x86: drop mfence in favor of lock+addl arch/x86/include/asm/barrier.h | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) -- MST
2016 Jan 13
6
[PATCH v3 0/4] x86: faster mb()+documentation tweaks
...ependencies Michael S. Tsirkin (4): x86: add cc clobber for addl x86: drop a comment left over from X86_OOSTORE x86: tweak the comment about use of wmb for IO x86: drop mfence in favor of lock+addl arch/x86/include/asm/barrier.h | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) -- MST
2006 Nov 21
0
[744] trunk/wxruby2: get_data support & mem mgmt to all ControlWithItems types, using more
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding...
2005 Mar 16
0
chan_oh323.c:2501 ast_oh323_new: Internal channel initialization failed. Bad binary?
...v=0 o=sibtay 2890844 842807 IN IP4 192.168.0.153 s=SDP Seminar c=IN IP4 192.168.0.153 t=0 0 m=audio 13064 RTP/AVP 0 101 a=rtpmap:101 PCMU/8000 a=rtpmap:101 telephone-event/8000 a=fmtp:96 0-11,16 15 headers, 11 lines Using latest request as basis request Sending to 192.168.0.153 : 5060 (non-NAT)...
2007 Apr 18
2
[PATCH] x86_64 paravirt_ops port
...up.c @@ -356,7 +356,7 @@ void __init setup_arch(char **cmdline_p) rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0); rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0); #endif - setup_memory_region(); + memory_setup(); copy_edd(); if (!MOUNT_ROOT_RDONLY) @@ -561,6 +561,11 @@ static int __cpuinit get_model_name(stru return 1; } +/* Overridden in paravirt.c if CONFIG_PARAVIRT */ +void __attribute__((weak)) memory_setup(void) +{ + return setup_memory_region(); +} static void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c) { Index: linux-2.6.19-quilt/a...
2007 Apr 18
2
[PATCH] x86_64 paravirt_ops port
...up.c @@ -356,7 +356,7 @@ void __init setup_arch(char **cmdline_p) rd_prompt = ((RAMDISK_FLAGS & RAMDISK_PROMPT_FLAG) != 0); rd_doload = ((RAMDISK_FLAGS & RAMDISK_LOAD_FLAG) != 0); #endif - setup_memory_region(); + memory_setup(); copy_edd(); if (!MOUNT_ROOT_RDONLY) @@ -561,6 +561,11 @@ static int __cpuinit get_model_name(stru return 1; } +/* Overridden in paravirt.c if CONFIG_PARAVIRT */ +void __attribute__((weak)) memory_setup(void) +{ + return setup_memory_region(); +} static void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c) { Index: linux-2.6.19-quilt/a...