Searched defs:bitness (Results 1 - 1 of 1) sorted by relevance

/external/linux-kselftest/tools/testing/selftests/x86/
H A Dsigreturn.c343 * Checks a given selector for its code bitness or returns -1 if it's not
372 return -1; /* Unknown bitness. */
376 * Checks a given selector for its code bitness or returns -1 if it's not
553 /* Finds a usable code segment of the requested bitness. */
554 int find_cs(int bitness) argument
560 if (cs_bitness(my_cs) == bitness)
562 if (cs_bitness(my_cs + (2 << 3)) == bitness)
564 if (my_cs > (2<<3) && cs_bitness(my_cs - (2 << 3)) == bitness)
566 if (cs_bitness(code16_sel) == bitness)
569 printf("[WARN]\tCould not find %d-bit CS\n", bitness);
[all...]

Completed in 234 milliseconds