Searched refs:permunreg (Results 1 – 3 of 3) sorted by relevance
136 uint32_t permunreg[6]; in stepWithCompactEncodingFrameless() local139 permunreg[0] = permutation / 120; in stepWithCompactEncodingFrameless()140 permutation -= (permunreg[0] * 120); in stepWithCompactEncodingFrameless()141 permunreg[1] = permutation / 24; in stepWithCompactEncodingFrameless()142 permutation -= (permunreg[1] * 24); in stepWithCompactEncodingFrameless()143 permunreg[2] = permutation / 6; in stepWithCompactEncodingFrameless()144 permutation -= (permunreg[2] * 6); in stepWithCompactEncodingFrameless()145 permunreg[3] = permutation / 2; in stepWithCompactEncodingFrameless()146 permutation -= (permunreg[3] * 2); in stepWithCompactEncodingFrameless()147 permunreg[4] = permutation; in stepWithCompactEncodingFrameless()[all …]
553 int permunreg[6]; in print_encoding_x86_64() local561 permunreg[0] = permutation / 120; // 120 == 5! in print_encoding_x86_64()562 permutation -= (permunreg[0] * 120); in print_encoding_x86_64()563 permunreg[1] = permutation / 24; // 24 == 4! in print_encoding_x86_64()564 permutation -= (permunreg[1] * 24); in print_encoding_x86_64()565 permunreg[2] = permutation / 6; // 6 == 3! in print_encoding_x86_64()566 permutation -= (permunreg[2] * 6); in print_encoding_x86_64()567 permunreg[3] = permutation / 2; // 2 == 2! in print_encoding_x86_64()568 permutation -= (permunreg[3] * 2); in print_encoding_x86_64()569 permunreg[4] = permutation; // 1 == 1! in print_encoding_x86_64()[all …]
860 int permunreg[6] = {0, 0, 0, 0, 0, 0}; in CreateUnwindPlan_x86_64() local867 permunreg[0] = permutation / 120; // 120 == 5! in CreateUnwindPlan_x86_64()868 permutation -= (permunreg[0] * 120); in CreateUnwindPlan_x86_64()869 permunreg[1] = permutation / 24; // 24 == 4! in CreateUnwindPlan_x86_64()870 permutation -= (permunreg[1] * 24); in CreateUnwindPlan_x86_64()871 permunreg[2] = permutation / 6; // 6 == 3! in CreateUnwindPlan_x86_64()872 permutation -= (permunreg[2] * 6); in CreateUnwindPlan_x86_64()873 permunreg[3] = permutation / 2; // 2 == 2! in CreateUnwindPlan_x86_64()874 permutation -= (permunreg[3] * 2); in CreateUnwindPlan_x86_64()875 permunreg[4] = permutation; // 1 == 1! in CreateUnwindPlan_x86_64()[all …]