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

  /src/external/bsd/zstd/dist/lib/legacy/
zstd_legacy.h 163 ZSTDv05_DCtx* const zd = ZSTDv05_createDCtx(); local
164 if (zd==NULL) return ERROR(memory_allocation);
165 result = ZSTDv05_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize);
166 ZSTDv05_freeDCtx(zd);
173 ZSTDv06_DCtx* const zd = ZSTDv06_createDCtx(); local
174 if (zd==NULL) return ERROR(memory_allocation);
175 result = ZSTDv06_decompress_usingDict(zd, dst, dstCapacity, src, compressedSize, dict, dictSize);
176 ZSTDv06_freeDCtx(zd);
183 ZSTDv07_DCtx* const zd = ZSTDv07_createDCtx(); local
184 if (zd==NULL) return ERROR(memory_allocation)
    [all...]
zstd_v06.c 3900 ZSTDv06_DCtx* zd; member in struct:ZBUFFv06_DCtx_s
3921 zbd->zd = ZSTDv06_createDCtx();
3929 ZSTDv06_freeDCtx(zbd->zd);
3943 return ZSTDv06_decompressBegin_usingDict(zbd->zd, dict, dictSize);
4000 { size_t const h1Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd); /* == ZSTDv06_frameHeaderSize_min */
4001 size_t const h1Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size);
4004 size_t const h2Size = ZSTDv06_nextSrcSizeToDecompress(zbd->zd);
4005 size_t const h2Result = ZSTDv06_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer+h1Size, h2Size);
4028 { size_t const neededInSize = ZSTDv06_nextSrcSizeToDecompress(zbd->zd);
4035 size_t const decodedSize = ZSTDv06_decompressContinue(zbd->zd,
    [all...]
zstd_v07.c 4262 ZSTDv07_DCtx* zd; member in struct:ZBUFFv07_DCtx_s
4299 zbd->zd = ZSTDv07_createDCtx_advanced(customMem);
4300 if (zbd->zd == NULL) { ZBUFFv07_freeDCtx(zbd); return NULL; }
4308 ZSTDv07_freeDCtx(zbd->zd);
4322 return ZSTDv07_decompressBegin_usingDict(zbd->zd, dict, dictSize);
4379 { size_t const h1Size = ZSTDv07_nextSrcSizeToDecompress(zbd->zd); /* == ZSTDv07_frameHeaderSize_min */
4380 size_t const h1Result = ZSTDv07_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer, h1Size);
4383 size_t const h2Size = ZSTDv07_nextSrcSizeToDecompress(zbd->zd);
4384 size_t const h2Result = ZSTDv07_decompressContinue(zbd->zd, NULL, 0, zbd->headerBuffer+h1Size, h2Size);
4410 { size_t const neededInSize = ZSTDv07_nextSrcSizeToDecompress(zbd->zd);
    [all...]
  /src/external/bsd/jemalloc/dist/test/unit/
emitter.c 222 ssize_t zd = -456; local
232 emitter_kv(emitter, "k4", "K4", emitter_type_ssize, &zd);
  /src/external/bsd/jemalloc.old/dist/test/unit/
emitter.c 205 ssize_t zd = -456; local
215 emitter_kv(emitter, "k4", "K4", emitter_type_ssize, &zd);
  /src/external/gpl2/rcs/dist/src/
partime.c 88 #define zd(t,s,d) zs(t, s), zs((t)+100, d) macro
92 zd(-1000,"hast","hadt"),/* Hawaii-Aleutian */
93 zd(- 900,"akst","akdt"),/* Alaska */
94 zd(- 800, "pst", "pdt"),/* Pacific */
95 zd(- 700, "mst", "mdt"),/* Mountain */
96 zd(- 600, "cst", "cdt"),/* Central */
97 zd(- 500, "est", "edt"),/* Eastern */
98 zd(- 400, "ast", "adt"),/* Atlantic */
99 zd(- 330, "nst", "ndt"),/* Newfoundland */
104 zd( 000, "gmt", "bst"),/* Greenwich Mean, British Summer *
    [all...]
  /src/external/lgpl3/mpfr/dist/tests/
tgamma.c 895 mpfr_t yd, yu, zd, zu; local
930 mpfr_inits2 (p1, zd, zu, (mpfr_ptr) 0);
932 inexd = mpfr_gamma (zd, x, MPFR_RNDD); /* zd <= Gamma(x) < yu */
935 if (! mpfr_less_p (zd, yu) || inexd > 0 ||
943 printf ("zd = ");
944 mpfr_dump (zd);
969 if (mpfr_equal_p (zd, zu))
975 printf ("zd = zu, thus exact, but inexd = %d and inexu = %d\n",
986 printf ("zd != zu, thus inexact, but inexd = %d and inexu = %d\n"
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_write_set_format_zip.c 2094 unsigned char *z = zip64, *zd; local
2113 zd = cd_alloc(zip, z - zip64);
2114 if (zd == NULL) {
2119 memcpy(zd, zip64, z - zip64);
  /src/external/bsd/zstd/dist/tests/
decodecorpus.c 1356 ZSTD_DStream* zd = ZSTD_createDStream(); local
1361 if (!zd) return ERROR(memory_allocation);
1371 ZSTD_initDStream(zd);
1373 ret = ZSTD_decompressStream(zd, &out, &in);
1388 ZSTD_freeDStream(zd);
zstreamtest.c 277 ZSTD_DStream* zd = ZSTD_createDStream(); local
287 if (!CNBuffer || !compressedBuffer || !decodedBuffer || !zc || !zd || !mtctx) {
386 CHECK_Z( ZSTD_initDStream_usingDict(zd, CNBuffer, dictSize) );
393 { size_t const r = ZSTD_decompressStream(zd, &outBuff, &inBuff);
403 ZSTD_initDStream_usingDict(zd, CNBuffer, dictSize);
404 CHECK_Z( ZSTD_DCtx_setParameter(zd, ZSTD_d_windowLogMax, ZSTD_WINDOWLOG_LIMIT_DEFAULT+1) ); /* large limit */
405 { size_t const remaining = ZSTD_decompressStream(zd, &outBuff, &inBuff);
414 { size_t const remaining = ZSTD_decompressStream(zd, &outBuff, &inBuff2);
432 size_t const remaining = ZSTD_decompressStream(zd, &outBuff, &inb);
452 { size_t const s = ZSTD_sizeof_DStream(zd);
2535 ZSTD_DStream* zd = ZSTD_createDStream(); \/* will be re-created sometimes *\/ local
2804 ZSTD_DStream* zd = ZSTD_createDStream(); \/* will be reset sometimes *\/ local
    [all...]
  /src/external/apache2/mDNSResponder/dist/mDNSCore/
uDNS.c 1809 mDNSlocal mStatus GetZoneData_StartQuery(mDNS *const m, ZoneData *zd, mDNSu16 qtype);
1814 ZoneData *zd = (ZoneData*)question->QuestionContext; local
1833 AssignDomainName(&zd->ZoneName, answer->name);
1834 zd->ZoneClass = answer->rrclass;
1835 GetZoneData_StartQuery(m, zd, kDNSType_SRV);
1837 else if (zd->CurrentSOA->c[0])
1839 zd->CurrentSOA = (domainname *)(zd->CurrentSOA->c + zd->CurrentSOA->c[0]+1);
1840 AssignDomainName(&zd->question.qname, zd->CurrentSOA)
1979 ZoneData *zd = (ZoneData*) mDNSPlatformMemAllocateClear(sizeof(*zd)); local
    [all...]
  /src/external/cddl/osnet/dist/cmd/ztest/
ztest.c 293 typedef void ztest_func_t(ztest_ds_t *zd, uint64_t id);
1136 ztest_object_lock(ztest_ds_t *zd, uint64_t object, rl_type_t type)
1138 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)];
1144 ztest_object_unlock(ztest_ds_t *zd, uint64_t object)
1146 rll_t *rll = &zd->zd_object_lock[object & (ZTEST_OBJECT_LOCKS - 1)];
1152 ztest_range_lock(ztest_ds_t *zd, uint64_t object, uint64_t offset,
1156 rll_t *rll = &zd->zd_range_lock[hash & (ZTEST_RANGE_LOCKS - 1)];
1181 ztest_zd_init(ztest_ds_t *zd, ztest_shared_ds_t *szd, objset_t *os)
1183 zd->zd_os = os;
1184 zd->zd_zilog = dmu_objset_zil(os)
1816 ztest_ds_t *zd = zgd->zgd_private; local
1834 ztest_ds_t *zd = arg; local
5456 ztest_ds_t *zd = &ztest_ds[id % ztest_opts.zo_datasets]; local
5572 ztest_ds_t *zd = &ztest_ds[d]; local
5629 ztest_ds_t *zd = &ztest_ds[d]; local
5823 ztest_ds_t *zd = &ztest_ds[0]; local
    [all...]

Completed in 49 milliseconds