Lines Matching refs:ctx
6 $ctx = hash_init("murmur3f", options: ["seed" => 42]);
7 hash_update($ctx, "Two");
8 hash_update($ctx, " hashes");
9 hash_update($ctx, " meet");
10 hash_update($ctx, " in");
11 hash_update($ctx, " a");
12 hash_update($ctx, " bar.");
13 $h0 = hash_final($ctx);
19 $ctx = hash_init("murmur3c", options: ["seed" => 106]);
20 hash_update($ctx, "Two");
21 hash_update($ctx, " hashes");
22 hash_update($ctx, " meet");
23 hash_update($ctx, " in");
24 hash_update($ctx, " a");
25 hash_update($ctx, " bar.");
26 $h0 = hash_final($ctx);
32 $ctx = hash_init("murmur3a", options: ["seed" => 2345]);
33 hash_update($ctx, "Two");
34 hash_update($ctx, " hashes");
35 hash_update($ctx, " meet");
36 hash_update($ctx, " in");
37 hash_update($ctx, " a");
38 hash_update($ctx, " bar.");
39 $h0 = hash_final($ctx);