Home
last modified time | relevance | path

Searched refs:run_length (Results 1 – 5 of 5) sorted by relevance

/external/libevent/test/
Dregress.gen.c72 tmp->run_length = 0; in msg_new_with_arg()
99 if (++msg->run_length >= msg->run_num_allocated) { in msg_run_add()
103 msg->run_data[msg->run_length - 1] = run_new(); in msg_run_add()
104 if (msg->run_data[msg->run_length - 1] == NULL) in msg_run_add()
107 return (msg->run_data[msg->run_length - 1]); in msg_run_add()
109 --msg->run_length; in msg_run_add()
178 if (!msg->run_set || off < 0 || off >= msg->run_length) in msg_run_assign()
241 if (!msg->run_set || offset < 0 || offset >= msg->run_length) in msg_run_get()
267 for (i = 0; i < tmp->run_length; ++i) { in msg_clear()
273 tmp->run_length = 0; in msg_clear()
[all …]
Dregress.gen.h43 int run_length; member
/external/v8/src/regexp/
Dregexp-compiler-tonode.cc607 int run_length = i - first_with_prefix; in RationalizeConsecutiveAtoms() local
609 for (int j = 1; j < run_length && prefix_length > 1; j++) { in RationalizeConsecutiveAtoms()
624 zone->New<ZoneList<RegExpTree*>>(run_length, zone); in RationalizeConsecutiveAtoms()
625 for (int j = 0; j < run_length; j++) { in RationalizeConsecutiveAtoms()
695 int run_length = i - first_in_run; in FixSingleCharacterDisjunctions() local
698 for (int j = 0; j < run_length; j++) { in FixSingleCharacterDisjunctions()
/external/v8/third_party/v8/builtins/
Darray-sort.tq1180 // Returns true iff run_length(n - 2) > run_length(n - 1) + run_length(n).
1195 // 1. run_length(i - 3) > run_length(i - 2) + run_length(i - 1)
1196 // 2. run_length(i - 2) > run_length(i - 1)
/external/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_message.cc2554 const size_t run_length = it->second; in GenerateConstructorBody() local
2557 FieldName(optimized_order_[i + run_length - 1]); in GenerateConstructorBody()
2564 i += run_length - 1; in GenerateConstructorBody()