search for: endp

Displaying 20 results from an estimated 136 matches for "endp".

Did you mean: end
2006 Jun 01
2
Help: lme
Good day R-Users, I have a problem accessing some values in the output from the summary of an lme fit. The structure of my data is as shown below (I have attached a copy of the full data). id trials endp Z.sas ST 1 1 -1 -1 42.42884 1 1 1 -1 48.12007 2 1 -1 -1 43.42878 2 1 1 -1 46.82817 3 1 -1 -1 45.56736 . 598 10 -1 1 49.59715 598 1...
2006 May 30
1
Query: lme output
Dear R-Users I have a problem accessing some values in the output from the summary of an lme fit. I fit the model below: ggg <- lme (ST~ -1 + as.factor(endp):Z.sas + as.factor(endp), data=dat4a, random=~-1 + as.factor(endp) + as.factor(endp):Z.sas|as.factor(trials), correlation = corSymm(form=~1|as.factor(trials)/as.factor(id)), weights=varIdent(form=~1|endp)) hh <- summary(ggg) hh Below is the following part of the output of inter...
2012 Feb 07
2
save method (create action) saves twice
...19:17:53 +0900 Processing by ScriptsController#create as JS Parameters: {"utf8"=>"✓", "authenticity_token"=>"xxx+gv5Cr9GjC0UpqfH89qgnRii4=", "script"=>{"video_id"=>"1", "startp"=>"0", "endp"=>"20", "text"=>"This is a test!"}, "commit"=>"save"} SQL (0.7ms) INSERT INTO "scripts" ("created_at", "endp", "startp", "text", "updated_at", "video_id") VALUES...
2016 Jan 07
2
Domain name search path use during PXE booting
...#39;s a compact format. + */ +static void domain_search(const void *data, int opt_len) +{ + const uint8_t *udata = (uint8_t *)data; + const uint8_t *inp = udata; /* in the buffer, does not follow pointers */ + char *outp = DomainSearch; /* current location to output chars to */ + char *endp = DomainSearch; /* end of the last completed domain string */ + const uint8_t *cpp; /* copy pointer used to follow pointers */ + int pcount; /* number of pointers visited in current point copy */ + int len; + enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP...
2006 May 15
20
[PATCH 0/3] xenoprof fixes
These patches address issues in the kernel part of xenoprof: * Ill-advised use of on_each_cpu() can lead to sleep with interrupts disabled. * Race conditions in active_domains code. * Cleanup of active_domains code. Comments welcome. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2010 Nov 19
3
File Offsets for SCP (patch)
...h = getopt(argc, argv, "dfl:prtvBCc:i:P:q1246S:o:F:A:Z:")) != -1) switch (ch) { /* User-visible flags. */ case '1': @@ -407,6 +411,16 @@ main(int argc, char **argv) setmode(0, O_BINARY); #endif break; + case 'A': + fd_offset = strtod(optarg, &endp); + if (fd_offset < 0 || *endp != '\0') + usage(); + break; + case 'Z': + fd_inset = strtod(optarg, &endp); + if (fd_inset < 0 || *endp != '\0') + usage(); + break; default: usage();...
2019 Jan 11
2
strtoi output of empty string inconsistent across platforms
...-platform inconsistency to be >> expected/documentable? > The inconsistency is certainly undesirable. The relevant > utility function in R's source (<R>/src/main/character.c) > is > static int strtoi(SEXP s, int base) { long int res; char > *endp; > /* strtol might return extreme values on error */ > errno = 0; > if(s == NA_STRING) return(NA_INTEGER); res = > strtol(CHAR(s), &endp, base); /* ASCII */ if(errno || > *endp != '\0') res = NA_INTEGER; if(res > INT_MAX || res < &g...
2007 Aug 14
3
[Bridge] Re: BUG: when using 'brctl stp'
Bridge locking for /sys/class/net/br0/bridge/stp_enabled was wrong. Another bug in bridge utilities makes it such that this interface, meant it wasn't being used. The locking needs to be removed from set_stp_state(), the lock is already acquired down in br_stp_start()/br_stp_stop. Signed-off-by: Stephen Hemminger <shemminger@linux-foundation.org> --- a/net/bridge/br_sysfs_br.c
2008 Jul 02
2
spss long labels
...record type 7, subtype 13. + * long variable names + */ static int +read_long_var_names (struct file_handle * h, struct dictionary * dict + , unsigned long size, unsigned int count) +{ + char * data; + unsigned int j; + struct variable ** lp; + struct variable ** end; + char * p; + char * endp; + char * val; + if ((1 != size)||(0 == count)) { + warning("%s: strange record info seen, size=%u, count=%u" + ", ignoring long variable names" + , h->fn, size, count); + return 0; + } + size *= count; + data = Calloc (size +1, char); + bufread(h, data,...
2019 Jan 11
2
strtoi output of empty string inconsistent across platforms
Identified as root cause of a bug in data.table: https://github.com/Rdatatable/data.table/issues/3267 On my machine, strtoi("", base = 2L) produces NA_integer_ (which seems consistent with ?strtoi: "Values which cannot be interpreted as integers or would overflow are returned as NA_integer_"). But on all the other machines I've seen, 0L is returned. This seems to be
2016 Jan 07
0
Domain name search path use during PXE booting
...static void domain_search(const void *data, int opt_len) > +{ > + const uint8_t *udata = (uint8_t *)data; > + const uint8_t *inp = udata; /* in the buffer, does not follow pointers > */ > + char *outp = DomainSearch; /* current location to output chars to */ > + char *endp = DomainSearch; /* end of the last completed domain string > */ > + const uint8_t *cpp; /* copy pointer used to follow pointers */ > + int pcount; /* number of pointers visited in current > point copy */ > + int len; > + enum { START, LABEL, AD...
2006 May 16
2
query: lme
Dear R Users I have difficulties accessing the variance components for an lme fit when the variance covariance matrix of the random effects is not positive definite. Can anyone inform me on how to get by this ? Thanks in advance Pryseley --------------------------------- [[alternative HTML version deleted]]
2007 Oct 17
3
Adding a "boot from local hard disk" option to syslinux menu, booted from USB
...would really appreciate if someone can let me know if what I want to do is possible at all with syslinux; and possibly how to do it... Thanks, Cheers /// int main(int argc, char *argv[]) { char *mbr, *boot_sector = NULL; struct part_entry *partinfo; char *drivename, *partition, *endds, *endps, *waittotals; int hd, drive, whichpart; static com32sys_t inreg; /* In bss, so zeroed automatically */ int idd, idp, endd, endp; FILE *f; char *log = "/chsdlog.txt"; char logsc[1024]; char *logs = &logsc; char logrc[10240]; char *logr = &logrc; char inch[20];...
2007 Jul 14
3
Strange C programming problem
...(the example program given on the strotd man page works fine, BTW.) Can someone wield a clue-bat please? :) Here's the program: #include <stdio.h> #include <math.h> #include <stdlib.h> #include <errno.h> int main (int argc, char ** argv) { float ldbl = 0.0; char * endp; printf ("%s\n", argv[1]); errno = 0; ldbl = strtof (argv[1], &endp); if (errno != 0) printf ("strtof failed! errno=%d\n", errno); printf ("%f\n", (double) ldbl); printf ("%f\n", (double) strtof (argv[1], (char **)NULL)); printf ("%f\n&qu...
2016 Jan 08
1
Domain name search path use during PXE booting
...h(const void *data, int opt_len) >> +{ >> + const uint8_t *udata = (uint8_t *)data; >> + const uint8_t *inp = udata; /* in the buffer, does not follow pointers >> */ >> + char *outp = DomainSearch; /* current location to output chars to */ >> + char *endp = DomainSearch; /* end of the last completed domain string >> */ >> + const uint8_t *cpp; /* copy pointer used to follow pointers */ >> + int pcount; /* number of pointers visited in current >> point copy */ >> + int len; >> +...
2014 Mar 10
2
Building Opus (git master) ARM assembly for iOS
...ror: unknown directive .object_arch armv4t ^ celt/arm/celt_pitch_xcorr_arm-gnu.S:47:2: error: unknown directive .type xcorr_kernel_neon, %function; xcorr_kernel_neon: @ PROC ^ celt/arm/celt_pitch_xcorr_arm-gnu.S:155:2: error: unknown directive .size xcorr_kernel_neon, .-xcorr_kernel_neon @ ENDP ^ celt/arm/celt_pitch_xcorr_arm-gnu.S:159:2: error: unknown directive .type celt_pitch_xcorr_neon, %function; celt_pitch_xcorr_neon: @ PROC ^ celt/arm/celt_pitch_xcorr_arm-gnu.S:254:2: error: unknown directive .size celt_pitch_xcorr_neon, .-celt_pitch_xcorr_neon @ ENDP ^ celt/arm/celt_pitch_xc...
2019 Jan 11
0
strtoi output of empty string inconsistent across platforms
...", base = 2L)? > Is the cross-platform inconsistency to be > expected/documentable? The inconsistency is certainly undesirable. The relevant utility function in R's source (<R>/src/main/character.c) is static int strtoi(SEXP s, int base) { long int res; char *endp; /* strtol might return extreme values on error */ errno = 0; if(s == NA_STRING) return(NA_INTEGER); res = strtol(CHAR(s), &endp, base); /* ASCII */ if(errno || *endp != '\0') res = NA_INTEGER; if(res > INT_MAX || res < INT_MIN) res = NA_INTEGER; retu...
2019 Jan 12
0
strtoi output of empty string inconsistent across platforms
...>> expected/documentable? > > > The inconsistency is certainly undesirable. The relevant > > utility function in R's source (<R>/src/main/character.c) > > is > > > static int strtoi(SEXP s, int base) { long int res; char > > *endp; > > > /* strtol might return extreme values on error */ > > errno = 0; > > > if(s == NA_STRING) return(NA_INTEGER); res = > > strtol(CHAR(s), &endp, base); /* ASCII */ if(errno || > > *endp != '\0') res = NA_INTEGER; if(re...
2020 Aug 30
5
BUG: complete misunterstanding of the MS-ABI
...idend; } --- EOF --- clang -c -O1 generates the following INCOMPATIBLE and WRONG code: __udivmodti4 proc public movaps xmm0, xmmword ptr [rcx] test r8, r8 jz 0f movaps xmm1, xmmword ptr [rdx] movaps xmmword ptr [r8], xmm1 0: ret __udivmodti4 endp clang's misunderstanding of the MS-ABI can be clearly seen here: - RCX holds the address of the return value, NOT the address of the dividend; - RDX holds the address of the dividend, NOT the address of the divisor; - R8 holds the address of the divisor, NOT the address of the remain...
2007 Aug 24
2
[git patch] klibc bzero, mount fixes + random stuff
...ndex 8e68faa..188f1b5 100644 --- a/usr/utils/kill.c +++ b/usr/utils/kill.c @@ -10,7 +10,7 @@ static __noreturn usage(void) fprintf(stderr, "Usage: %s pid\n", progname); exit(1); } -int main(int argc, char *argv[], char *envp[]) +int main(int argc, char *argv[]) { long pid; char *endp; commit a8faf56f7ec338df134c3b121557573720fea5f4 Author: maximilian attems <max at stro.at> Date: Fri Aug 24 22:34:49 2007 +0200 klibc: strcspn, strpbrk, strspn include string.h include the header file that prototype their function. Signed-off-by: maximilian attems &...