HomeSort by relevance Sort by last modified time
    Searched defs:end (Results 276 - 300 of 8801) sorted by null

<<11121314151617181920>>

  /external/eigen/unsupported/Eigen/CXX11/src/util/
MaxSizeVector.h 102 // NOTE: This does not destroy the value at the end the way
125 T* end() { return data_ + size_; } function in class:Eigen::MaxSizeVector
131 const T* end() const { return data_ + size_; } function in class:Eigen::MaxSizeVector
  /external/elfutils/libdw/
dwarf_ranges.c 37 /* Read up begin/end pair and increment read pointer.
40 - If it's end of rangelist, don't set anything and return 2
51 Dwarf_Addr end; local
55 bool end_relocated = READ_AND_RELOCATE (__libdw_relocate_address, end);
61 if (unlikely (end == escape))
68 *basep = end;
72 /* Unrelocated pair of zeroes means end of range list. */
73 if (begin == 0 && end == 0 && !begin_relocated && !end_relocated)
79 *endp = end;
162 Dwarf_Addr end; local
    [all...]
encoded-value.h 62 const uint8_t *end = p; local
63 while (end < (uint8_t *) data->d_buf + data->d_size)
64 if (*end++ & 0x80u)
65 return end - p;
  /external/emma/core/java12/com/vladium/emma/rt/
RTCoverageDataPersister.java 59 final long end = System.currentTimeMillis (); local
61 log.info ("runtime coverage data " + (merge ? "merged into" : "written to") + " [" + outFile.getAbsolutePath () + "] {in " + (end - start) + " ms}");
77 } // end of class
  /external/expat/examples/
outline.c 80 end(void *data, const XML_Char *el) function
100 XML_SetElementHandler(p, start, end);
  /external/expat/gennmtab/
