Lines Matching refs:state_box
354 int *state_box = (int *)(state + 64); in mtpz_hash_reset_state() local
361 state_box[0] = 0x67452301; in mtpz_hash_reset_state()
362 state_box[1] = 0xefcdab89; in mtpz_hash_reset_state()
363 state_box[2] = 0x98badcfe; in mtpz_hash_reset_state()
364 state_box[3] = 0x10325476; in mtpz_hash_reset_state()
365 state_box[4] = 0xc3d2e1f0; in mtpz_hash_reset_state()
366 state_box[MTPZ_HASHSTATE_84] = 0; in mtpz_hash_reset_state()
367 state_box[MTPZ_HASHSTATE_88] = 0; in mtpz_hash_reset_state()
372 int *state_box = (int *)(state + 64); in mtpz_hash_transform_hash() local
374 int x = state_box[MTPZ_HASHSTATE_88] & 0x3F; in mtpz_hash_transform_hash()
375 int v5 = len + state_box[MTPZ_HASHSTATE_88]; in mtpz_hash_transform_hash()
376 state_box[MTPZ_HASHSTATE_88] = v5; in mtpz_hash_transform_hash()
383 state_box[MTPZ_HASHSTATE_84] += 1; in mtpz_hash_transform_hash()
420 int *state_box = (int *)(state + 64); in mtpz_hash_finalize_hash() local
422 int v2 = 64 - (state_box[MTPZ_HASHSTATE_88] & 0x3F); in mtpz_hash_finalize_hash()
432 v6 = 8 * state_box[MTPZ_HASHSTATE_84] | (state_box[MTPZ_HASHSTATE_88] >> 29); in mtpz_hash_finalize_hash()
433 v7 = 8 * state_box[MTPZ_HASHSTATE_88]; in mtpz_hash_finalize_hash()
444 out_int[0] = MTPZ_SWAP(state_box[0]); in mtpz_hash_finalize_hash()
445 out_int[1] = MTPZ_SWAP(state_box[1]); in mtpz_hash_finalize_hash()
446 out_int[2] = MTPZ_SWAP(state_box[2]); in mtpz_hash_finalize_hash()
447 out_int[3] = MTPZ_SWAP(state_box[3]); in mtpz_hash_finalize_hash()
448 out_int[4] = MTPZ_SWAP(state_box[4]); in mtpz_hash_finalize_hash()
483 int *state_box = (int *)(state + 64); in mtpz_hash_compute_hash() local
503 a = state_box[0]; in mtpz_hash_compute_hash()
504 b = state_box[1]; in mtpz_hash_compute_hash()
505 c = state_box[2]; in mtpz_hash_compute_hash()
506 d = state_box[3]; in mtpz_hash_compute_hash()
507 e = state_box[4]; in mtpz_hash_compute_hash()
521 state_box[0] = (state_box[0] + a) & 0xFFFFFFFF; in mtpz_hash_compute_hash()
522 state_box[1] = (state_box[1] + b) & 0xFFFFFFFF; in mtpz_hash_compute_hash()
523 state_box[2] = (state_box[2] + c) & 0xFFFFFFFF; in mtpz_hash_compute_hash()
524 state_box[3] = (state_box[3] + d) & 0xFFFFFFFF; in mtpz_hash_compute_hash()
525 state_box[4] = (state_box[4] + e) & 0xFFFFFFFF; in mtpz_hash_compute_hash()