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

1 2 3 4 5 6 7 8 91011>>

  /src/external/apache2/llvm/dist/llvm/lib/Support/
VersionTuple.cpp 41 static bool parseInt(StringRef &input, unsigned &value) {
43 if (input.empty())
46 char next = input[0];
47 input = input.substr(1);
52 while (!input.empty()) {
53 next = input[0];
56 input = input.substr(1);
63 bool VersionTuple::tryParse(StringRef input) {
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/clang-fuzzer/
ExampleClangLLVMProtoFuzzer.cpp 11 /// input and uses libprotobuf-mutator to find new inputs. This function is
24 DEFINE_BINARY_PROTO_FUZZER(const LoopFunction &input) {
25 auto S = LoopFunctionToLLVMString(input);
ExampleClangLoopProtoFuzzer.cpp 11 /// input and uses libprotobuf-mutator to find new inputs. This function is
26 DEFINE_BINARY_PROTO_FUZZER(const LoopFunction &input) {
27 auto S = LoopFunctionToString(input);
ExampleClangProtoFuzzer.cpp 11 /// input and uses libprotobuf-mutator to find new inputs. This function is
24 DEFINE_BINARY_PROTO_FUZZER(const Function& input) {
25 auto S = FunctionToString(input);
  /src/sbin/mount/
pathadj.c 37 pathadj(const char *input, char *adjusted)
40 if (realpath(input, adjusted) == NULL)
41 err(EXIT_FAILURE, "realpath '%s' failed", input);
43 if (input[0] != '/') {
44 warnx("\"%s\" is a relative path.", input);
  /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/external/bsd/mdocml/dist/
test-strptime.c 7 const char input[] = "2014-01-04"; local
8 return ! (strptime(input, "%Y-%m-%d", &tm) == input + 10 &&
  /src/external/gpl3/gdb.old/dist/gdb/features/
feature_to_c.sh 39 for input; do
40 arrayname=xml_feature_$(echo "$input" | sed 's,.*/,,; s/[-.]/_/g')
45 < "$input" \
53 for input; do
54 basename=$(echo "$input" | sed 's,.*/,,')
55 arrayname=xml_feature_$(echo "$input" | sed 's,.*/,,; s/[-.]/_/g')
  /src/external/gpl3/gdb/dist/gdb/features/
feature_to_c.sh 39 for input; do
40 arrayname=xml_feature_$(echo "$input" | sed 's,.*/,,; s/[-.]/_/g')
45 < "$input" \
53 for input; do
54 basename=$(echo "$input" | sed 's,.*/,,')
55 arrayname=xml_feature_$(echo "$input" | sed 's,.*/,,; s/[-.]/_/g')
  /src/external/gpl3/gdb/dist/readline/readline/examples/
rlbasic.c 21 char *input; local
28 input = readline ((char *)NULL);
29 if (input == 0)
31 printf ("%s\n", input);
32 if (strcmp (input, "exit") == 0)
34 free (input);
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
rlbasic.c 21 char *input; local
28 input = readline ((char *)NULL);
29 if (input == 0)
31 printf ("%s\n", input);
32 if (strcmp (input, "exit") == 0)
34 free (input);
  /src/sys/arch/evbppc/compile/
walnut-mkimg.sh 4 # Convert an input to a TFTP image loadable by the IBM PowerPC OpenBIOS.
12 echo usage: $0 input image 1>&2
16 input=$1; shift
25 file=$( ${FILE} $input )
28 start=`${OBJDUMP} -f ${input} | ${AWK} '/start address/ { print $NF }'`
30 ${OBJCOPY} -O binary ${input} ${input}.bin.$$
38 cp ${input} ${input}.bin.$$
42 size=$(${STAT} -f '%z' ${input}.bin.$$
    [all...]
  /src/external/bsd/zstd/dist/tests/gzip/
unpack-invalid.sh 2 # gzip should report invalid 'unpack' input when uncompressing.
23 for input in \
27 printf "$input" >in || framework_failure_
  /src/external/apache2/llvm/dist/llvm/utils/
DSAclean.py 20 input = open(sys.argv[1], 'r') variable
24 buffer = input.readline()
28 buffer = input.readline()
33 buffer = input.readline()
34 input.close()
  /src/sys/stand/efiboot/
bootmenu.c 78 * doboottypemenu will render the menu and parse any user input
81 getchoicefrominput(char *input, int def)
88 if (*input == '\0' || *input == '\r' || *input == '\n') {
91 } else if (*input >= 'A' && *input < bootcfg_info.nummenu + 'A')
92 choice = (*input) - 'A';
93 else if (*input >= 'a' && *input < bootcfg_info.nummenu + 'a'
111 char input[80], *ic, *oc; local
140 char input[80]; local
    [all...]
  /src/external/bsd/nsd/dist/compat/
b64_ntop.c 71 The encoding process represents 24-bit groups of input bits as output
73 24-bit input group is formed by concatenating 3 8-bit input groups.
104 always completed at the end of a quantity. When fewer than 24 input
105 bits are available in an input group, zero bits are added (on the
109 Since all base64 input is an integral number of octets, only the
113 (1) the final quantum of encoding input is an integral
117 (2) the final quantum of encoding input is exactly 8 bits;
120 (3) the final quantum of encoding input is exactly 16 bits;
128 uint8_t input[3] local
    [all...]
  /src/external/bsd/ntp/dist/tests/libntp/
calyearstart.c 30 const u_int32 input = 3486372600UL; // 2010-06-24 12:50:00. local
33 TEST_ASSERT_EQUAL(expected, calyearstart(input, &nowtime));
34 TEST_ASSERT_EQUAL(expected, calyearstart(input, NULL));
38 const u_int32 input = 3549528000UL; // 2012-06-24 12:00:00 local
41 TEST_ASSERT_EQUAL(expected, calyearstart(input, &nowtime));
42 TEST_ASSERT_EQUAL(expected, calyearstart(input, NULL));
46 const u_int32 input = 19904UL; // 2036-02-07 12:00:00 local
49 TEST_ASSERT_EQUAL(expected, calyearstart(input, &nowtime));
50 TEST_ASSERT_EQUAL(expected, calyearstart(input, NULL));
caltontp.c 15 struct calendar input = {2010, 0, 6, 24, 12, 50, 0}; local
19 TEST_ASSERT_EQUAL_UINT(expected, caltontp(&input));
26 struct calendar input = {2010, 175, 0, 0, 12, 50, 0}; local
30 TEST_ASSERT_EQUAL_UINT(expected, caltontp(&input));
50 struct calendar input = {2036, 0, 2, 7, 6, 28, 16}; local
54 TEST_ASSERT_EQUAL_UINT(expected, caltontp(&input));
  /src/tests/usr.bin/xlint/xlint/
t_xlint.sh 33 cat <<-EOF >input.c || atf_fail 'prepare input.c'
42 echo 'previous content' > input.ln
45 input.c(5): warning: missing header declaration for 'return_true' [351]
46 input.c(6): error: function has return type '_Bool' but returns 'int' [211]
52 "$lint" -aabceghiprSTxz input.c
58 test -f input.ln
65 cat <<-EOF >input.c || atf_fail 'prepare input.c'
74 cat <<-EOF >input.exp || atf_fail 'prepare input.exp
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
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));
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/external/bsd/drm2/dist/drm/amd/display/modules/hdcp/
amdgpu_hdcp1_transition.c 35 struct mod_hdcp_transition_input_hdcp1 *input,
44 if (input->bksv_read != PASS || input->bcaps_read != PASS) {
54 if (input->add_topology != PASS ||
55 input->create_session != PASS) {
60 } else if (input->an_write != PASS ||
61 input->aksv_write != PASS ||
62 input->bksv_read != PASS ||
63 input->bksv_validation != PASS ||
64 input->ainfo_write == FAIL)
    [all...]
  /src/tests/usr.bin/unifdef/
t_basic.sh 51 printf '#ifdef foo\n#endif\n' >input
52 atf_check -o file:input unifdef -Ubar input
55 printf '#ifdef foo\n#endif' >input
56 atf_check -o file:input unifdef -Ubar input
  /src/external/bsd/byacc/dist/test/
run_make.sh 46 for input in ${REF_DIR}/*.c
48 case $input in #(vi
55 test -f "$input" || continue
57 run_make "$input"
60 case $input in #(vi
68 run_make "$input" DEFINES="$DEFS"
75 for input in ${TEST_DIR}/*.y
77 test -f "$input" || continue
78 case $input in
98 echo "... testing $input"
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/
stream_test.cpp 39 std::istringstream input("");
40 ATF_REQUIRE_EQ(0, utils::stream_length(input));
48 std::istringstream input(contents);
51 static_cast< std::string::size_type >(utils::stream_length(input)));
58 std::istringstream input("");
59 ATF_REQUIRE_EQ("", utils::read_stream(input));
69 std::istringstream input(contents);
70 ATF_REQUIRE_EQ(contents, utils::read_stream(input));

Completed in 31 milliseconds

1 2 3 4 5 6 7 8 91011>>