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