Displaying 4 results from an estimated 4 matches for "bwd".
Did you mean:
bsd
2019 Jul 09
0
[PATCH] core: Add support for BLS Type 1 entries
...+ }
+ free(tmp);
+
+ rv = refstrdup(ml);
+ free(ml);
+
+ return rv;
+}
+
+/*
+ * pads the numeric fields of a version string with zeros
+ * to get kernel versions to sort a little better
+ */
+const char *padver(const char *version, const int pad)
+{
+ int i, j, p, len;
+ char *bwd = NULL, *fwd = NULL, *tmp;
+ const char *rv;
+
+ if (version == NULL || pad > 9 || pad <= 0)
+ return version;
+
+ len = strlen(version) + 1;
+ bwd = malloc(len);
+ if (!bwd)
+ goto nomem;
+
+ p = pad;
+ for (i = len-1, j = 0; j <= len; i--, j++) {
+ if (i < 0 || ve...
2019 May 24
3
[PATCH] (vesa)menu.c32: Add support for BLS
...ld);
+ refstr_put(bd->filename);
+
+ memset(bd, 0, sizeof *bd);
+}
+
+/*
+ * Pads the numeric fields of a version string with zeros.
+ * Used to get kernel versions to sort a little better.
+ */
+static char *padver(const char *version) {
+ int i, j, d, len = strlen(version);
+ char *bwd = NULL, *fwd = NULL, *tmp;
+
+ bwd = malloc(len + 1);
+ if (!bwd)
+ goto nomem;
+
+ d = (version[len-1] >= '0' && version[len-1] <= '9') ?
+ bls_version_places : 0;
+ for (i = len, j = 0; j <= len+1; i--, j++) {
+ if (i < 0 || ver...
2006 Nov 20
4
for help about logistic regression model
I have a dataset like this:
p aa
index x y z sdx sdy sdz delta as
ms cur sc
1 821p MET 1 -5.09688 32.8830 -5.857620 1.478200 1.73998 0.825778
13.7883 126.91 92.37 -0.1320180 111.0990
2 821p THR 2 -4.07357 28.6881 -4.838430 0.597674 1.37860 1.165780
13.7207 64.09 50.72 -0.0977129 98.5319
3 821p GLU 3 -5.86733 30.4759
2016 Nov 25
0
Wine release 1.9.24
...escriptors with a usage count less than the report bits.
hid: Implement HidP_GetSpecificButtonCaps.
Bruno Jesus (4):
msvfw32/tests: Add tests for ICInfo().
msvfw32: Allow ICInfo to enumerate codecs when fccType is zero.
krnl386.exe16: Honour segment prefix override for outs[bwd] instruction.
quartz: Take MP3 padding bit into account when calculating the block size.
Carlo Bramini (5):
wininet: Use return value of sprintf() instead of calling strlen() and simplify code.
wldap32: Use return value of sprintf() instead of hardcoding the number of written cha...