Home
last modified time | relevance | path

Searched refs:packI (Results 1 – 2 of 2) sorted by relevance

/external/lua/src/
Dlmathlib.c381 static Rand64 packI (lu_int32 h, lu_int32 l) { in packI() function
391 return packI((i.h << n) | (trim32(i.l) >> (32 - n)), i.l << n); in Ishl()
402 Rand64 result = packI(i1.h + i2.h, i1.l + i2.l); in Iadd()
421 return packI((i.h << n) | (trim32(i.l) >> (32 - n)), in rotl()
429 return packI((trim32(i.h) >> n) | (i.l << (32 - n)), in rotl1()
507 return packI((lu_int32)(n >> 31 >> 1), (lu_int32)n); in Int2I()
/external/python/cpython3/Lib/
Dbase64.py375 packI = struct.Struct('!I').pack
389 decoded_append(packI(acc))
453 packI = struct.Struct('!I').pack
467 out.append(packI(acc))