Skip to documentation
SLOP

tiny.simd.PhastSeeds

Reference tiny.simd PhastSeeds

Defined in tiny.simd.

API (2)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callstiny.simdPhastSeeds
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/simd/src/phast/family.zig:65

zig
pub const Seeds = struct {    words: []const u32 = &.{},    pub fn get(self: Seeds, bucket_index: u32) u32 {        std.debug.assert(@as(usize, bucket_index) < self.words.len * @sizeOf(u32));        const bit_index = (bucket_index & 3) * 8;        return (self.words[bucket_index >> 2] >> @intCast(bit_index)) & 0xff;    }};

Source: lib/simd/src/root.zig:579

zig
pub const PhastSeeds = phast.PhastSeeds;

Also reachable as

phast.PhastSeeds.

Audit

Definitions2
Public names4
Members1
Version26.7.0
Revisiondaab053ee433