Searched refs:strtoul (Results 1 - 25 of 51) sorted by relevance

123

/ast/src/lib/libast/comp/
H A Dstrtoul.c23 * strtoul() implementation
28 #define S2I_function strtoul
H A Dtransition.c55 #ifndef strtoul
60 return strtoul(a, b, c);
/ast/src/cmd/3d/
H A Ddll3d.c41 #undef strtoul macro
H A D3d.h134 #undef strtoul macro
/ast/src/cmd/dsslib/netflow/
H A Dflow-flat.c108 rp->input = strtoul(b, &a, 10);
111 rp->output = strtoul(a, &b, 10);
114 rp->packets = strtoul(b, &a, 10);
117 rp->bytes = strtoul(a, &b, 10);
120 rp->first = strtoul(b, &a, 10);
123 rp->last = strtoul(a, &b, 10);
126 rp->src_port = strtoul(b, &a, 10);
129 rp->dst_port = strtoul(a, &b, 10);
132 rp->flags = strtoul(b, &a, 10);
135 rp->tcp_flags = strtoul(
[all...]
/ast/src/lib/libsum/
H A Dsum-prng.c75 sum->mpy = strtoul(t, NiL, 0);
77 sum->add = v ? strtoul(v + 1, NiL, 0) : ~sum->add;
79 sum->init = v ? strtoul(v + 1, NiL, 0) : ~sum->init;
H A Dsum-crc.c85 polynomial = strtoul(t, NiL, 0);
87 sum->done = v ? strtoul(v + 1, NiL, 0) : ~sum->done;
89 sum->init = v ? strtoul(v + 1, NiL, 0) : ~sum->init;
96 sum->xorsize = strtoul(v + 1, NiL, 0);
/ast/src/lib/libast/string/
H A Dfmtclock.c45 if (!(clk_tck = (unsigned int)strtoul(astconf("CLK_TCK", NiL, NiL), NiL, 10)))
/ast/src/lib/libtksh/tcl/
H A DtclGet.c52 * Note: use strtoul instead of strtol for integer conversions
53 * to allow full-size unsigned numbers, but don't depend on strtoul
63 i = -(int)strtoul(p, &end, 0);
66 i = strtoul(p, &end, 0);
68 i = strtoul(p, &end, 0);
H A DtclClock.c215 * Since some strtoul functions don't detect negative numbers, check
225 i = strtoul(p, &end, 0);
H A DtclExpr.c345 * Note: use strtoul instead of strtol for integer conversions
347 * strtoul to handle sign characters; it won't in some
356 valuePtr->intValue = -((int)strtoul(start, &term, 0));
359 valuePtr->intValue = strtoul(start, &term, 0);
362 valuePtr->intValue = strtoul(start, &term, 0);
475 valuePtr->intValue = strtoul(p, &term, 0);
H A DtclCmdAH.c1503 tmp = strtoul(format, &end, 10);
1533 width = strtoul(format, &end, 10);
1568 precision = strtoul(format, &end, 10);
/ast/src/lib/libtk/compat/
H A Dstdlib.h42 extern unsigned long strtoul _ANSI_ARGS_((CONST char *string,
/ast/src/lib/libardir/
H A Dar-local.c122 ar->dirent.size = strtoul(s, NiL, 10);
/ast/src/lib/libast/aso/
H A Daso-sem.c97 size = strtoul(path + 5, NiL, 0);
H A Daso-fcntl.c105 size = strtoul(path + 5, NiL, 0);
/ast/src/cmd/dsslib/bgp/
H A Dbgp-table.c140 rp->hop.v4 = strtoul(s, &p, 0);
178 rp->hop.v4 = strtoul(s, &p, 0);
/ast/src/lib/libdss/
H A Ddsstags.c203 ((Cxitem_t*)fp->prev->data)->mask = strtoul(data, &e, 0);
246 ((Cxitem_t*)fp->prev->data)->mask = ((Cxitem_t*)fp->prev->data)->value = ((Cxunsigned_t)1) << strtoul(data, &e, 0);
334 ((Cxpart_t*)fp->prev->data)->shift = strtoul(data, &e, 0);
349 ((Cxpart_t*)fp->prev->data)->mask = strtoul(data, &e, 0);
472 ((Cxmap_t*)fp->prev->data)->shift = strtoul(data, &e, 0);
487 ((Cxmap_t*)fp->prev->data)->mask = strtoul(data, &e, 0);
/ast/src/lib/libast/path/
H A Dpathtemp.c152 tmp.key = (tmp.seed = (tmp.rng = dir ? (uint32_t)strtoul(dir, NiL, 0) : (uint32_t)1) != 0)? (uint32_t)0x63c63cd9L : 0;
/ast/src/lib/libjcl/
H A Duniq.c75 if ((n = strtoul(s, &e, 10)) && (!*e || *e == '.' && !strchr(e, '/')))
/ast/src/cmd/tests/
H A Dstrtoi.c27 * strtol strtoul strton
148 l = strtoul(s, &p, 0);
149 printf("strtoul \"%s\" \"%s\" %lu %s\n", s, p, l, errno == 0 ? "OK" : errno == ERANGE ? "ERANGE" : errno == EINVAL ? "EINVAL" : "ERROR");
/ast/src/cmd/std/
H A Dpss-ps.c169 n = strtoul(s, &e, base);
/ast/src/cmd/dsslib/flat/
H A Dflat.c1687 flat->format->fixedpoint = strtoul(data, &e, 0);
1705 flat->format->width = strtoul(data, &e, 0);
1728 flat->format->width = strtoul(data, &e, 0);
1754 flat->format->base = strtoul(data, &e, 0);
1795 flat->array->size = strtoul(data, &e, 0);
2279 ((Size_t*)fp->prev->data)->width = strtoul(data, &e, 0);
2294 ((Size_t*)fp->prev->data)->fixed = strtoul(data, &e, 0);
2309 ((Size_t*)fp->prev->data)->offset = strtoul(data, &e, 0);
2324 ((Size_t*)fp->prev->data)->base = strtoul(data, &e, 0);
2418 flat->section->count = strtoul(dat
[all...]
/ast/src/lib/libast/tm/
H A Dtmxscan.c322 x = strtoul(s, &u, 0);
/ast/src/cmd/nmake/
H A Dmisc.c285 #define strtoull strtoul

Completed in 97 milliseconds

123