Lines Matching defs:pack
918 I32 pack(I32 x, I32 y, int bits); // x | (y<<bits)
919 I32 pack(I32 x, int y, int bits) { return pack(x, splat(y), bits); }
920 I32 pack(int x, I32 y, int bits) { return pack(splat(x), y, bits); }
1302 SI I32 pack(I32 x, I32 y, int bits) { return x->pack (x,y,bits); }
1303 SI I32 pack(I32 x, int y, int bits) { return x->pack (x,y,bits); }
1304 SI I32 pack(int x, I32 y, int bits) { return y->pack (x,y,bits); }