Searched refs:input (Results 1 - 25 of 70) sorted by relevance

123

/seL4-camkes-master/projects/camkes/apps/dhcp/src/
H A Dutil.c16 /* Consume bytes from the input string until we've exhausted it and then
34 void mac_to_string(uint64_t input, char *output) { argument
36 (unsigned int)(input & 0xff), (unsigned int)((input >> 8) & 0xff),
37 (unsigned int)((input >> 16) & 0xff),
38 (unsigned int)((input >> 24) & 0xff),
39 (unsigned int)((input >> 32) & 0xff),
40 (unsigned int)((input >> 40) & 0xff));
43 void ip_to_string(uint32_t input, char *output) { argument
44 sprintf(output, "%u.%u.%u.%u", input >> 2
[all...]
H A Dutil.h19 /* Convert a 48-bit MAC address stored in the 'input' into a pretty-printed
22 void mac_to_string(uint64_t input, char *output);
27 /* Convert a 32-bit IP address stored in the 'input' into a pretty-printed
30 void ip_to_string(uint32_t input, char *output);
/seL4-camkes-master/projects/camkes/apps/exchangestring/components/Server/src/
H A Dmain.c14 char *a_exchange(const char *input, char **output, char **joint) argument
21 printf("Server input: %s\n", input);
27 strcpy(*joint, input);
28 strcpy(*joint + strlen(input), reply);
/seL4-camkes-master/projects/camkes/apps/aeroplage/components/MockLinux/
H A Dmocklinux.c18 ringbuffer_t *input = rb_new((void*)keyboard_input, sizeof(*keyboard_input)); local
19 if (input == NULL) {
32 char c = (char)rb_receive_byte(input);
/seL4-camkes-master/projects/picotcp/docs/user_manual/
H A Duser_doc.tex9 \input{layout1}
73 %\input{chap_intro}
77 \input{chap_overview}
83 \input{chap_api_ipv4}
84 \input{chap_api_ipv6}
85 \input{chap_api_sock}
86 \input{chap_api_dhcp_c}
87 \input{chap_api_dhcp_d}
88 \input{chap_api_dns_c}
89 \input{chap_api_mdn
[all...]
/seL4-camkes-master/projects/musllibc/tools/
H A Dmusl-clang.in8 # prevent clang from running the linker (and erroring) on no input.
13 -l*) input=1 ;;
14 *) input= ;;
16 if test "$input" ; then
/seL4-camkes-master/projects/camkes/apps/exchangestring/components/Client/src/
H A Dclient.c17 const char *input = "This is a client string."; local
20 strncpy(joint, input, 25);
23 ret = a_exchange(input, &output, &joint);
/seL4-camkes-master/projects/lwip/src/include/netif/ppp/polarssl/
H A Dmd4.h68 * \param input buffer holding the data
69 * \param ilen length of the input data
71 void md4_update( md4_context *ctx, const unsigned char *input, int ilen );
82 * \brief Output = MD4( input buffer )
84 * \param input buffer holding the data
85 * \param ilen length of the input data
88 void md4( unsigned char *input, int ilen, unsigned char output[16] );
H A Dmd5.h68 * \param input buffer holding the data
69 * \param ilen length of the input data
71 void md5_update( md5_context *ctx, const unsigned char *input, int ilen );
82 * \brief Output = MD5( input buffer )
84 * \param input buffer holding the data
85 * \param ilen length of the input data
88 void md5( unsigned char *input, int ilen, unsigned char output[16] );
H A Dsha1.h68 * \param input buffer holding the data
69 * \param ilen length of the input data
71 void sha1_update( sha1_context *ctx, const unsigned char *input, int ilen );
82 * \brief Output = SHA-1( input buffer )
84 * \param input buffer holding the data
85 * \param ilen length of the input data
88 void sha1( unsigned char *input, int ilen, unsigned char output[20] );
H A Ddes.h79 * \param input 64-bit input block
83 const unsigned char input[8],
/seL4-camkes-master/projects/projects_libs/libmsgpack/msgpack-c/test/
H A Dstreaming.cpp14 const char* input = buffer.data(); local
15 const char* const eof = input + buffer.size();
27 memcpy(pac.buffer(), input, len);
28 input += len;
47 EXPECT_TRUE(input < eof);
60 const char* input = buffer.data();
61 const char* const eof = input + buffer.size();
73 memcpy(pac.buffer(), input, len);
74 input += len;
93 EXPECT_TRUE(input < eo
[all...]
H A Dstreaming_c.cpp32 const char* input = buffer->data; local
33 const char* const eof = input + buffer->size;
50 memcpy(msgpack_unpacker_buffer(&pac), input, 1); local
51 input += 1;
53 EXPECT_TRUE(input <= eof);
/seL4-camkes-master/projects/lwip/src/netif/ppp/
H A Dpppcrypt.c41 static u_char pppcrypt_get_7bits(u_char *input, int startBit) { argument
44 word = (unsigned)input[startBit / 8] << 8;
45 word |= (unsigned)input[startBit / 8 + 1];
/seL4-camkes-master/projects/camkes/apps/aeroplage/components/Switch/
H A Dswitch.c37 ringbuffer_t *input = rb_new((void*)char_in, sizeof(*char_in)); local
38 if (input == NULL) {
43 char c = (char)rb_receive_byte(input);
/seL4-camkes-master/projects/util_libs/libplatsupport/src/plat/pc99/acpi/
H A Dbrowser.c40 char input; local
183 // collect input and act
186 input = getchar();
188 if (input >= 'a' && input <= 'z') {
189 // input steps into another table
190 if (vector[input - 'a'] != NULL) {
192 next_tbl = vector[input - 'a'] + offset;
196 input = 'p';
201 switch (input) {
260 char input = getchar(); local
[all...]
/seL4-camkes-master/kernel/manual/
H A Dmanual.tex83 \newcommand{\version}{\input{VERSION}}
86 \input{env}
137 \input{parts/intro}
140 \input{parts/objects}
141 \input{parts/cspace}
142 \input{parts/ipc}
143 \input{parts/notifications}
144 \input{parts/threads}
145 \input{parts/vspace}
146 \input{part
[all...]
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/test/suites/invalid-unicode/
H A Drun13 $json_process --env <$test_path/input >$test_log/stdout 2>$test_log/stderr
/seL4-camkes-master/projects/camkes-tool/camkes/parser/tests/
H A Dteststage2.py163 input = self.mkstemp()
165 with open(input, 'wt') as f:
169 ''' % input)
171 content, read = self.parser.parse_file(input)
177 self.assertEqual(read, set([input]))
179 content, read = self.cpp_parser.parse_file(input)
185 self.assertIn(input, read)
/seL4-camkes-master/projects/lwip/doc/
H A DZeroCopyRx.c42 if(netif->input(p, netif) != ERR_OK) {
/seL4-camkes-master/projects/lwip/src/netif/ppp/polarssl/
H A Dmd4.c192 void md4_update( md4_context *ctx, const unsigned char *input, int ilen ) argument
212 input, fill );
214 input += fill;
221 md4_process( ctx, input );
222 input += 64;
229 input, ilen );
270 * output = MD4( input buffer )
272 void md4( unsigned char *input, int ilen, unsigned char output[16] ) argument
277 md4_update( &ctx, input, ilen );
H A Dmd5.c211 void md5_update( md5_context *ctx, const unsigned char *input, int ilen ) argument
231 input, fill );
233 input += fill;
240 md5_process( ctx, input );
241 input += 64;
248 input, ilen );
289 * output = MD5( input buffer )
291 void md5( unsigned char *input, int ilen, unsigned char output[16] ) argument
296 md5_update( &ctx, input, ilen );
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/test/suites/invalid/
H A Drun24 <$test_path/input >$test_log/stdout$s 2>$test_log/stderr$s
/seL4-camkes-master/projects/projects_libs/libjansson/jansson-2.7/test/suites/valid/
H A Drun23 <$test_path/input >$test_log/stdout$s 2>$test_log/stderr$s
/seL4-camkes-master/projects/camkes-tool/tools/
H A Dmake_isabelle_symbols.py19 The expected parameter to the --input command line argument is the 'symbols'
54 parser.add_argument('--input', '-i', type=argparse.FileType('r'),
66 for number, line in enumerate(x.strip() for x in options.input):

Completed in 139 milliseconds

123