search for: yy

Displaying 20 results from an estimated 1046 matches for "yy".

Did you mean: yyy
2015 May 15
2
unreachable peer
Hey all, I have a public peer system (yy.yy.yy.yy) that is reachable via my home uplink (xx.xx.xx.xxx). 15:59:30.244199 IP xx.xx.xx.xxx.42958 > yy.yy.yy.yy.https: tcp 0 15:59:30.281931 IP yy.yy.yy.yy.https > xx.xx.xx.xxx.42958: tcp 0 15:59:30.281945 IP xx.xx.xx.xxx.42958 > yy.yy.yy.yy.https: tcp 0 15:59:30.305020 IP xx.xx.xx.xx...
2015 May 16
3
unreachable peer
Am 15.05.2015 um 18:17 schrieb Gordon Messmer <gordon.messmer at gmail.com>: > On 05/15/2015 09:02 AM, Leon Fauster wrote: >> >> I have a public peer system (yy.yy.yy.yy) that is reachable >> via my home uplink (xx.xx.xx.xxx). >> >> 15:59:30.244199 IP xx.xx.xx.xxx.42958 > yy.yy.yy.yy.https: tcp 0 >> 15:59:30.281931 IP yy.yy.yy.yy.https > xx.xx.xx.xxx.42958: tcp 0 >> 15:59:30.281945 IP xx.xx.xx.xxx.42958 > yy.yy.yy.y...
2015 May 15
0
[RFC V3 5/8] aarch64: celt_pitch_xcorr: Fixed point intrinsics
.../ + +/* + * Function: xcorr_kernel_neon_fixed + * --------------------------------- + * Computes 8 correlation values and stores them in sum[8] + */ +static void xcorr_kernel_neon_fixed(const int16_t *x, const int16_t *y, + int32_t sum[4], int len) { + int16x8_t YY[3]; + int16x4_t YEXT[3]; + int16x8_t XX[2]; + int16x4_t XX_2, YY_2; + int32x4_t SUMM; + const int16_t *xi = x; + const int16_t *yi = y; + + celt_assert(len>4); + + YY[0] = vld1q_s16(yi); + YY_2 = vget_low_s16(YY[0]); + + SUMM = vdupq_n_s32(0); + + /* Consume 16 elements in...
2015 May 08
0
[[RFC PATCH v2]: Ne10 fft fixed and previous 5/8] aarch64: celt_pitch_xcorr: Fixed point intrinsics
.../ + +/* + * Function: xcorr_kernel_neon_fixed + * --------------------------------- + * Computes 8 correlation values and stores them in sum[8] + */ +static void xcorr_kernel_neon_fixed(const int16_t *x, const int16_t *y, + int32_t sum[4], int len) { + int16x8_t YY[3]; + int16x4_t YEXT[3]; + int16x8_t XX[2]; + int16x4_t XX_2, YY_2; + int32x4_t SUMM; + const int16_t *xi = x; + const int16_t *yi = y; + + celt_assert(len>4); + + YY[0] = vld1q_s16(yi); + YY_2 = vget_low_s16(YY[0]); + + SUMM = vdupq_n_s32(0); + + /* Consume 16 elements in...
2006 Dec 24
1
RE: Question regarding Split Access description (Adam Neat)
...eway detection xx.xx.xx.x1/32--->SHDSL#1 (wan0)/ xx.xx.xx.x2/32 server(s) ------> Switch -------> (lan0) Linux Router -- ex. LAMP Server ip 192.168.1.1/28 (wan1)\ ip 192.168.1.2/28 yy.yy.yy.y1/32--->SHDSL#2 gw 192.168.1.1 yy.yy.yy.y2/32 ip rule add prio 10 table main ip rule add prio 20 from xx.xx.xx.x1/32 table 20 ip route append default via xx.xx.xx.x2 dev wan0 src xx.xx.xx.x1 table 20 ip rule add prio 30 from yy.yy.yy.y1/32 table 30 ip route app...
2015 Dec 23
4
Network configuration issue with second public ip on CentOS 6
...AdministrationIpAliasHinzufuegen After executing the required steps I'm not able to reach the host via the second ip from an external host. I tried it with ping and with ssh commands. Here the content of the config files (I anonymized the server ip with xx.xx.xx.xx and the failover ip with yy.yy.yy.yy): $ cat /etc/sysconfig/network NETWORKING=yes HOSTNAME=<name-of-my-host> NOZEROCONF=true GATEWAY=xx.xx.xx.254 $ cat /etc/sysconfig/network-scripts/ifcfg-eth0 DEVICE=eth0 BOOTPROTO=static IPADDR=xx.xx.xx.xx NETMASK=255.255.255.0 ONBOOT=yes GATEWAY=xx.xx.xx.254 $ cat /etc/sysconfig/...
2014 Jan 15
2
No compatible codecs, not accepting this offer!
...iguration is: --- username=5x5x7x9x0x3 type=friend secret=CRcxn7sqwm qualify=yes port=5060 insecure=port,invite host=sip.txtxlxoxp.it fromuser=5x5x7x9x0x3 fromdomain=sip.txtxlxoxp.it disallow=all context=from-trunk allow=alaw --- A typical invite from my provider is: <--- SIP read from UDP:xx.yy.xx.yy:5060 ---> INVITE sip:5x5x7x9x0x3 at 192.168.1.168:5060 SIP/2.0 Via: SIP/2.0/UDP xx.yy.xx.yy:5060;branch=z9hG4bKt5sfh7nrvok3d5gqc3ritdv7b7 From: <sip:3x8x6x3x3x at 10.39.1.19;user=phone>;tag=SDdgce901-90915 To: "SIPLineUser SIPLineUser"<sip:5x5x7x9x0x3 at sip.txtxlxoxp.it...
2010 Dec 09
4
Sequence generation in a table
Dear R helpers I have following input f = c(257, 520, 110). I need to generate a decreasing sequence (decreasing by 100) which will give me an input (in a tabular form) like 257, 157, 57 520, 420, 320, 220, 120, 20 110, 10 I tried the following R code f = c(257, 520, 110) yy = matrix(data = NA, nrow = 3, ncol = 6) for (i in 1:3)      {      value = NULL      for (j in 1 : 6)           {           value = c(ans, seq(f[i], 1, by = -100))           }     yy[i,] = ans[i,j]     } I get following message Error in ans[i, j] : incorrect number of dimensions. Also, I unders...
2004 Nov 04
1
VPN Routing issues from local IP to Big Internet IPs
Ok ladies and gents, I give up! I just can''t find a solution to the problem. Setup: I have a linux box with 2.4.22-1.2197.nptl kernel running 2 eth and one ppp connection over one of the eth for VPN tunneling. I have 2 needs: - masq and forward internal lan hosts via the tunnel on PPP and then on to the big internet. No problem there. All works fine. - Forward ppp0 native
2004 Apr 20
2
polygon
Dear all In order to clearly mark values wich are larger than a treshold value, I would like to color the surface below the line given by plot (yy~xx). To color is only the surface between abline (treshold) and yy if they are larger than the specific limit. I guess I can use the function polygon, but I can not find any valuable solution. I'm grateful to you for an advice or an example. Mike xx <- c(1:100) yy <- rnorm(100) plot...
2014 Dec 19
2
[PATCH v1] cover: armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Hi, Optimizes celt_pitch_xcorr for ARM NEON floating point. Changes from RFCv3: - celt_neon_intr.c - removed warnings due to not having constant pointers - Put simpler loop to take care of corner cases. Unrolling using intrinsics was not really mapping well to what was done in celt_pitch_xcorr_arm.s - Makefile.am Removed explicit -O3 optimization - test_unit_mathops.c,
2009 Feb 16
0
ipsec net-to-net problem
...= xx.xx.xx.xx Host B external (see below) Host B internal = 10.10.1.10 LAN B = 10.10.1.0/24 LAN B gateway = 10.10.1.252 (F5 Big IP) Host A is CentOS5 and is a router/firewall for LAN A. Host B is RHEL4 and does not have a public IP. It is behind an F5 BigIP and the BigIP forwards all traffic for yy.yy.yy.yy to Host B. Likewise it masks Host B''s outbound traffic as yy.yy.yy.yy. I can get this tunnel to come up but seem to be having problems on the Host A side. If I run ''tcpdump |grep -i esp'' on Host A and ping a host on LAN A from a host on LAN B (whose routing ta...
2015 Dec 23
0
Network configuration issue with second public ip on CentOS 6
...en > > After executing the required steps I'm not able to reach the host via > the second ip from an external host. I tried it with ping and with ssh > commands. > > Here the content of the config files (I anonymized the server ip with > xx.xx.xx.xx and the failover ip with yy.yy.yy.yy): > > $ cat /etc/sysconfig/network > NETWORKING=yes > HOSTNAME=<name-of-my-host> > NOZEROCONF=true > GATEWAY=xx.xx.xx.254 > > $ cat /etc/sysconfig/network-scripts/ifcfg-eth0 > DEVICE=eth0 > BOOTPROTO=static > IPADDR=xx.xx.xx.xx > NETMASK=255.255.25...
2014 Dec 07
0
[RFC PATCH v2] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
..."../arch.h" + +/* + * Function: xcorr_kernel_neon_float + * --------------------------------- + * Computes 4 correlation values and stores them in sum[4] + */ +void xcorr_kernel_neon_float(const float *x, const float *y, + float sum[4], int len) { + float32x4_t YY[3]; + float32x4_t YEXT[3]; + float32x4_t XX[2]; + float32x2_t XX_2; + float32x4_t SUMM; + float *xi = x; + float *yi = y; + + celt_assert(len>0); + + YY[0] = vld1q_f32(yi); + SUMM = vdupq_n_f32(0); + + /* Consume 8 elements in x vector and 12 elements in y + * vector. Howe...
2006 May 29
1
beta8 starts but no POP3 access
...3 with ./configure make make install all looked ok and i changed my dovecot.conf to suit. start dovecot and i see it running May 29 08:18:00 Info: Dovecot v1.0.beta8 starting up POP3 to 1 account and May 29 08:18:06 Info: auth(default): client in: AUTH 1 PLAIN service=POP3 lip=xx.xx.xx.xx rip=yy.yy.yy.yy resp=<hidden> May 29 08:18:06 Info: auth(default): client out: OK 1 user=obantec_com May 29 08:18:06 Info: auth(default): master in: REQUEST 1 19528 1 May 29 08:18:06 Info: auth(default): master out: USER 1 obantec_com system_user=obantec_com uid=501 gid=10001 home=/home/domain/domai...
2014 Dec 10
0
[RFC PATCH v3] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
..../arch.h" + +/* + * Function: xcorr_kernel_neon_float + * --------------------------------- + * Computes 4 correlation values and stores them in sum[4] + */ +static void xcorr_kernel_neon_float(const float *x, const float *y, + float sum[4], int len) { + float32x4_t YY[3]; + float32x4_t YEXT[3]; + float32x4_t XX[2]; + float32x2_t XX_2; + float32x4_t SUMM; + float *xi = x; + float *yi = y; + + celt_assert(len>0); + + YY[0] = vld1q_f32(yi); + SUMM = vdupq_n_f32(0); + + /* Consume 8 elements in x vector and 12 elements in y + * vector. Howe...
2014 Dec 19
2
[PATCH v1] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
...ion: xcorr_kernel_neon_float > + * --------------------------------- > + * Computes 4 correlation values and stores them in sum[4] > + */ > +static void xcorr_kernel_neon_float(const float *x, const float *y, > + float sum[4], int len) { > + float32x4_t YY[3]; > + float32x4_t YEXT[3]; > + float32x4_t XX[2]; > + float32x2_t XX_2; > + float32x4_t SUMM; > + const float *xi = x; > + const float *yi = y; > + > + celt_assert(len>0); > + > + YY[0] = vld1q_f32(yi); > + SUMM = vdupq_n_f32(0); > + > +...
2007 Apr 27
1
add arrows to barchart with groups
...es~s|site,groups=traitement,data=donnees) What I'd like to do is for each site represent with an arrow the difference in value of variable res between normal and tardif values of variable s. I've found one way of doing it: trellis.focus("panel",1,1) xx<-trellis.panelArgs()$x yy<-trellis.panelArgs()$y panel.arrows(as.numeric(xx)[c(1,3)]-0.1,yy[c(1,3)],as.numeric(xx)[c(1,3)]-0.1,yy[c(2,4)],lwd=2,code=3) panel.text(as.numeric(xx)[c(1,3)]-0.35,c(87,87),paste(yy[c(2,4)]-yy[c(1,3)],"\nq/ha"),font=2) trellis.focus("panel",2,1) xx<-trellis.panelArgs()$x...
2014 Dec 19
0
[PATCH v1] armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
..../arch.h" + +/* + * Function: xcorr_kernel_neon_float + * --------------------------------- + * Computes 4 correlation values and stores them in sum[4] + */ +static void xcorr_kernel_neon_float(const float *x, const float *y, + float sum[4], int len) { + float32x4_t YY[3]; + float32x4_t YEXT[3]; + float32x4_t XX[2]; + float32x2_t XX_2; + float32x4_t SUMM; + const float *xi = x; + const float *yi = y; + + celt_assert(len>0); + + YY[0] = vld1q_f32(yi); + SUMM = vdupq_n_f32(0); + + /* Consume 8 elements in x vector and 12 elements in y + *...
2014 Dec 10
2
[RFC PATCH v3] cover: armv7: celt_pitch_xcorr: Introduce ARM neon intrinsics
Hi, Optimizes celt_pitch_xcorr for floating point. Changes from RFCv2: - Changes recommended by Timothy for celt_neon_intr.c everything except, left the unrolled loop still unrolled - configure.ac - use AC_LINK_IFELSE instead of AC_COMPILE_IFELSE - Moved compile flags into Makefile.am - OPUS_ARM_NEON_INR --> typo --> OPUS_ARM_NEON_INTR Viswanath Puttagunta (1): armv7: