search for: e_end

Displaying 2 results from an estimated 2 matches for "e_end".

Did you mean: _end
2007 Jul 30
0
Ferret crashing ruby while highlighting
...135,139,389,445,464,563,593,636,1441,1442,1444,1515, 1519,1527,1537,1546,3389". In the debugger I can see that the crash happens in search.c on line 907. The reason is that the excerpt->end field is -1. I think the reason is because in this code from search.c: for (e_start = e_end = 0; e_start < mv->size; e_start++) { const int start_offset = matches[e_start].start_offset; if (e_start > e_end) { running_score = 0.0; e_end = e_start; } while (e_end < mv-&g...
2017 Jun 21
6
RFC: Cleaning up the Itanium demangler
...++t; + unsigned d0 = isdigit(*t) ? static_cast<unsigned>(*t - '0') : + static_cast<unsigned>(*t - 'a' + 10); + *e = static_cast<char>((d1 << 4) + d0); + } +#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ + std::reverse(buf, e); +#endif + char num[float_data<Float>::max_demangled_size] = {0}; + int n = snprintf(num, sizeof(num), float_data<Float>::spec, value); + s += string_ref(num, num + n); + } + } +}; + +template <std::siz...