| /src/sys/external/bsd/compiler_rt/dist/lib/builtins/ | 
| ashldi3.c | 25     dwords input;  local in function:__ashldi3 27     input.all = a;
 31         result.s.high = input.s.low << (b - bits_in_word);
 37         result.s.low  = input.s.low << b;
 38         result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
 
 | 
| ashlti3.c | 27     twords input;  local in function:__ashlti3 29     input.all = a;
 33         result.s.high = input.s.low << (b - bits_in_dword);
 39         result.s.low  = input.s.low << b;
 40         result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
 
 | 
| ashrdi3.c | 25     dwords input;  local in function:__ashrdi3 27     input.all = a;
 30         /* result.s.high = input.s.high < 0 ? -1 : 0 */
 31         result.s.high = input.s.high >> (bits_in_word - 1);
 32         result.s.low = input.s.high >> (b - bits_in_word);
 38         result.s.high  = input.s.high >> b;
 39         result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
 
 | 
| ashrti3.c | 27     twords input;  local in function:__ashrti3 29     input.all = a;
 32         /* result.s.high = input.s.high < 0 ? -1 : 0 */
 33         result.s.high = input.s.high >> (bits_in_dword - 1);
 34         result.s.low = input.s.high >> (b - bits_in_dword);
 40         result.s.high  = input.s.high >> b;
 41         result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
 
 | 
| lshrdi3.c | 25     udwords input;  local in function:__lshrdi3 27     input.all = a;
 31         result.s.low = input.s.high >> (b - bits_in_word);
 37         result.s.high  = input.s.high >> b;
 38         result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
 
 | 
| lshrti3.c | 27     utwords input;  local in function:__lshrti3 29     input.all = a;
 33         result.s.low = input.s.high >> (b - bits_in_dword);
 39         result.s.high  = input.s.high >> b;
 40         result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
 
 | 
| /src/sys/arch/i386/stand/lib/ | 
| menuutils.c | 67 	char input[80];  local in function:bootmenu 70 		char *c = input;
 72 		input[0] = '\0';
 74 		kgets(input, sizeof(input));
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/test/Unit/ppc/ | 
| floatditf_test.h | 2 	uint64_t input;  member in struct:testCase [all...]
 | 
| floatunditf_test.h | 2 	uint64_t input;  member in struct:testCase [all...]
 | 
| fixtfdi_test.c | 457 	DD input;  local in function:main 461 		input.hi = testCases[i].xhi;
 462 		input.lo = testCases[i].xlo;
 465 		computed_result = __fixtfdi(input.ld);
 468 			printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ppc/ | 
| floatditf_test.h | 2 	uint64_t input;  member in struct:testCase [all...]
 | 
| floatunditf_test.h | 2 	uint64_t input;  member in struct:testCase [all...]
 | 
| fixtfdi_test.c | 457 	DD input;  local in function:main 461 		input.hi = testCases[i].xhi;
 462 		input.lo = testCases[i].xlo;
 465 		computed_result = __fixtfdi(input.ld);
 468 			printf("Error for __fixtfdi at %La = ( %a , %a ):\n", input.ld, input.hi, input.lo);
 
 | 
| /src/sys/arch/zaurus/stand/zboot/ | 
| bootmenu.c | 49  * doboottypemenu will render the menu and parse any user input 52 getchoicefrominput(char *input, int def)
 56 	if (*input == '\0' || *input == '\r' || *input == '\n')
 58 	else if (*input >= 'A' && *input < bootcfg_info.nummenu + 'A')
 59 		choice = (*input) - 'A';
 60 	else if (*input >= 'a' && *input < bootcfg_info.nummenu + 'a'
 73  char input[80], *ic, *oc;  local in function:doboottypemenu
 [all...]
 | 
| /src/sys/external/bsd/compiler_rt/dist/test/builtins/timing/ | 
| floatdidf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatdisf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatdixf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatundidf.c | 16 	uint64_t input[INPUT_SIZE];  local in function:main 21 	// Initialize the input array with data of various sizes.
 23 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 31 			__floatundidf(input[i]);
 
 | 
| floatundisf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatundixf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| /src/sys/external/bsd/compiler_rt/dist/test/timing/ | 
| floatdidf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatdisf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatdixf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 | 
| floatundidf.c | 16 	uint64_t input[INPUT_SIZE];  local in function:main 21 	// Initialize the input array with data of various sizes.
 23 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 31 			__floatundidf(input[i]);
 
 | 
| floatundisf.c | 19 	INPUT_TYPE input[INPUT_SIZE];  local in function:main 24 	// Initialize the input array with data of various sizes.
 26 		input[i] = (((uint64_t)rand() << 32) | (uint64_t)rand()) >> (rand() & 63);
 34 			FUNCTION_NAME(input[i]);
 
 |