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

  /src/external/bsd/jemalloc.old/dist/test/integration/
rallocx.c 53 size_t szs[NSZS]; local
58 szs[0] = sallocx(p, 0);
61 for (j = 1; j < NSZS && szs[j-1] < MAXSZ; j++) {
62 q = rallocx(p, szs[j-1]+1, 0);
65 szs[j-1], szs[j-1]+1);
66 szs[j] = sallocx(q, 0);
67 expect_zu_ne(szs[j], szs[j-1]+1,
68 "Expected size to be at least: %zu", szs[j-1]+1)
    [all...]
  /src/external/bsd/jemalloc/dist/test/integration/
rallocx.c 53 size_t szs[NSZS]; local
58 szs[0] = sallocx(p, 0);
61 for (j = 1; j < NSZS && szs[j - 1] < MAXSZ; j++) {
62 q = rallocx(p, szs[j - 1] + 1, 0);
65 szs[j - 1], szs[j - 1] + 1);
66 szs[j] = sallocx(q, 0);
67 expect_zu_ne(szs[j], szs[j - 1] + 1,
69 szs[j - 1] + 1)
    [all...]
  /src/external/bsd/ntp/dist/libparse/
parsesolaris.c 879 register struct savedzsops *szs; local
901 szs = (struct savedzsops *) kmem_alloc(sizeof(struct savedzsops), KM_SLEEP);
903 if (szs == (struct savedzsops *)0)
911 parsestream->parse_data = (void *)szs;
917 szs->zsops = *zs->zs_ops;
918 szs->zsops.zsop_xsint = (void (*) (struct zscom *))zs_xsisr; /* place our bastard */
919 szs->oldzsops = zs->zs_ops;
922 zs->zs_ops = &szs->zsops; /* hook it up */
961 register struct savedzsops *szs = (struct savedzsops *)parsestream->parse_data; local
965 zs->zs_ops = szs->oldzsops; /* reset to previous handler functions *
    [all...]
parsestreams.c 1025 register struct savedzsops *szs; local
1049 szs = (struct savedzsops *)(void *)kmem_alloc(sizeof(struct savedzsops));
1051 if (szs == (struct savedzsops *)0)
1059 parsestream->parse_data = (void *)szs;
1065 szs->zsops = *zs->zs_ops;
1066 szs->zsops.zsop_xsint = zs_xsisr; /* place our bastard */
1067 szs->oldzsops = zs->zs_ops;
1070 zsopinit(zs, &szs->zsops); /* hook it up */
1103 register struct savedzsops *szs = (struct savedzsops *)parsestream->parse_data; local
1105 zsopinit(zs, szs->oldzsops); /* reset to previous handler functions *
    [all...]

Completed in 21 milliseconds