/ast/src/lib/libast/comp/ |
H A D | strtoul.c | 23 * strtoul() implementation 28 #define S2I_function strtoul
|
H A D | transition.c | 55 #ifndef strtoul 60 return strtoul(a, b, c);
|
/ast/src/cmd/3d/ |
H A D | dll3d.c | 41 #undef strtoul macro
|
H A D | 3d.h | 134 #undef strtoul macro
|
/ast/src/cmd/dsslib/netflow/ |
H A D | flow-flat.c | 108 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 D | sum-prng.c | 75 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 D | sum-crc.c | 85 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 D | fmtclock.c | 45 if (!(clk_tck = (unsigned int)strtoul(astconf("CLK_TCK", NiL, NiL), NiL, 10)))
|
/ast/src/lib/libtksh/tcl/ |
H A D | tclGet.c | 52 * 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 D | tclClock.c | 215 * Since some strtoul functions don't detect negative numbers, check 225 i = strtoul(p, &end, 0);
|
H A D | tclExpr.c | 345 * 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 D | tclCmdAH.c | 1503 tmp = strtoul(format, &end, 10); 1533 width = strtoul(format, &end, 10); 1568 precision = strtoul(format, &end, 10);
|
/ast/src/lib/libtk/compat/ |
H A D | stdlib.h | 42 extern unsigned long strtoul _ANSI_ARGS_((CONST char *string,
|
/ast/src/lib/libardir/ |
H A D | ar-local.c | 122 ar->dirent.size = strtoul(s, NiL, 10);
|
/ast/src/lib/libast/aso/ |
H A D | aso-sem.c | 97 size = strtoul(path + 5, NiL, 0);
|
H A D | aso-fcntl.c | 105 size = strtoul(path + 5, NiL, 0);
|
/ast/src/cmd/dsslib/bgp/ |
H A D | bgp-table.c | 140 rp->hop.v4 = strtoul(s, &p, 0); 178 rp->hop.v4 = strtoul(s, &p, 0);
|
/ast/src/lib/libdss/ |
H A D | dsstags.c | 203 ((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 D | pathtemp.c | 152 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 D | uniq.c | 75 if ((n = strtoul(s, &e, 10)) && (!*e || *e == '.' && !strchr(e, '/')))
|
/ast/src/cmd/tests/ |
H A D | strtoi.c | 27 * 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 D | pss-ps.c | 169 n = strtoul(s, &e, base);
|
/ast/src/cmd/dsslib/flat/ |
H A D | flat.c | 1687 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 D | tmxscan.c | 322 x = strtoul(s, &u, 0);
|
/ast/src/cmd/nmake/ |
H A D | misc.c | 285 #define strtoull strtoul
|