Home
last modified time | relevance | path

Searched refs:szptr (Results 1 – 25 of 41) sorted by relevance

12

/dports/devel/z88dk/z88dk/libsrc/target/cpm/fcntl/
H A Ddir_get_entry_size.c12 unsigned char *szptr; variable
18 szptr = (void *)(33 + fc_dirbuf + fc_dirpos * 32); in dir_get_entry_size()
19 …return (((unsigned long)szptr[0] + 256L*(unsigned long)szptr[1] + 65536L*(unsigned long)(szptr[2]&… in dir_get_entry_size()
/dports/graphics/bmeps/dktools-4.31.1/src/libdk4c/
H A Ddk4a85d.c303 size_t *szptr, in dk4a85_dec_output() argument
312 assert(NULL != szptr); in dk4a85_dec_output()
314 if ((NULL != dec) && (NULL != dptr) && (NULL != szptr)) { in dk4a85_dec_output()
317 *szptr = dec->os; in dk4a85_dec_output()
321 *szptr = 0; in dk4a85_dec_output()
H A Ddk4rld.c170 size_t *szptr, in dk4rld_output() argument
179 assert(NULL != szptr); in dk4rld_output()
185 *szptr = dec->oused; in dk4rld_output()
189 *szptr = 0; in dk4rld_output()
H A Ddk4membuf.c181 dk4membuf_size(size_t *szptr, dk4_membuf_t const *mbptr, dk4_er_t *erp) in dk4membuf_size() argument
189 assert(NULL != szptr); in dk4membuf_size()
192 if ((NULL != szptr) && (NULL != mbptr)) { in dk4membuf_size()
204 *szptr = result; in dk4membuf_size()
212 if (NULL == szptr) { in dk4membuf_size()
H A Ddk4rle.c311 size_t *szptr, in dk4rle_output() argument
320 assert(NULL != szptr); in dk4rle_output()
322 if ((NULL != enc) && (NULL != dptr) && (NULL != szptr)) { in dk4rle_output()
325 *szptr = enc->oused; in dk4rle_output()
328 *dptr = NULL; *szptr = 0; in dk4rle_output()
433 const unsigned char **dptr, size_t *szptr, dk4_rl_enc_t *enc, dk4_er_t *erp
752 const unsigned char **dptr, size_t *szptr, dk4_rl_enc_t *enc, dk4_er_t *erp
760 assert(NULL != szptr);
765 *szptr = enc->oused;
H A Ddk4lzwe.c453 size_t *szptr, in dk4lzwe_output() argument
462 assert(NULL != szptr); in dk4lzwe_output()
465 if ((NULL != dptr) && (NULL != szptr) && (NULL != lzwptr)) { in dk4lzwe_output()
470 *szptr = lzwptr->obu; in dk4lzwe_output()
482 if (NULL != szptr) { in dk4lzwe_output()
483 *szptr = 0; in dk4lzwe_output()
H A Ddk4membuf.ctr90 @param szptr Address of result variable.
97 if szptr or mbptr is NULL.
102 dk4membuf_size(size_t *szptr, dk4_membuf_t const *mbptr, dk4_er_t *erp);
277 dk4membuf_size(size_t *szptr, dk4_membuf_t const *mbptr, dk4_er_t *erp)
285 assert(NULL != szptr);
288 if ((NULL != szptr) && (NULL != mbptr)) {
300 *szptr = result;
308 if (NULL == szptr) { $? "! missing size variable address"
H A Ddk4a85e.c243 size_t *szptr, in dk4a85_enc_output() argument
252 assert(NULL != szptr); in dk4a85_enc_output()
254 if ((NULL != dptr) && (NULL != szptr) && (NULL != enc)) { in dk4a85_enc_output()
256 *szptr = enc->os; in dk4a85_enc_output()
H A Ddk4rld.ctr117 @param szptr Address of variable to receive buffer size,
129 size_t *szptr,
292 size_t *szptr,
301 assert(NULL != szptr);
307 *szptr = dec->oused;
311 *szptr = 0;
H A Ddk4strm.c627 dk4stream_read(void *b, size_t *szptr, dk4_stream_t *strm, dk4_er_t *erp) in dk4stream_read() argument
638 assert(NULL != szptr); in dk4stream_read()
639 assert(0 < *szptr); in dk4stream_read()
641 if ((NULL != b) && (NULL != szptr) && (NULL != strm)) { in dk4stream_read()
642 if (((strm->fl) & DK4_STREAM_READ) && (0 < *szptr)) { in dk4stream_read()
643 szin = *szptr; szout = 0; in dk4stream_read()
665 *szptr = szout; in dk4stream_read()
H A Ddk4a85e.ctr130 @param szptr Address of size variable to set, should be
137 - DK4_E_INVALID_ARGUMENTS if enc, dptr, or szptr is NULL.
143 size_t *szptr,
379 size_t *szptr,
388 assert(NULL != szptr);
390 if ((NULL != dptr) && (NULL != szptr) && (NULL != enc)) {
392 *szptr = enc->os;
H A Ddk4rle.ctr121 @param szptr Address of size variable for buffer length,
133 size_t *szptr,
439 size_t *szptr,
448 assert(NULL != szptr);
450 if ((NULL != enc) && (NULL != dptr) && (NULL != szptr)) {
453 *szptr = enc->oused;
456 *dptr = NULL; *szptr = 0;
550 @param szptr Address of size variable for buffer length,
561 const unsigned char **dptr, size_t *szptr, dk4_rl_enc_t *enc, dk4_er_t *erp
888 assert(NULL != szptr);
[all …]
H A Ddk4a85d.ctr118 @param szptr Address of size variable to set, should be
128 size_t *szptr,
427 size_t *szptr,
436 assert(NULL != szptr);
438 if ((NULL != dec) && (NULL != dptr) && (NULL != szptr)) {
441 *szptr = dec->os;
445 *szptr = 0;
H A Ddk4lzwe.ctr175 @param szptr Address of result size variable.
184 size_t *szptr,
632 size_t *szptr,
641 assert(NULL != szptr);
644 if ((NULL != dptr) && (NULL != szptr) && (NULL != lzwptr)) {
649 *szptr = lzwptr->obu;
661 if (NULL != szptr) {
662 *szptr = 0;
H A Ddk4rld.h138 size_t *szptr,
H A Ddk4a85d.h136 size_t *szptr,
H A Ddk4a85e.h151 size_t *szptr,
H A Ddk4membuf.h111 dk4membuf_size(size_t *szptr, dk4_membuf_t const *mbptr, dk4_er_t *erp);
H A Ddk4rle.h141 size_t *szptr,
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libbz/
H A Dcompress.c208 case 0: s->szptr[wr] = BZ_RUNA; wr++; s->mtfFreq[BZ_RUNA]++; break; in generateMTFValues()
209 case 1: s->szptr[wr] = BZ_RUNB; wr++; s->mtfFreq[BZ_RUNB]++; break; in generateMTFValues()
216 s->szptr[wr] = j+1; wr++; s->mtfFreq[j+1]++; in generateMTFValues()
224 case 0: s->szptr[wr] = BZ_RUNA; wr++; s->mtfFreq[BZ_RUNA]++; break; in generateMTFValues()
225 case 1: s->szptr[wr] = BZ_RUNB; wr++; s->mtfFreq[BZ_RUNB]++; break; in generateMTFValues()
232 s->szptr[wr] = EOB; wr++; s->mtfFreq[EOB]++; in generateMTFValues()
352 UInt16 icv = s->szptr[i]; in sendMTFValues()
364 UInt16 icv = s->szptr[i]; in sendMTFValues()
385 s->rfreq[bt][ s->szptr[i] ]++; in sendMTFValues()
506 s->len [s->selector[selCtr]] [s->szptr[i]], in sendMTFValues()
[all …]
/dports/shells/ksh93/ast-93u/src/lib/libbz/
H A Dcompress.c208 case 0: s->szptr[wr] = BZ_RUNA; wr++; s->mtfFreq[BZ_RUNA]++; break; in generateMTFValues()
209 case 1: s->szptr[wr] = BZ_RUNB; wr++; s->mtfFreq[BZ_RUNB]++; break; in generateMTFValues()
216 s->szptr[wr] = j+1; wr++; s->mtfFreq[j+1]++; in generateMTFValues()
224 case 0: s->szptr[wr] = BZ_RUNA; wr++; s->mtfFreq[BZ_RUNA]++; break; in generateMTFValues()
225 case 1: s->szptr[wr] = BZ_RUNB; wr++; s->mtfFreq[BZ_RUNB]++; break; in generateMTFValues()
232 s->szptr[wr] = EOB; wr++; s->mtfFreq[EOB]++; in generateMTFValues()
352 UInt16 icv = s->szptr[i]; in sendMTFValues()
364 UInt16 icv = s->szptr[i]; in sendMTFValues()
385 s->rfreq[bt][ s->szptr[i] ]++; in sendMTFValues()
506 s->len [s->selector[selCtr]] [s->szptr[i]], in sendMTFValues()
[all …]
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libbz/
H A Dcompress.c208 case 0: s->szptr[wr] = BZ_RUNA; wr++; s->mtfFreq[BZ_RUNA]++; break; in generateMTFValues()
209 case 1: s->szptr[wr] = BZ_RUNB; wr++; s->mtfFreq[BZ_RUNB]++; break; in generateMTFValues()
216 s->szptr[wr] = j+1; wr++; s->mtfFreq[j+1]++; in generateMTFValues()
224 case 0: s->szptr[wr] = BZ_RUNA; wr++; s->mtfFreq[BZ_RUNA]++; break; in generateMTFValues()
225 case 1: s->szptr[wr] = BZ_RUNB; wr++; s->mtfFreq[BZ_RUNB]++; break; in generateMTFValues()
232 s->szptr[wr] = EOB; wr++; s->mtfFreq[EOB]++; in generateMTFValues()
352 UInt16 icv = s->szptr[i]; in sendMTFValues()
364 UInt16 icv = s->szptr[i]; in sendMTFValues()
385 s->rfreq[bt][ s->szptr[i] ]++; in sendMTFValues()
506 s->len [s->selector[selCtr]] [s->szptr[i]], in sendMTFValues()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/BZip2/
H A DBZip2OutputStream.cs347 short[] szptr; field in ICSharpCode.SharpZipLib.BZip2.BZip2OutputStream
804 short icv = szptr[i]; in SendMTFValues()
820 short icv = szptr[i]; in SendMTFValues()
848 ++rfreq[bt][szptr[i]]; in SendMTFValues()
996 BsW(len[selector[selCtr]][szptr[i]], code[selector[selCtr]][szptr[i]]); in SendMTFValues()
1662 szptr = new short[2 * n]; in AllocateCompressStructures()
1712 szptr[wr] = (short)BZip2Constants.RUNA; in GenerateMTFValues()
1729 szptr[wr] = (short)(j + 1); in GenerateMTFValues()
1740 szptr[wr] = (short)BZip2Constants.RUNA; in GenerateMTFValues()
1745 szptr[wr] = (short)BZip2Constants.RUNB; in GenerateMTFValues()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/api-doc-tools/external/SharpZipLib/ICSharpCode.SharpZipLib.Shared/BZip2/
H A DBZip2OutputStream.cs640 short icv = szptr[i]; in SendMTFValues()
656 short icv = szptr[i]; in SendMTFValues()
684 ++rfreq[bt][szptr[i]]; in SendMTFValues()
830 BsW(len[selector[selCtr]][szptr[i]], code[selector[selCtr]][szptr[i]]); in SendMTFValues()
1455 szptr = new short[2 * n]; in AllocateCompressStructures()
1505 szptr[wr] = (short)BZip2Constants.RunA; in GenerateMTFValues()
1522 szptr[wr] = (short)(j + 1); in GenerateMTFValues()
1533 szptr[wr] = (short)BZip2Constants.RunA; in GenerateMTFValues()
1538 szptr[wr] = (short)BZip2Constants.RunB; in GenerateMTFValues()
1550 szptr[wr] = (short)EOB; in GenerateMTFValues()
[all …]
/dports/java/bouncycastle15/crypto-169/pg/src/main/java/org/bouncycastle/apache/bzip2/
H A DCBZip2OutputStream.java259 private short[] szptr; field in CBZip2OutputStream
691 short icv = szptr[i]; in sendMTFValues()
707 short icv = szptr[i]; in sendMTFValues()
735 rfreq[bt][szptr[i]]++; in sendMTFValues()
884 bsW(len[selector[selCtr]][szptr[i]], in sendMTFValues()
1543 szptr = new short[2 * n]; in allocateCompressStructures()
1592 szptr[wr] = (short) RUNA; in generateMTFValues()
1609 szptr[wr] = (short) (j + 1); in generateMTFValues()
1620 szptr[wr] = (short) RUNA; in generateMTFValues()
1625 szptr[wr] = (short) RUNB; in generateMTFValues()
[all …]

12