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

123456789

/haiku/src/kits/debugger/value/
H A DValueFormatter.cpp23 ValueFormatter::ValidateFormattedValue(const BString& input, type_code type) argument
31 ValueFormatter::GetValueFromFormattedInput(const BString& input, argument
/haiku/src/tools/fs_shell/
H A Dexternal_commands.h12 bool get_external_command(char* input, int len);
/haiku/src/tests/system/libroot/posix/
H A Dgnulib-test-wcsrtombs.c38 wchar_t input[10]; local
58 ret = mbstowcs (input, original, 10);
63 src = input;
66 assert(src == input);
68 src = input;
71 assert(src == (n <= 7 ? input + n : NULL));
80 input[2] = 0xDEADBEEFul;
81 src = input;
84 assert(src == input + 2);
100 ret = mbstowcs (input, origina
[all...]
H A Dgnulib-test-mbrtowc.c42 /* Test zero-length input. */
43 printf("zero-length input ...\n");
55 /* Test NUL byte input. */
56 printf("NUL byte input ...\n");
69 /* Test single-byte input. */
70 printf("single-byte input ...\n");
132 char input[] = "B\374\337er"; /* "B����er" */ local
141 ret = mbrtowc (&wc, input, 1, &state);
145 input[0] = '\0';
148 ret = mbrtowc (&wc, input
185 char input[] = "B\\303\\274\\303\\237er"; /* "Büßer" */ local
262 char input[] = "<\\306\\374\\313\\334\\270\\354>"; /* "<日本語>" */ local
324 char input[] = "B\\250\\271\\201\\060\\211\\070er"; /* "Büßer" */ local
[all...]
H A Dgnulib-test-wcsnrtombs.c41 wchar_t input[10]; local
67 ret = mbstowcs (input, original, 10);
72 src = input;
75 assert(src == input);
77 src = input;
80 assert(src == (n <= 5 ? input + n : NULL));
103 ret = mbstowcs (input, original, 10);
108 src = input;
111 assert(src == input);
113 src = input;
[all...]
H A Dgnulib-test-mbsnrtowcs.c44 /* Test NUL byte input. */
93 char input[] = "B\374\337er"; /* "B����er" */ local
103 ret = mbrtowc(&wc, input, 1, &state);
107 input[0] = '\0';
110 ret = mbrtowc(&wc, input + 1, 1, &state);
114 input[1] = '\0';
116 src = input + 2;
121 assert(src == input + 2);
124 src = input + 2;
128 assert(src == (unlimited ? NULL : input
145 char input[] = "B\\303\\274\\303\\237er"; /* "Büßer" */ local
202 char input[] = "<\\306\\374\\313\\334\\270\\354>"; /* "<日本語>" */ local
266 char input[] = "B\\250\\271\\201\\060\\211\\070er"; /* "Büßer" */ local
[all...]
H A Dgnulib-test-mbsrtowcs.c42 char input[] = "Buesser"; local
54 ret = mbrtowc(&wc, input, 1, &state);
58 input[0] = '\0';
61 ret = mbrtowc(&wc, input + 1, 1, &state);
65 input[1] = '\0';
67 src = input + 2;
71 assert(src == input + 2);
74 src = input + 2;
99 /* Test NUL byte input. */
144 char input[] local
195 char input[] = "B\\303\\274\\303\\237er"; /* "Büßer" */ local
253 char input[] = "<\\306\\374\\313\\334\\270\\354>"; /* "<日本語>" */ local
312 char input[] = "B\\250\\271\\201\\060\\211\\070er"; /* "Büßer" */ local
[all...]
/haiku/src/add-ons/media/media-add-ons/video_mixer/
H A DVideoMixerNodeConsumer.cpp50 // Cookie 0 is the connecting input, all others are connected inputs
62 // so next time they won't get the same input again
115 media_input *input = GetInput(for_whom); local
117 if (input == NULL) {
123 &input, BTimedEventQueue::B_NO_CLEANUP, status, 0, NULL);
138 media_input *input = GetInput(for_whom); local
140 if (input == NULL) {
164 media_input *input = CreateInput(fConnectedInputs.size()); local
165 fConnectedInputs.push_back(input);
176 input
196 media_input *input = GetInput(where); local
225 media_input *input = GetInput(producer); local
[all...]
/haiku/src/bin/keymap/
H A Dmain.cpp29 printf("usage: %s {-o <output-file>} [-[l|r] | -[b|h|c|d <input-file>]]\n"
35 " -l, --load Load key map. If no input-file is specified, it "
37 " read from standard input.\n"
38 " -s, --load-source Load source key map from standard input when no\n"
39 " input-file is specified.\n"
87 const char* input = NULL; local
121 input = optarg;
126 input = optarg;
130 input = optarg;
137 input
[all...]
/haiku/src/bin/
H A Dmessage.cpp22 BFile input(argv[1], B_READ_ONLY);
23 if (!input.IsReadable()) {
30 if ((result = input.GetSize(&fileSize)) != B_OK) {
37 for (int i = 1; input.Position() < fileSize; ++i) {
39 result = message.Unflatten(&input);
/haiku/src/system/libnetwork/netresolv/net/
H A Dbase64.c89 The encoding process represents 24-bit groups of input bits as output
91 24-bit input group is formed by concatenating 3 8-bit input groups.
122 always completed at the end of a quantity. When fewer than 24 input
123 bits are available in an input group, zero bits are added (on the
127 Since all base64 input is an integral number of octets, only the
131 (1) the final quantum of encoding input is an integral
135 (2) the final quantum of encoding input is exactly 8 bits;
138 (3) the final quantum of encoding input is exactly 16 bits;
146 u_char input[ local
[all...]
/haiku/src/kits/debugger/value/value_formatters/
H A DFloatValueFormatter.cpp65 FloatValueFormatter::ValidateFormattedValue(const BString& input, argument
69 return _PerformValidation(input, type, value, false) == B_OK;
74 FloatValueFormatter::GetValueFromFormattedInput(const BString& input, argument
77 return _PerformValidation(input, type, _output, true);
82 FloatValueFormatter::_PerformValidation(const BString& input, type_code type, argument
85 const char* text = input.String();
88 if (parseEnd - text < input.Length() && !isspace(*parseEnd))
H A DIntegerValueFormatter.cpp73 IntegerValueFormatter::ValidateFormattedValue(const BString& input, argument
77 return _PerformValidation(input, type, value, false) == B_OK;
82 IntegerValueFormatter::GetValueFromFormattedInput(const BString& input, argument
85 return _PerformValidation(input, type, _output, true);
90 IntegerValueFormatter::_PerformValidation(const BString& input, type_code type, argument
108 error = _ValidateUnsigned(input, type, _output, format, wantsValue);
110 error = _ValidateSigned(input, type, _output, wantsValue);
117 IntegerValueFormatter::_ValidateSigned(const BString& input, type_code type, argument
120 const char* text = input.String();
123 if (parseEnd - text < input
172 _ValidateUnsigned(const BString& input, type_code type, ::Value*& _output, integer_format format, bool wantsValue) const argument
[all...]
/haiku/src/kits/media/experimental/
H A DMediaClientDefs.cpp66 media_input input; local
67 input.node = client.node;
68 input.source = source;
69 input.destination = destination;
70 input.format = format;
71 strcpy(input.name, name);
72 return input;
/haiku/headers/private/debugger/value/value_formatters/
H A DFloatValueFormatter.h29 const BString& input,
33 const BString& input, type_code type,
37 status_t _PerformValidation(const BString& input,
H A DIntegerValueFormatter.h35 const BString& input,
39 const BString& input, type_code type,
43 status_t _PerformValidation(const BString& input,
47 status_t _ValidateSigned(const BString& input,
51 status_t _ValidateUnsigned(const BString& input,
/haiku/src/libs/bsd/
H A Dchacha_private.h14 u32 input[16]; /* could be compressed */ member in struct:__anon10
59 x->input[4] = U8TO32_LITTLE(k + 0);
60 x->input[5] = U8TO32_LITTLE(k + 4);
61 x->input[6] = U8TO32_LITTLE(k + 8);
62 x->input[7] = U8TO32_LITTLE(k + 12);
69 x->input[8] = U8TO32_LITTLE(k + 0);
70 x->input[9] = U8TO32_LITTLE(k + 4);
71 x->input[10] = U8TO32_LITTLE(k + 8);
72 x->input[11] = U8TO32_LITTLE(k + 12);
73 x->input[
[all...]
/haiku/src/system/kernel/debug/
H A Dgdb.cpp43 parse_nibble(int input) argument
47 if (input >= '0' && input <= '9')
48 nibble = input - '0';
50 if (input >= 'A' && input <= 'F')
51 nibble = 0x0a + input - 'A';
53 if (input >= 'a' && input <= 'f')
54 nibble = 0x0a + input
327 gdb_init_handler(int input) argument
350 gdb_cmdread_handler(int input) argument
365 gdb_cksum1_handler(int input) argument
388 gdb_cksum2_handler(int input) argument
411 gdb_waitack_handler(int input) argument
430 gdb_quit_handler(int input) argument
450 gdb_state_dispatch(int curr, int input) argument
[all...]
/haiku/src/tests/kits/shared/
H A DJsonErrorHandlingTest.h36 const char* input, int32 line,
40 const char* input, int32 line,
44 const char* input,
49 const char* input, int32 line,
H A DJsonEndToEndTest.h43 void TestUnterminated(const char* input);
45 void TestParseAndWrite(const char* input,
/haiku/src/add-ons/media/media-add-ons/writer/
H A DMediaWriter.cpp7 // It consumes on input, which is a multistream,
64 strncpy(input.name,"MediaWriter Input",B_MEDIA_NAME_LENGTH-1);
65 input.name[B_MEDIA_NAME_LENGTH-1] = '\0';
66 // initialize the input
67 input.node = media_node::null; // until registration
68 input.source = media_source::null;
69 input.destination = media_destination::null; // until registration
70 GetFormat(&input.format);
109 input.node = Node();
110 input
[all...]
/haiku/headers/private/debugger/value/
H A DValueFormatter.h28 const BString& input,
36 const BString& input, type_code type,
/haiku/headers/os/locale/
H A DTextEncoding.h32 status_t Encode(const char* input, size_t& inputLength,
34 status_t Decode(const char* input, size_t& inputLength,
/haiku/src/tests/apps/haikudepot/
H A DStorageUtilsTest.cpp28 const BString input = "/paved/path.tea"; local
31 BString output = StorageUtils::SwapExtensionOnPathComponent(input, "chai");
/haiku/src/apps/tv/
H A DController.cpp38 status_t MediaRoster_Disconnect(const media_output &output, const media_input &input);
283 media_input input; local
295 err = gMediaRoster->GetFreeInputsFor(audio_mixer_node, &input, 1, &count, B_MEDIA_RAW_AUDIO);
296 HandleError("Can't find free audio input", err);
298 HandleError("No free audio input", -1);
300 err = gMediaRoster->Connect(output.source, input.destination, &fmt, &audio_output, &audio_input);
310 err = gMediaRoster->GetFreeInputsFor(video_window_node, &input, 1, &count, B_MEDIA_RAW_VIDEO);
311 HandleError("Can't find free video input", err);
313 HandleError("No free video input", -1);
327 err = gMediaRoster->Connect(output.source, input
450 MediaRoster_Disconnect(const media_output &output, const media_input &input) argument
[all...]

Completed in 205 milliseconds

123456789