search for: newloc

Displaying 17 results from an estimated 17 matches for "newloc".

Did you mean: newlock
2009 Jul 15
0
Fwd: DLLs
...1..2,1..num] of Double; array2=array[1..num,1..num] of longint; array3=array[1..num,1..num] of Double; array4=array[1..num] of longint; pA1=^array1; pA2=^array2; pA3=^array3; pA4=^array4; pD=^Double; procedure learning(loc1:pA1;adj1:pA2;alpha:pD); cdecl; var i1,i2,neighs:longint; sum1,sum2:double; newloc: array [1..2,1..num] of double; begin for i1:=1 to 2 do for i2:=1 to num do newloc[i1,i2]:=0; for i1:= 1 to num do begin neighs:=0; sum1:=0; sum2:=0; for i2:= 1 to num do begin if (adj1^[i1,i2]=1) then begin neighs:=neighs+1; sum1:=sum1+loc1[1,i2]; sum2:=sum2+loc1[2,i2]; en...
2009 Jun 29
4
[LLVMdev] Limitations of Alias Analysis?
...tructure", I evaluated the AA performance by using the paramenters '-basicaa -ds-aa -anders-aa'. The source code 'test.c' is listed as follow: //------------=== Source code ===------------// #include<stdlib.h> typedef struct { int x; int y; } Location; Location* getNewLocation(int x, int y) { Location* newLoc = (Location *)malloc(sizeof(Location)); newLoc->x = x; newLoc->y = y; return newLoc; } Location* getDifference(Location *a, Location *b) { Location* newLoc = (Location *)malloc(sizeof(Location)); newLoc->x = a->x - b->x; newLoc->y...
2020 Mar 28
0
[klibc:update-dash] dash: expand: Fix double-decrement in argstr
...tion(+), 1 deletion(-) diff --git a/usr/dash/expand.c b/usr/dash/expand.c index 20362cef..562a4869 100644 --- a/usr/dash/expand.c +++ b/usr/dash/expand.c @@ -285,7 +285,7 @@ start: q = stnputs(p, length, expdest); q[-1] &= end - 1; expdest = q - (flag & EXP_WORD ? end : 0); - newloc = expdest - (char *)stackblock() - end; + newloc = q - (char *)stackblock() - end; if (breakall && !inquotes && newloc > startloc) { recordregion(startloc, newloc, 0); }
2006 Nov 03
4
some simple newbie help with dialplan needed...
Hi all! I need a simple plan for the following: *answer call *wait for 4 digit extension *send call to 4-digit extension entered. I tried the following, but that doesn't work... exten => 998,1,Answer() exten => 998,2,Background(agent-newlocation) exten => 998,n,WaitExten(20) exten => 998,n,Dial(SIP/${EXTEN}@${SERADDRESS},60,tr) WaitExten obviously does not fill EXTEN with its value... Anyone any suggestions? Regards, Evert
2020 Mar 28
0
[klibc:update-dash] dash: expand: Do not reprocess data when expanding words
...c == ':' || c == '\0' || + * c == CTLENDARI || c == CTLENDVAR + */ length++; + /* c == '\0' || c == CTLENDARI || c == CTLENDVAR */ + end = !!((c - 1) & 0x80); } - if (length > 0) { + if (length > 0 && !(flag & EXP_DISCARD)) { int newloc; - expdest = stnputs(p, length, expdest); - newloc = expdest - (char *)stackblock(); + char *q; + + q = stnputs(p, length, expdest); + q[-1] &= end - 1; + expdest = q - (flag & EXP_WORD ? end : 0); + newloc = expdest - (char *)stackblock() - end; if (breakall && !i...
2009 Nov 05
0
[LLVMdev] Debug Information for LLVM 2.6 and TOT
...*InsnMD, MDNode *TheCallMD, + LLVMContext &Context) { + DILocation ILoc(InsnMD); + if (ILoc.isNull()) return InsnMD; + + DILocation CallLoc(TheCallMD); + if (CallLoc.isNull()) return InsnMD; + + DILocation OrigLocation = ILoc.getOrigLocation(); + MDNode *NewLoc = TheCallMD; + if (!OrigLocation.isNull()) + NewLoc = UpdateInlinedAtInfo(OrigLocation.getNode(), TheCallMD, Context); + + SmallVector<Value *, 4> MDVs; + MDVs.push_back(InsnMD->getElement(0)); // Line + MDVs.push_back(InsnMD->getElement(1)); // Col + MDVs.push_back(InsnMD->g...
2007 Jun 21
2
Use of ChanSpy
How can I use the Asterisk command ChanSpy If I need to spy on a call? I already added the function to the extensions.conf, and I get the beeps, but then what do I do??? I don't understand the use of this function. Best Regards -------------- next part -------------- An HTML attachment was scrubbed... URL:
2009 Nov 05
2
[LLVMdev] Debug Information for LLVM 2.6 and TOT
Devang Patel wrote: > Hi John, > > On Wed, Nov 4, 2009 at 12:04 PM, John Criswell <criswell at uiuc.edu> wrote: > >> Dear All, >> >> 1) I recall reading somewhere that a few optimizations in LLVM 2.6 strip >> away debug information when such information interferes with >> optimization. Is this correct, >> > > Yes. > >
2010 Feb 11
3
Creating a new Access database with R
...#39;ve looked at the RODBC.pdf on CRAN, searched the mailing-lists, and looked at test.R file in the package. But probably I've overlooked something. It is of course possible to keep a clean new mdb-file somewhere and then copy it to the required directory with: shell("copy EmptyDB.mdb NewLocation.mdb") But that isn't very elegant... Thanks in advance, Uri Shimron _________________________________________________________________ USB$B%a%b%jBe$o$j$K$*;H$$$/$@$5$$!#L5NA$G;H$($k(B25GB$B!#(B [[alternative HTML version deleted]]
2011 Feb 21
2
[LLVMdev] A working garbage collector - finally :)
...der' is the head of a statically // allocated object instance, in which case we need not do // anything since it will be traced as a static root. if (header.gcstate != 0) { if (header.gcstate & uint(GCFlags.RELOCATED)) != 0 { ptrAddr[0] = header.newLocation; } else { let size = header.gcstate & uint(~3); let newAddr:Address[ubyte] = toSpace.alloc(size); Memory.arrayCopy(newAddr, addr, size); header.newLocation = ptrAddr[0] = Memory.bitCast(newAddr); header.gcstate = uint(GC...
2006 Sep 21
0
Creating a new Access database with R
...I've looked at the RODBC.pdf on CRAN, searched the mailing-lists, and looked at test.R file in the package. But probably I've overlooked something. It is of course possible to keep a clean new mdb-file somewhere and then copy it to the required directory with: shell("copy EmptyDB.mdb NewLocation.mdb") But that isn't very elegant... Thanks in advance, Uri Shimron *************************************************************************** This email and any files transmitted with it are confidentia...{{dropped}}
2008 Feb 21
1
Using Really Simple History on Rails
...rom the Rails app, inserting that into the history with dhtmlHistory.add(''PageName'', xhr_response_data) and then eval that data when my listener gets called with the back and forward buttons. I can make this work manually by doing something like this: var pageListener = function(newLocation, historyData) { eval(historyData); } and then: dhtmlHistory.add(''home'', ''alert("We Are Home")''); Then hit the back and forward buttons and I get an alert box. So, how can I capture the XHR response from the rails app and whack it in there? I...
2014 Apr 11
1
VIRT SIG Meeting Minutes [11/04]
...eded. * ACTION: KB, provide changes suggested by Centos board by Friday (or Monday) * ACTION: LK, after changes are received kick off Xen Project AB board approvals === Infrastructure === ==== Wiki ==== * Wiki access : done ==== Repositories ==== Migrate Xen4CentOS git repositories to newlocation * KB stated that there is a dependency on build system * We can either wait for the new build system or use the one we have (with migrated repos). * Present system: each package is within its own named git repository. Each git repository has named branches. * Workflow: anyone can cl...
2005 Feb 24
0
Queue Questions
...01" *********************************************************> Executing AgentCallbackLogin("SIP/2204-2d5c", "") in new stack -- Playing 'agent-user' (language 'en') -- Playing 'agent-pass' (language 'en') -- Playing 'agent-newlocation' (language 'en') -- Setting global variable 'AGENTBYCALLERID_"Ron" <2204>' to '204' <************ Note Asterisk tries to send the call to the agent before the agent has a chance to hangup from logging into the system *******************>...
2006 Feb 13
1
Asterisk: Agent logs into queue, and there are calls in the queue, but calls don't go to agent
...' -- Starting simple switch on 'Zap/1-1' -- Executing AgentCallbackLogin("Zap/1-1", "||@extensions") in new stack -- Playing 'agent-user' (language 'en') -- Playing 'agent-pass' (language 'en') -- Playing 'agent-newlocation' (language 'en') -- Playing 'agent-loginok' (language 'en') == Callback Agent '224' logged in on 100@extensions -- Playing 'vm-goodbye' (language 'en') == Spawn extension (internal, #1, 1) exited non-zero on 'Zap/1-1'...
2014 Mar 07
3
[LLVMdev] [RFC] Add second "failure" AtomicOrdering to cmpxchg instruction
...alue ',' TypeAndValue ',' TypeAndValue -/// 'singlethread'? AtomicOrdering +/// 'singlethread'? AtomicOrdering AtomicOrdering int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) { Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc; bool AteExtraComma = false; - AtomicOrdering Ordering = NotAtomic; + AtomicOrdering SuccessOrdering = NotAtomic; + AtomicOrdering FailureOrdering = NotAtomic; SynchronizationScope Scope = CrossThread; bool isVolatile = false; @@ -4214,11 +4223,16 @@ int LLParser::ParseCmpXchg(Instruc...
2004 Sep 17
8
English vs American voice files
My wife's got an appropriate Southern England (Wimbledon) accent and I'm sure she would try her hand. Does anyone have a comprehensive list of the words that need to be said? Matt, do you have them if your wife's done a set for French users? Mark, if you have the kit maybe you could chop up the file? I write a utility to chop up and compress the wave file based on some of the C