HomeSort by: relevance | last modified time | path
    Searched defs:input (Results 1 - 25 of 104) sorted by relevancy

1 2 3 4 5

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
ashldi3.c 25 dwords input; local
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
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
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
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
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
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
70 char *c = input;
72 input[0] = '\0';
74 kgets(input, sizeof(input));
bootmenu.c 79 * doboottypemenu will render the menu and parse any user input
82 getchoicefrominput(char *input, int def)
89 if (*input == '\0' || *input == '\r' || *input == '\n') {
92 } else if (*input >= 'A' && *input < bootcfg_info.nummenu + 'A')
93 choice = (*input) - 'A';
94 else if (*input >= 'a' && *input < bootcfg_info.nummenu + 'a'
112 char input[80], *ic, *oc; local
141 char input[80]; local
    [all...]
  /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
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
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
    [all...]
  /src/lib/libc/net/
base64.c 88 The encoding process represents 24-bit groups of input bits as output
90 24-bit input group is formed by concatenating 3 8-bit input groups.
121 always completed at the end of a quantity. When fewer than 24 input
122 bits are available in an input group, zero bits are added (on the
126 Since all base64 input is an integral number of octets, only the
130 (1) the final quantum of encoding input is an integral
134 (2) the final quantum of encoding input is exactly 8 bits;
137 (3) the final quantum of encoding input is exactly 16 bits;
145 u_char input[3] local
    [all...]
  /src/sys/dev/pci/ixgbe/
if_fdir.c 94 union ixgbe_atr_hash_dword input = {.dword = 0}; local
122 input.formatted.flow_type ^= IXGBE_ATR_FLOW_TYPE_TCPV4;
129 input.formatted.flow_type ^= IXGBE_ATR_FLOW_TYPE_UDPV4;
135 input.formatted.vlan_id = htobe16(mp->m_pkthdr.ether_vtag);
148 input, common, que->msix);
  /src/sys/external/bsd/compiler_rt/dist/test/builtins/timing/
floatdidf.c 19 INPUT_TYPE input[INPUT_SIZE]; local
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
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
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
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
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
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
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
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]);

Completed in 140 milliseconds

1 2 3 4 5