gennmtab.c 39 int end; member in struct:range
390 if (ranges[i].end) {
391 for (j = ranges[i].start; j <= ranges[i].end; j++)
  /external/fio/t/
gen-rand.c 19 uint64_t i, start, end, nvalues; local
24 log_err("%s: start end nvalues\n", argv[0]);
29 end = strtoul(argv[2], NULL, 10);
31 if (start >= end) {
32 log_err("%s: start must be smaller than end\n", argv[0]);
35 index = 1 + end - start;
43 int v = rand32_between(&s, start, end);
lfsr-test.c 24 "end of the test\n");
30 struct timeval start, end; local
98 fio_gettime(&end, NULL);
120 total = utime_since(&start, &end);
  /external/flac/libFLAC/
stream_encoder_intrin_avx2.c 61 unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order); local
67 end += default_partition_samples;
69 for( ; (int)residual_sample < (int)end-7; residual_sample+=8) {
76 for( ; (int)residual_sample < (int)end-3; residual_sample+=4) {
81 for( ; residual_sample < end; residual_sample++) {
99 end += default_partition_samples;
101 for( ; (int)residual_sample < (int)end-3; residual_sample+=4) {
109 for( ; (int)residual_sample < (int)end-1; residual_sample+=2) {
115 for( ; residual_sample < end; residual_sample++) {
stream_encoder_intrin_ssse3.c 61 unsigned partition, residual_sample, end = (unsigned)(-(int)predictor_order); local
67 end += default_partition_samples;
69 e1 = (residual_sample + 3) & ~3; e3 = end & ~3;
70 if(e1 > end)
71 e1 = end; /* try flac -l 1 -b 16 and you'll be here */
84 for( ; residual_sample < end; residual_sample++) {
102 end += default_partition_samples;
104 e1 = (residual_sample + 1) & ~1; e3 = end & ~1;
105 FLAC__ASSERT(e1 <= end);
118 for( ; residual_sample < end; residual_sample++)
    [all...]
  /external/fonttools/MetaTools/
buildTableList.py 46 end = "<!-- end table list -->" variable
51 endPos = doc.find(end)
  /external/google-breakpad/src/processor/
contained_range_map-inl.h 77 MapIterator iterator_end = map_->end();
118 // When copying and erasing contained ranges, the "end" iterator needs to
168 if (iterator == map_->end() || address < iterator->second->base_)
184 MapConstIterator end = map_->end(); local
185 for (MapConstIterator child = map_->begin(); child != end; ++child)
static_map-inl.h 64 int end = num_nodes_; local
67 while (begin < end) {
68 middle = begin + (end - begin) / 2;
73 end = middle;
78 return this->end();
85 int end = num_nodes_; local
88 while (begin < end) {
89 middle = begin + (end - begin) / 2;
94 end = middle;
106 int end = num_nodes_ local
    [all...]
  /external/harfbuzz_ng/src/
hb-shaper.cc 77 char *end, *p = env; local
79 end = strchr (p, ',');
80 if (!end)
81 end = p + strlen (p);
84 if (end - p == (int) strlen (shapers[j].name) &&
85 0 == strncmp (shapers[j].name, p, end - p))
94 if (!*end)
97 p = end + 1;
hb-utf-private.hh 39 const uint8_t *end,
54 if (likely (text < end &&
66 if (likely (1 < end - text &&
81 if (likely (2 < end - text &&
112 const uint8_t *end = text--; local
113 while (start < text && (*text & 0xc0) == 0x80 && end - text < 4)
116 if (likely (next (text, end, unicode, replacement) == end))
120 return end - 1;
137 const uint16_t *end,
    [all...]
  /external/icu/icu4c/source/i18n/
collationweights.h 80 uint32_t start, end; member in struct:CollationWeights::WeightRange
  /external/icu/icu4c/source/samples/break/
break.cpp 32 int32_t start, int32_t end )
38 printf(" %ld %ld\t", (long)start, (long)end);
41 printUnicodeString(UnicodeString(s, start, end-start));
43 printUnicodeString(UnicodeString(s, end));
53 for (int32_t end = boundary.next();
54 end != BreakIterator::DONE;
55 start = end, end = boundary.next())
57 printTextRange( boundary, start, end );
64 int32_t end = boundary.last() local
77 int32_t end = boundary.next(); local
84 int32_t end = boundary.last(); local
92 int32_t end = boundary.following(pos); local
    [all...]
ubreak.c 23 void printTextRange(UChar* str, int32_t start, int32_t end)
28 savedEndChar = str[end];
29 str[end] = 0;
32 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
33 str[end] = savedEndChar;
40 int32_t end; local
42 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end
52 int32_t end = ubrk_last(boundary); local
61 int32_t end; local
70 int32_t end = ubrk_last(boundary); local
79 int32_t end = ubrk_following(boundary, pos); local
    [all...]
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.cpp 21 int32_t start, end; local
39 end = ubrk_following(brk, start);
40 pttrnLen = end - start;
51 for(end = start; ; end += 1) {
52 UChar ch = src[end];
59 pttrnLen = end - start;
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
trieset.cpp 48 UChar32 start, end; local
54 end=iter.getCodepointEnd();
58 if(end>0xffff) {
59 end=0xffff;
61 if(!utrie_setRange32(newTrie, start, end+1, TRUE, TRUE)) {
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 81 char *end; local
93 end=strchr(line, '#');
94 if(end!=NULL) {
95 *end=0;
98 end=strchr(line, 0);
99 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
100 *--end=0;
114 // find whitespace after the item or the end of the lin
    [all...]
  /external/iproute2/tc/
f_tcindex.c 30 char *end; local
33 t->tcm_handle = strtoul(handle, &end, 0);
34 if (*end) {
47 hash = strtoul(*argv, &end, 0);
48 if (*end || !hash || hash > 0x10000) {
58 mask = strtoul(*argv, &end, 0);
59 if (*end) {
69 shift = strtoul(*argv, &end, 0);
70 if (*end) {
q_dsmark.c 33 char *end; local
41 ind = strtoul(*argv, &end, 0);
42 if (*end) {
49 dflt = strtoul(*argv, &end, 0);
50 if (*end) {
92 char *end; local
99 tmp = strtoul(*argv, &end, 0);
100 if (*end) {
107 tmp = strtoul(*argv, &end, 0);
108 if (*end) {
    [all...]
  /external/iptables/extensions/
libebt_802_3.c 53 char *end; local
59 i = strtoul(optarg, &end, 16);
60 if (i > 255 || *end != '\0')
70 i = strtoul(optarg, &end, 16);
71 if (i > 65535 || *end != '\0') {
libebt_mark_m.c 50 char *end; local
56 info->mark = strtoul(optarg, &end, 0);
58 if (*end == '/') {
59 if (end == optarg)
61 info->mask = strtoul(end+1, &end, 0);
65 if (*end != '\0' || end == optarg)

Completed in 650 milliseconds

<<11121314151617181920>>