search for: xx10

Displaying 4 results from an estimated 4 matches for "xx10".

Did you mean: 0x10
2008 Aug 26
1
more dot plots on 1 page
...species.vector<-c("Lp","Pp","Pl","Ra","Lc","Ml") for(i in 1:6){ XXXX<- inputdot[inputdot$sp_==species.vector[i],] str(XXXX) XX7<-subset(XXXX,chamber==7) XX8<-subset(XXXX,chamber==8) XX9<-subset(XXXX,chamber==9) XX10<-subset(XXXX,chamber==10) species.vector[i] <- dotplot(XX7$BG_dry~XX7$stress,ylim=c(0,20),ylab="biomass",scales=list(ti ck.number=10), panel = function (x, y) { panel.abline(v=c(1:8),lty=2,col="gray") panel.xyplot(x, y, pch = 1, col = "blue", cex = .75)...
2006 Jun 28
1
Help with incoming SIP routing
Hello - I currently have 10 DID's coming into one Asterisk server, I seem to be having some difficulty routing based on the DID dialed and am hoping someone on the list can assist me. Here's the relevant info: Ingress SIP trunk: IP: 123.45.45.3456 DID's XXX-XXX-XX00-XX10 sip.conf: [general] useragent=Asterisk port=5060 context=default tos=lowdelay disallow=all allow=ulaw allow=alaw allow=gsm rtptimeout=300 rtpholdtimeout=600 // // My thought in this context is I will grab any incoming SIP call from the IP address of my SIP trunk and pass it to my sip-defaul-in c...
2009 Oct 05
1
gsub - replace multiple occurences with different strings
Hi, I search a way to replace multiple occurrences of a string with different strings depending on the place where it occurs. I tried the following; x <- c("xx y e d xx e t f xx e f xx") x <- gsub("xx", c("x1", "x2", "x3", "x4"), x) what I want to get is; x = x1 y y e d x2 e t f x3 e f x4 but what I get is; x = x1 y y e
2020 Feb 09
2
[RFC PATCH] Add SHA1 support
...body below... + */ +# define X(i) XX##i + +static void HASH_BLOCK_DATA_ORDER(SHA_CTX *c, const void *p, size_t num) +{ + const unsigned char *data = p; + register unsigned MD32_REG_T A, B, C, D, E, T, l; + unsigned MD32_REG_T XX0, XX1, XX2, XX3, XX4, XX5, XX6, XX7, + XX8, XX9, XX10, XX11, XX12, XX13, XX14, XX15; + + A = c->h0; + B = c->h1; + C = c->h2; + D = c->h3; + E = c->h4; + + for (;;) { + const union { + long one; + char little; + } is_endian = { + 1 + }; + + if (!is_endian.lit...