Lines Matching refs:islittle
1428 int islittle; member
1490 h->islittle = nativeendian.little;
1530 case '<': h->islittle = 1; break;
1531 case '>': h->islittle = 0; break;
1532 case '=': h->islittle = nativeendian.little; break;
1581 int islittle, int size, int neg) { argument
1584 buff[islittle ? 0 : size - 1] = (char)(n & MC); /* first byte */
1587 buff[islittle ? i : size - 1 - i] = (char)(n & MC);
1591 buff[islittle ? i : size - 1 - i] = (char)MC;
1602 int size, int islittle) { argument
1603 if (islittle == nativeendian.little)
1636 packint(&b, (lua_Unsigned)n, h.islittle, size, (n < 0));
1644 packint(&b, (lua_Unsigned)n, h.islittle, size, 0);
1652 copywithendian(buff, (char *)&f, sizeof(f), h.islittle);
1661 copywithendian(buff, (char *)&f, sizeof(f), h.islittle);
1670 copywithendian(buff, (char *)&f, sizeof(f), h.islittle);
1691 packint(&b, (lua_Unsigned)len, h.islittle, size, 0); /* pack length */
1745 int islittle, int size, int issigned) { argument
1751 res |= (lua_Unsigned)(unsigned char)str[islittle ? i : size - 1 - i];
1762 if (l_unlikely((unsigned char)str[islittle ? i : size - 1 - i] != mask))
1791 lua_Integer res = unpackint(L, data + pos, h.islittle, size,
1799 copywithendian((char *)&f, data + pos, sizeof(f), h.islittle);
1806 copywithendian((char *)&f, data + pos, sizeof(f), h.islittle);
1813 copywithendian((char *)&f, data + pos, sizeof(f), h.islittle);
1823 size_t len = (size_t)unpackint(L, data + pos, h.islittle, size, 0);