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

1234567891011>>

/haiku-fatelf/src/bin/gdb/
H A Dylwrap23 # * INPUT is the input file
38 # The input.
39 input="$1"
41 case "$input" in
49 input="`pwd`/$input"
53 # We don't want to use the absolute path if the input in the current
55 input_base=`echo $input | sed -e 's|.*/||'`
56 if test -f $input_base && cmp $input_base $input >/dev/null 2>&1; then
57 input
[all...]
/haiku-fatelf/src/add-ons/kernel/debugger/qrencode/
H A Dsplit.h34 * Split the input string (null terminated) into QRinput.
35 * @param string input string
36 * @param hint give QR_MODE_KANJI if the input string contains Kanji character encoded in Shift-JIS. If not, give QR_MODE_8.
41 * @throw EINVAL invalid input object.
42 * @throw ENOMEM unable to allocate memory for input objects.
44 extern int Split_splitStringToQRinput(const char *string, QRinput *input,
H A Dqrencode.h36 * If the input data contains Kanji (Shift-JIS) characters and you want to
45 * \subsection encoding-input Encoding a structured data
46 * You can construct a structured input data manually. If the structure of the
47 * input data is known, you can use this way.
48 * At first, create a ::QRinput object by QRinput_new(). Then add input data
60 * In such cases, the input data would be too large to be encoded in a
88 * structured input. At first, instantiate an object of ::QRinput_Struct
147 * Singly linked list to contain input strings. An instance of this class
155 * Instantiate an input data object. The version is set to 0 (auto-select)
157 * @return an input objec
[all...]
H A Dsplit.c78 static int Split_eatNum(const char *string, QRinput *input, QRencodeMode hint);
79 static int Split_eatAn(const char *string, QRinput *input, QRencodeMode hint);
80 static int Split_eat8(const char *string, QRinput *input, QRencodeMode hint);
81 static int Split_eatKanji(const char *string, QRinput *input, QRencodeMode hint);
83 static int Split_eatNum(const char *string, QRinput *input,QRencodeMode hint) argument
92 ln = QRspec_lengthIndicator(QR_MODE_NUM, input->version);
105 return Split_eat8(string, input, hint);
113 return Split_eatAn(string, input, hint);
117 ret = QRinput_append(input, QR_MODE_NUM, run, (unsigned char *)string);
123 static int Split_eatAn(const char *string, QRinput *input, QRencodeMod argument
171 Split_eatKanji(const char *string, QRinput *input, QRencodeMode hint) argument
188 Split_eat8(const char *string, QRinput *input, QRencodeMode hint) argument
244 Split_splitString(const char *string, QRinput *input, QRencodeMode hint) argument
291 Split_splitStringToQRinput(const char *string, QRinput *input, QRencodeMode hint, int casesensitive) argument
[all...]
H A Dqrinput.c45 * Entry of input data
117 QRinput *input; local
124 input = (QRinput *)malloc(sizeof(QRinput));
125 if(input == NULL) return NULL;
127 input->head = NULL;
128 input->tail = NULL;
129 input->version = version;
130 input->level = level;
131 input->mqr = 0;
132 input
139 QRinput *input; local
156 QRinput_getVersion(QRinput *input) argument
161 QRinput_setVersion(QRinput *input, int version) argument
173 QRinput_getErrorCorrectionLevel(QRinput *input) argument
178 QRinput_setErrorCorrectionLevel(QRinput *input, QRecLevel level) argument
190 QRinput_setVersionAndErrorCorrectionLevel(QRinput *input, int version, QRecLevel level) argument
210 QRinput_appendEntry(QRinput *input, QRinput_List *entry) argument
222 QRinput_append(QRinput *input, QRencodeMode mode, int size, const unsigned char *data) argument
247 QRinput_insertStructuredAppendHeader(QRinput *input, int size, int index, unsigned char parity) argument
275 QRinput_appendECIheader(QRinput *input, unsigned int ecinum) argument
293 QRinput_free(QRinput *input) argument
308 QRinput_calcParity(QRinput *input) argument
327 QRinput_dup(QRinput *input) argument
959 QRinput_estimateBitStreamSize(QRinput *input, int version) argument
978 QRinput_estimateVersion(QRinput *input) argument
1127 QRinput_createBitStream(QRinput *input) argument
1154 QRinput_convertData(QRinput *input) argument
1191 QRinput_appendPaddingBit(BitStream *bstream, QRinput *input) argument
1256 QRinput_appendPaddingBitMQR(BitStream *bstream, QRinput *input) argument
1325 QRinput_insertFNC1Header(QRinput *input) argument
1355 QRinput_mergeBitStream(QRinput *input) argument
1398 QRinput_getBitStream(QRinput *input) argument
1426 QRinput_getByteStream(QRinput *input) argument
1445 QRinput_InputList_newEntry(QRinput *input) argument
1486 QRinput_Struct_appendInput(QRinput_Struct *s, QRinput *input) argument
1578 QRinput_splitQRinputToStruct(QRinput *input) argument
1703 QRinput_setFNC1First(QRinput *input) argument
1714 QRinput_setFNC1Second(QRinput *input, unsigned char appid) argument
[all...]
H A Dqrinput.h31 * Entry of input data
57 * Structured append input data
62 QRinput *input; member in struct:_QRinput_InputList
75 * @param input input data.
78 extern unsigned char *QRinput_getByteStream(QRinput *input);
86 extern QRinput *QRinput_dup(QRinput *input);
115 extern BitStream *QRinput_mergeBitStream(QRinput *input);
116 extern BitStream *QRinput_getBitStream(QRinput *input);
117 extern int QRinput_estimateBitStreamSize(QRinput *input, in
[all...]
H A Dqrencode_inner.h52 extern QRRawCode *QRraw_new(QRinput *input);
71 extern MQRRawCode *MQRraw_new(QRinput *input);
84 extern QRcode *QRcode_encodeMask(QRinput *input, int mask);
85 extern QRcode *QRcode_encodeMaskMQR(QRinput *input, int mask);
/haiku-fatelf/src/tools/fs_shell/
H A Dexternal_commands.h12 bool get_external_command(char* input, int len);
/haiku-fatelf/src/bin/gdb/libiberty/
H A Dxmemdup.c7 @deftypefn Replacement void* xmemdup (void *@var{input}, size_t @var{copy_size}, size_t @var{alloc_size})
10 are allocated, then @var{copy_size} bytes from @var{input} are copied into
30 xmemdup (input, copy_size, alloc_size)
31 const PTR input;
36 memcpy (output, input, copy_size);
/haiku-fatelf/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-fatelf/src/tests/add-ons/kernel/file_systems/fs_shell/
H A Dexternal_commands.h12 char *get_external_command(const char *prompt, char *input, int len);
/haiku-fatelf/src/bin/findutils/find/
H A Dtree.c34 static struct predicate *scan_rest PARAMS((struct predicate **input,
42 Set *INPUT to point at the next input predicate node.
60 get_expr (struct predicate **input, short int prev_prec) argument
64 if (*input == NULL)
67 switch ((*input)->p_type)
82 next = *input;
83 *input = (*input)->pred_next;
87 next = *input;
88 *input
136 scan_rest(struct predicate **input, struct predicate *head, short int prev_prec) argument
[all...]
/haiku-fatelf/src/add-ons/media/media-add-ons/video_mixer/
H A DVideoMixerNodeConsumer.cpp48 // Cookie 0 is the connecting input, all others are connected inputs
60 // so next time they won't get the same input again
113 media_input *input = GetInput(for_whom); local
115 if (input == NULL) {
121 &input, BTimedEventQueue::B_NO_CLEANUP, status, 0, NULL);
136 media_input *input = GetInput(for_whom); local
138 if (input == NULL) {
162 media_input *input = CreateInput(fConnectedInputs.size()); local
163 fConnectedInputs.push_back(input);
174 input
194 media_input *input = GetInput(where); local
223 media_input *input = GetInput(producer); local
[all...]
/haiku-fatelf/src/bin/coreutils/man/
H A Dfold.x2 fold \- wrap each input line to fit in specified width
H A Dtee.x2 tee \- read from standard input and write to standard output and files
H A Dtty.x2 tty \- print the file name of the terminal connected to standard input
/haiku-fatelf/src/bin/gawk/
H A Dylwrap30 # * INPUT is the input file
37 # The input.
38 input="$1"
40 case "$input" in
46 input="`pwd`/$input"
78 0) $prog "$input" ;;
79 *) $prog "$@" "$input" ;;
95 # The directory holding the input.
96 input_dir=`echo "$input" | se
[all...]
/haiku-fatelf/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-fatelf/src/kits/network/libbind/isc/
H A Dbase64.c80 The encoding process represents 24-bit groups of input bits as output
82 24-bit input group is formed by concatenating 3 8-bit input groups.
113 always completed at the end of a quantity. When fewer than 24 input
114 bits are available in an input group, zero bits are added (on the
118 Since all base64 input is an integral number of octets, only the
122 (1) the final quantum of encoding input is an integral
126 (2) the final quantum of encoding input is exactly 8 bits;
129 (3) the final quantum of encoding input is exactly 16 bits;
137 u_char input[ local
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A DparserInternals.c237 /* we need to keep enough input to show errors in context */
269 * @in: an XML parser input
272 * This function refresh the input for the parser. It doesn't try to
273 * preserve pointers to the input buffer, and discard already read data
320 * @in: an XML parser input
323 * This function increase the input for the parser. It tries to
324 * preserve pointers to the input buffer, and keep already read data
380 * @in: an XML parser input
382 * This function removes used input for the parser.
436 * UTF8 character input an
1089 xmlSwitchInputEncoding(xmlParserCtxtPtr ctxt, xmlParserInputPtr input, xmlCharEncodingHandlerPtr handler) argument
1259 xmlFreeInputStream(xmlParserInputPtr input) argument
1282 xmlParserInputPtr input; local
1314 xmlNewIOInputStream(xmlParserCtxtPtr ctxt, xmlParserInputBufferPtr input, xmlCharEncoding enc) argument
1348 xmlParserInputPtr input; local
1408 xmlParserInputPtr input; local
1506 xmlParserInputPtr input; local
1674 xmlParserInputPtr input; local
[all...]
/haiku-fatelf/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...]

Completed in 181 milliseconds

1234567891011>>