Searched defs:output (Results 1 - 9 of 9) sorted by path

/bionic/libc/dns/net/
H A Dbase64.c82 The encoding process represents 24-bit groups of input bits as output
90 output string.
126 output will be an integral multiple of 4 characters
129 here, the final unit of encoded output will be two
132 here, the final unit of encoded output will be three
145 u_char output[4]; local
157 output[0] = (u_int32_t)input[0] >> 2;
158 output[1] = ((u_int32_t)(input[0] & 0x03) << 4) +
160 output[2] = ((u_int32_t)(input[1] & 0x0f) << 2) +
162 output[
[all...]
/bionic/libc/dns/resolv/
H A Dres_debug.c1163 static char output[15]; /* YYYYMMDDHHMMSS and null */ local
1175 snprintf(output, sizeof(output), "%04d%02d%02d%02d%02d%02d",
1178 return (output);
/bionic/libc/kernel/uapi/linux/dvb/
H A Ddmx.h96 dmx_output_t output; member in struct:dmx_pes_filter_params
/bionic/libc/kernel/uapi/linux/
H A Dmatroxfb.h27 __u32 output; member in struct:matroxioc_output_mode
H A Duhid.h172 struct uhid_output_req output; member in union:uhid_event::__anon857
H A Dvideodev2.h1371 struct v4l2_outputparm output; member in union:v4l2_streamparm::__anon894
/bionic/libc/upstream-netbsd/lib/libc/isc/
H A Deventlib_p.h220 FILE *output; member in struct:__anon1039
/bionic/linker/tests/
H A Dlinker_utils_test.cpp26 std::string output; local
27 ASSERT_TRUE(normalize_path("/../root///dir/.///dir2/somedir/../zipfile!/dir/dir9//..///afile", &output));
28 ASSERT_EQ("/root/dir/dir2/zipfile!/dir/afile", output);
30 ASSERT_TRUE(normalize_path("/../root///dir/.///dir2/somedir/.../zipfile!/.dir/dir9//..///afile", &output));
31 ASSERT_EQ("/root/dir/dir2/somedir/.../zipfile!/.dir/afile", output);
33 ASSERT_TRUE(normalize_path("/root/..", &output));
34 ASSERT_EQ("/", output);
36 ASSERT_TRUE(normalize_path("/root/notroot/..", &output));
37 ASSERT_EQ("/root/", output);
39 ASSERT_TRUE(normalize_path("/a/../../b", &output));
[all...]
/bionic/tests/
H A Dgtest_main.cpp312 // bionic cts test needs gtest output format.
1026 options.gtest_output = testing::GTEST_FLAG(output);
1072 std::string output = args[i] + strlen("--gtest_output="); local
1073 // generate output xml file path according to the strategy in gtest.
1075 if (strncmp(output.c_str(), "xml:", strlen("xml:")) == 0) {
1076 output = output.substr(strlen("xml:"));
1077 if (output.size() == 0) {
1081 if (success && output[0] != '/') {
1084 output
[all...]

Completed in 277 milliseconds