Lines Matching defs:out
26 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
84 uint32_t out;
85 out = hash_x86_32(key, i, 256-i);
86 memcpy(&hashes[i*hashbytes], &out, hashbytes);
89 uint64_t out[2];
90 hash_x86_128(key, i, 256-i, out);
91 memcpy(&hashes[i*hashbytes], out, hashbytes);
94 uint64_t out[2];
95 hash_x64_128(key, i, 256-i, out);
96 memcpy(&hashes[i*hashbytes], out, hashbytes);
105 uint32_t out = hash_x86_32(hashes, hashbytes*256, 0);
106 memcpy(final, &out, sizeof(out));
109 uint64_t out[2];
110 hash_x86_128(hashes, hashbytes*256, 0, out);
111 memcpy(final, out, sizeof(out));
114 uint64_t out[2];
115 hash_x64_128(hashes, hashbytes*256, 0, out);
116 memcpy(final, out, sizeof(out));