HomeSort by: relevance | last modified time | path
    Searched defs:lli (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mpl/bind/dist/lib/isccfg/
duration.c 48 long long int lli; local
82 lli = strtoll(str + 1, &endptr, 10);
86 if (errno != 0 || lli < 0 || lli > UINT32_MAX) {
89 duration->parts[0] = (uint32_t)lli;
103 lli = strtoll(str + 1, &endptr, 10);
107 if (errno != 0 || lli < 0 || lli > UINT32_MAX) {
110 duration->parts[1] = (uint32_t)lli;
119 lli = strtoll(str + 1, &endptr, 10)
    [all...]
  /src/tests/lib/libc/stdlib/
t_strtol.c 50 check(struct test *t, long int li, long long int lli, intmax_t ji, char *end)
57 if (lli != -1 && lli != t->res)
59 "(rv = %lld)", t->str, t->base, lli);
106 long long int lli; local
118 lli = strtoll(t[i].str, NULL, t[i].base);
125 check(&t[i], li, lli, ji, end);
130 if (lli != ulli)
150 long long int lli; local
174 CHECK(lli, "%lld", strtoll)
201 long long int lli; local
282 long long int lli; local
    [all...]
  /src/sys/arch/powerpc/ibm4xx/dev/
dwcsata.c 97 * Worst case for a MAXPHYS transfer is one LLI per map segment plus
137 struct dwcdmac_lli *sc_lli; /* uncached LLI table */
322 * The LLI table is fetched by the DMAC behind the CPU's back...
465 struct dwcdmac_lli *lli; local
471 "dma_init: LLI overflow (len %zu, "
486 lli = &sc->sc_lli[idx];
488 lli->sar = htole32(sc->sc_dmadr_phys);
489 lli->dar = htole32(addr);
491 lli->sar = htole32(addr);
492 lli->dar = htole32(sc->sc_dmadr_phys)
560 const struct dwcdmac_lli *lli = &sc->sc_lli[i]; local
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/isccfg/
parser.c 1180 long long int lli; local
1210 lli = strtoll(str + 1, NULL, 10);
1211 if (errno != 0 || lli < 0 || lli > UINT32_MAX) {
1214 duration->parts[0] = (uint32_t)lli;
1228 lli = strtoll(str + 1, NULL, 10);
1229 if (errno != 0 || lli < 0 || lli > UINT32_MAX) {
1232 duration->parts[1] = (uint32_t)lli;
1241 lli = strtoll(str + 1, NULL, 10)
    [all...]

Completed in 83 milliseconds