Searched defs:current_type (Results 1 - 12 of 12) sorted by relevance

/external/dbus/dbus/
H A Ddbus-marshal-byteswap.c42 int current_type; local
44 while ((current_type = _dbus_type_reader_get_current_type (reader)) != DBUS_TYPE_INVALID)
46 switch (current_type)
98 if (current_type == DBUS_TYPE_ARRAY)
137 _dbus_assert (current_type == DBUS_TYPE_STRING ||
138 current_type == DBUS_TYPE_OBJECT_PATH);
H A Ddbus-marshal-validate.c306 int current_type; local
318 while ((current_type = _dbus_type_reader_get_current_type (reader)) != DBUS_TYPE_INVALID)
325 _dbus_type_to_string (current_type), reader, reader->type_pos, p, end,
333 switch (current_type)
348 alignment = _dbus_type_get_alignment (current_type);
359 if (current_type == DBUS_TYPE_BOOLEAN)
392 if (current_type == DBUS_TYPE_ARRAY)
420 if (current_type == DBUS_TYPE_OBJECT_PATH)
430 else if (current_type == DBUS_TYPE_STRING)
440 else if (current_type
[all...]
H A Ddbus-marshal-recursive.c134 int current_type); /**< go to the next value */
438 int current_type)
440 switch (current_type)
449 if (reader->klass->types_only && current_type == DBUS_TYPE_VARIANT)
470 if (current_type == DBUS_TYPE_VARIANT)
493 current_type, reader->byte_order,
503 int current_type)
507 base_reader_next (reader, current_type);
524 int current_type)
528 base_reader_next (reader, current_type);
437 base_reader_next(DBusTypeReader *reader, int current_type) argument
502 struct_reader_next(DBusTypeReader *reader, int current_type) argument
523 dict_entry_reader_next(DBusTypeReader *reader, int current_type) argument
544 array_types_only_reader_next(DBusTypeReader *reader, int current_type) argument
556 array_reader_next(DBusTypeReader *reader, int current_type) argument
1267 reader_set_basic_variable_length(DBusTypeReader *reader, int current_type, const void *value, const DBusTypeReader *realign_root) argument
1313 reader_set_basic_fixed_length(DBusTypeReader *reader, int current_type, const void *value) argument
1364 int current_type; local
2451 int current_type; local
[all...]
/external/dbus/tools/
H A Ddbus-print-message.c109 int current_type; local
111 while ((current_type = dbus_message_iter_get_arg_type (iter))
287 int current_type; local
292 current_type = dbus_message_iter_get_arg_type (&subiter);
294 if (current_type == DBUS_TYPE_BYTE)
301 while (current_type != DBUS_TYPE_INVALID)
306 current_type = dbus_message_iter_get_arg_type (&subiter);
308 if (current_type != DBUS_TYPE_INVALID)
332 int current_type; local
338 while ((current_type
[all...]
/external/opencv3/modules/core/test/
H A Dtest_countnonzero.cpp71 int current_type; member in class:CV_CountNonZeroTest
82 CV_CountNonZeroTest::CV_CountNonZeroTest(): eps_32(std::numeric_limits<float>::min()), eps_64(std::numeric_limits<double>::min()), src(Mat()), current_type(-1) {}
152 if (current_type == CV_8U) result += (src.at<uchar>(i, j) > 0);
153 else if (current_type == CV_8S) result += abs(sign(src.at<char>(i, j)));
154 else if (current_type == CV_16U) result += (src.at<ushort>(i, j) > 0);
155 else if (current_type == CV_16S) result += abs(sign(src.at<short>(i, j)));
156 else if (current_type == CV_32S) result += abs(sign(src.at<int>(i, j)));
157 else if (current_type == CV_32F) result += (fabs(src.at<float>(i, j)) > eps_32);
168 switch (current_type)
196 current_type
201 generate_src_data(Size(w, h), current_type); local
217 generate_src_data(Size(w, h), current_type, count_non_zero); local
233 generate_src_stat_data(Size(w, h), current_type, distribution); local
[all...]
/external/e2fsprogs/ext2ed/
H A Dmain.c78 struct struct_descriptor *first_type,*last_type,*current_type; /* Used to access the double linked list */ variable in typeref:struct:
344 * current type. The global variable current_type points to the
371 if (current_type != NULL)
373 i<=current_type->type_commands.last_command && !found;
375 if (strcasecmp (command,current_type->type_commands.names [i])==0) {
376 (*current_type->type_commands.callback [i]) (command_line);
472 if (current_type != NULL)
473 for (i=0;i<=current_type->type_commands.last_command;i++) {
474 if (strncmp (current_type->type_commands.names [i],text,len)==0) {
477 return (dupstr (current_type
[all...]
/external/dbus/bus/
H A Ddriver.c1793 int current_type; local
1798 while ((current_type = _dbus_type_reader_get_current_type (&typereader)) != DBUS_TYPE_INVALID)
H A Dsignals.c1856 int current_type; local
1866 current_type = dbus_message_iter_get_arg_type (&iter);
1873 if (current_type != DBUS_TYPE_STRING &&
1874 (!is_path || current_type != DBUS_TYPE_OBJECT_PATH))
1932 if (current_type != DBUS_TYPE_INVALID)
/external/bison/src/
H A Dparse-gram.c141 static uniqstr current_type = NULL; variable
2536 current_type = NULL;
2551 current_type = NULL;
2575 symbol_type_set (list->content.sym, current_type, (yylsp[(2) - (3)]));
2579 current_type = NULL;
2604 { current_type = NULL; }
2610 { current_type = (yyvsp[(1) - (1)].uniqstr); tag_seen = true; }
2689 current_type = (yyvsp[(1) - (1)].uniqstr);
2699 symbol_type_set ((yyvsp[(1) - (1)].symbol), current_type, (yylsp[(1) - (1)]));
2708 symbol_type_set ((yyvsp[(1) - (2)].symbol), current_type, (yyls
[all...]
/external/v8/src/compiler/
H A Dsimplified-lowering.cc521 Type* Weaken(Node* node, Type* previous_type, Type* current_type) { argument
525 return current_type;
527 DCHECK(current_type->Maybe(integer));
530 Type::Intersect(current_type, integer, graph_zone());
542 return current_type;
548 return Type::Union(current_type,
H A Dtyper.cc206 Type* Weaken(Node* node, Type* current_type, Type* previous_type);
1191 Type* Typer::Visitor::Weaken(Node* node, Type* current_type, argument
1212 return current_type;
1214 DCHECK(current_type->Maybe(integer));
1216 Type* current_integer = Type::Intersect(current_type, integer, zone());
1227 return current_type;
1261 return Type::Union(current_type,
/external/libpng/contrib/tools/
H A Dpngfix.c1127 static png_uint_32 current_type(struct file *file, int code);
1155 type = current_type(file, code); /* Gropes in struct chunk and IDAT */
1612 current_type(struct file *file, int code) function

Completed in 898 milliseconds