Searched refs:permunreg (Results 1 – 3 of 3) sorted by relevance
137 uint32_t permunreg[6]; in stepWithCompactEncodingFrameless() local140 permunreg[0] = permutation / 120; in stepWithCompactEncodingFrameless()141 permutation -= (permunreg[0] * 120); in stepWithCompactEncodingFrameless()142 permunreg[1] = permutation / 24; in stepWithCompactEncodingFrameless()143 permutation -= (permunreg[1] * 24); in stepWithCompactEncodingFrameless()144 permunreg[2] = permutation / 6; in stepWithCompactEncodingFrameless()145 permutation -= (permunreg[2] * 6); in stepWithCompactEncodingFrameless()146 permunreg[3] = permutation / 2; in stepWithCompactEncodingFrameless()147 permutation -= (permunreg[3] * 2); in stepWithCompactEncodingFrameless()148 permunreg[4] = permutation; in stepWithCompactEncodingFrameless()[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 …]
510 int permunreg[6]; in print_encoding_x86_64() local518 permunreg[0] = permutation / 120; // 120 == 5! in print_encoding_x86_64()519 permutation -= (permunreg[0] * 120); in print_encoding_x86_64()520 permunreg[1] = permutation / 24; // 24 == 4! in print_encoding_x86_64()521 permutation -= (permunreg[1] * 24); in print_encoding_x86_64()522 permunreg[2] = permutation / 6; // 6 == 3! in print_encoding_x86_64()523 permutation -= (permunreg[2] * 6); in print_encoding_x86_64()524 permunreg[3] = permutation / 2; // 2 == 2! in print_encoding_x86_64()525 permutation -= (permunreg[3] * 2); in print_encoding_x86_64()526 permunreg[4] = permutation; // 1 == 1! in print_encoding_x86_64()[all …]