search for: cnd

Displaying 20 results from an estimated 48 matches for "cnd".

Did you mean: and
2004 Apr 14
1
CND (CID) woe on a TDM400P
G'day list, It appears I got ahead of myself in believing I'd solved my CND (caller id) problem. My callerid.c change got it working on one of the handsets I have, but not the other. (Recap: The AU CND standard has an increased delay between the end of the ring signal and the start of the CND FSK data -- it's 500ms in US GR-30-CORE, and around 700ms in AU DC.002/TS03...
2005 Aug 04
1
Where the error message comes from?
...i = c(1:k,1:k), n =rep(m,2*k), mc=c(mc1,mc2),me=c(me1,me2)) mmc1 <- mean(d[1:k,4]) mmc2 <- mean(d[(k+1):(2*k),4]) mme1 <- mean(d[1:k,5]) mme2 <- mean(d[(k+1):(2*k),5]) cnn <- (vc1m+vc2m)/(mmc1-mmc2)^2 cdd <- (ve1m+ve2m)/(mme1-mme2)^2 cnd <- (r1*(vc1m*ve1m)^0.5+r2*(vc2m*ve2m)^0.5)/((mmc1-mmc2)*(mme1-mme2)) R <- (mmc1-mmc2)/(mme1-mme2) seR <- R*(cnn+cdd-2*cnd)^0.5 f1 <- R*((1-3.8416*cnd)-1.96*((cnn+cdd-2*cnd)-3.8416*(cnn*cdd-cnd^2))^0.5)/(1- 3.8416*cdd) f2 <- R*((1-3.8416*cnd)+1.96*((cnn+cdd-2*cnd)-3.8416*(c...
2003 Jul 21
1
Setting name attributes to a vector - join?
I have a vector of land cover class data from a GIS: > landcov[1:10,2] #the first ten examples of a large (100k+) object 1 2 3 4 5 6 7 8 9 10 12 12 01 12 01 15 15 15 15 15 etc. I also have a lookup table for the class data that gives the cover type as a string: > cnd.names #the look up table, i.e., landcov[3,2] == 1 == "Montane Meadow" CndVal Cnddbname 1 1 Montane Meadow 2 2 Sierran Mixed Coniferous Forest 3 3...
2013 Feb 19
2
Call Pickup how to display CND of incoming number
Is it possible to display the incoming calling number on a handset when trying to pick up a call from another handset? I currently have Call Pickup working using *8, I have also used the PickUp application successfully but I'm not sure how to use these features so the handsets show the incoming calling number and not the number that you have dialled to pick up the call. Regards David
2015 Jan 29
2
[LLVMdev] RFC: Proposal for Poison Semantics
...roduce any output for this program (or none, or wipe your hard drive) and it would be "correct". To show a problem, you'd need to show a *well defined* program which becomes undefined through a series of transformations. In your example, you might try the input program: br i1 %cnd, label %skip, label %exec exec: %x1 = add nuw i32 %m, %n br label %skip skip: %x = phi (x1, 0) %y = zext i32 %x to i64 %s = lshr i64 %y, 32 %addr = gep %some_global, %s store i32 42, i32* %addr But when the add is speculated, this becomes: %x1 = add nuw i32 %m, %n %x = select...
2006 Aug 08
1
GSM back door to shell with Centos and Palm handhelds
...0 tss: set speed to 460800 (10004) 08/08 20:58:29 CM0 tio_set_flow_control( HARD ) 08/08 20:58:29 CM0 waiting for line to clear (VTIME=1), read: 08/08 20:58:30 CM0 send: \dATQ0V1H0[0d] 08/08 20:58:30 CM0 waiting for ``OK'' 08/08 20:58:30 CM0 got: ATQ0V1H0[0d] 08/08 20:58:30 CM0 CND: ATQ0V1H0[0d][0a]OK ** found ** 08/08 20:58:30 CM0 send: ATS0=0Q0&D3&C1[0d] 08/08 20:58:30 CM0 waiting for ``OK'' 08/08 20:58:30 CM0 got: [0d] 08/08 20:58:30 CM0 CND: OK[0a]ATS0=0Q0&D3&C1[0d] 08/08 20:58:30 CM0 CND: ATS0=0Q0&D3&C1[0d][0a]OK ** found ** 08/0...
2015 Jan 29
0
[LLVMdev] RFC: Proposal for Poison Semantics
...arithmetic by repeating an argument David made in the first email on this thread. That particular example is not a counterexample to the RFC. The RFC has issues with icmps, sexts and zexts; but they're distinct from the hoisting problem. > %x1 = add nuw i32 %m, %n > %x = select i1 %cnd x1, 0 > %y = zext i32 %x to i64 > %s = lshr i64 %y, 32 > %addr = gep %some_global, %s > store i32 42, i32* %addr > > This is well defined as per the spec David sent out. %x is not poison. %x1 > is, but that's fine. AFAICT, going by the RFC, %x is poison iff %x1 is po...
2009 Mar 22
2
[LLVMdev] Implementing select_cc without cmov
Hi All, I need to implement select_cc as a "cmp; mov rX,1; brcond cnd, END; mov rX,0; END:" sequence. Chris mentioned that the PPC code (as well as the x86 SSE code) does this, but I can't seem to find it. What I really need to kmow is how to insert the branch/label pair at instruction selection phase. Anyone have an example of this?
2007 Feb 19
6
Open CallerID Database?
Hey Guys, I'm curious if there's an interest in a free, CallerID database? For those of you in the same spot we are, our current provider only provides us with the CND, excluding CNAM. Would creating a public database, managed by users be worthwhile to anyone? Thanks - Any input is greatly appreciated. -- Robert Norton SophMedia LLC Operations Manager Cell: 480-234-4312 Office: 480-626-5449 (x300) P.O. Box 7755 Tempe, AZ 85281 http://www.XStreamHost.com -...
2015 Jan 29
1
[LLVMdev] RFC: Proposal for Poison Semantics
...ng of what the C++ spec says onto LLVM IR. Can you clarify what you mean? > > The RFC has issues with icmps, sexts and zexts; but they're distinct > from the hoisting problem. Can you enumerate? Or give an example? > >> %x1 = add nuw i32 %m, %n >> %x = select i1 %cnd x1, 0 >> %y = zext i32 %x to i64 >> %s = lshr i64 %y, 32 >> %addr = gep %some_global, %s >> store i32 42, i32* %addr >> >> This is well defined as per the spec David sent out. %x is not poison. %x1 >> is, but that's fine. > AFAICT, going by...
2009 Mar 22
0
[LLVMdev] Implementing select_cc without cmov
someguy wrote: > Hi All, > > I need to implement select_cc as a "cmp; mov rX,1; brcond cnd, END; > mov rX,0; END:" sequence. > > Chris mentioned that the PPC code (as well as the x86 SSE code) does > this, but I can't seem to find it. > > What I really need to kmow is how to insert the branch/label pair at > instruction selection phase. > > Anyone have...
2007 Jan 06
2
negative binomial family glm R and STATA
Dear Lister, I am facing a strange problem fitting a GLM of the negative binomial family. Actually, I tried to estimate theta (the scale parameter) through glm.nb from MASS and could get convergence only relaxing the convergence tolerance to 1e-3. With warning messages: glm1<-glm.nb(nbcas~.,data=zonesdb4,control=glm.control(epsilon = 1e-3)) There were 25 warnings (use warnings() to see
2009 Jul 11
0
[LLVMdev] ANTLR?
On Jul 11, 2009, at 12:40 PM, Vikram S. Adve wrote: > We are looking for an open source C++ parser other than g++ if > possible. Clang would be great but its C++ support is still some > way away and we need something that works or nearly works now. Does > anyone have any experience with ANTLR for parsing C++ and for > extending their C++ parser? Any other feedback on
1996 Nov 22
0
LSF Update#14: Vulnerability of the lpr program.
...db9d3bbd6527b lpr-0.12-1.axp.rpm c04359e61cd16108ce5793aa388f206f lpr-0.12-1.sparc.rpm Caldera Network Desktop Caldera Network Desktop version 1.0 contains a vulnerable lpr program. The replacement RPMS are available from the following URLs: ftp://ftp.caldera.com/pub/cnd-1.0/updates/NetKit-B-lpr-0.06-4c2.i386.rpm ftp://bach.cis.temple.edu/pub/Linux/Security/DISTRIBUTION-FIXES/CND/NetKit-B-lpr-0.06-4c2.i386.rpm WARNING: We are unable to provide the MD5 fingerprint for the replacement kit from Caldea as it was not provided to us. Debian Debian/GNU Li...
2007 Feb 23
2
Extracting a subset from a dataframe
Good day everyone, Can anyone suggest an effective method to solve the following problem: I have 2 dataframes D1 and D2 as follows: D1: dates ws wc pwc 2005-10-19:12:00 10.8 80 81 2005-10-20:12:00 12.3 5 15 2005-10-21:15:00 12.3 3 15 2005-10-22:15:00 11.3 13 95 2005-10-23:12:00 12.3 13 2 2005-10-24:15:00 10.3 2 95 2005-10-25:15:00 10.3 2 2 D2:
2004 May 25
4
79XX converting
...lt;-Ringer1.pcm Ringer1.pcm The phone (7940) is hardcoded to the TFTP ip of the laptop and has a hardcoded ip is was on firmware version: P00305000400 Boot load ID:PC0303010001 Version 5.0(4.0) When the phone boots it downloads OS79XX just fine then it trys to download SEP<mac address>.cnd.xml which is not there. So I changed SIP<mac> to read SEP<mac> ok it now loads the SEP<mac> file and stops and reload everything over and over. I never had a upgrade of the phone load nor any errors it just stuck in a loop. This is on a closed net with no Sip server but I did al...
2015 Jan 28
3
[LLVMdev] RFC: Proposal for Poison Semantics
On Tue, Jan 27, 2015 at 8:58 PM, Sanjoy Das <sanjoy at playingwithpointers.com> wrote: > > Ah, yes. You are right, we cannot always assume that %y would be zero in > > the second case. > > This wouldn't be the first time we've lost information that we could use > to > > optimize a program by transforming it. > > > > Do you think this result
2013 Jun 28
0
Wine release 1.6-rc4
...erity). msvf32: Fixed incorrect sizeof (Coverity). ole32: LeaveCriticalSection in one exit case (Coverity). ole32: Fixed bad sizeof()s in composite moniker (Coverity). winmm: Fix incorrect parameter for test debug (Coverity). Matteo Bruni (2): wined3d: Fix handling of cnd instruction with coissue flag. d3d9/tests: Improve cnd instruction test. Michael Stefaniuc (1): po: Update the Romanian translation. Mykola Zadorozhnyy (1): po: Update Ukrainian translation. Petr Ko?andrle (1): po: Fix some Czech spelling errors. Piotr Caban (1): m...
2004 Aug 24
3
Bell Canada Caller-ID
...Identafone <http://www.ainslie.org.uk/callerid/cli_soft.htm#Identafone> is one, but most Canadian authors seem to have found out about this the hard way ;-). The relevant document was called Stentor document ID-0001 "CALL MANAGEMENT SERVICE (CMS) CALLING NUMBER DELIVERY (CND) (Single and Multiple Message Format) Terminal-to-Network Interface". Following the upheavals in the Canadian telecom market it is now Bell Interface Document <http://www.bell.cdn-telco.com/bid/> BID-0001 and will cost you CAN$50 to download. Incidentally, Stentor'...
2019 Feb 25
3
getelementptr inbounds with offset 0
Hi Bruce, On 25.02.19 13:10, Bruce Hoult wrote: > LLVM has no idea whether the address computed by GEP is actually > within a legal object. The "inbounds" keyword is just you, the > programmer, promising LLVM that you know it's ok and that you don't > care what happens if it is actually out of bounds. > >