Home
last modified time | relevance | path

Searched refs:uInt (Results 1 – 8 of 8) sorted by relevance

/optee_os/core/lib/zlib/
H A Dzutil.c38 switch ((int)(sizeof(uInt))) { in zlibCompileFlags()
153 uInt len;
164 uInt len;
166 uInt j;
176 uInt len;
281 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc()
301 extern voidp malloc OF((uInt size));
302 extern voidp calloc OF((uInt items, uInt size));
312 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
H A Dzlib.h82 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
89 uInt avail_in; /* number of bytes available at next_in */
93 uInt avail_out; /* remaining free space at next_out */
121 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
122 uInt extra_max; /* space at extra (only when reading header) */
124 uInt name_max; /* space at name (only when reading header) */
126 uInt comm_max; /* space at comment (only when reading header) */
613 uInt dictLength));
657 uInt *dictLength));
889 uInt dictLength));
[all …]
H A Dzutil.h235 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
236 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
237 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
H A Dzconf.h159 # define uInt z_uInt macro
398 typedef unsigned int uInt; /* 16 bits or more */ typedef
409 typedef uInt FAR uIntf;
H A Dgzguts.h123 extern voidp malloc OF((uInt size));
H A Dadler32.c138 uInt len;
H A Dinflate.c263 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR;
266 state->bits += (uInt)bits;
1319 uInt *dictLength;
1342 uInt dictLength;
/optee_os/core/lib/qcbor/src/
H A Dqcbor_decode.c6663 QCBOR_Private_ConvertIntToBigNum(uint64_t uInt, const UsefulBuf Buffer) in QCBOR_Private_ConvertIntToBigNum() argument
6665 while((uInt & 0xff00000000000000UL) == 0) { in QCBOR_Private_ConvertIntToBigNum()
6666 uInt = uInt << 8; in QCBOR_Private_ConvertIntToBigNum()
6673 while(uInt) { in QCBOR_Private_ConvertIntToBigNum()
6674 UsefulOutBuf_AppendByte(&UOB, (uint8_t)((uInt & 0xff00000000000000UL) >> 56)); in QCBOR_Private_ConvertIntToBigNum()
6675 uInt = uInt << 8; in QCBOR_Private_ConvertIntToBigNum()