HomeSort by relevance Sort by last modified time
    Searched defs:end (Results 251 - 275 of 4466) sorted by null

<<11121314151617181920>>

  /external/e2fsprogs/lib/ext2fs/
ext2_err.c 62 N_( "Attempt to fudge end of block bitmap past the real end"),
63 N_( "Attempt to fudge end of inode bitmap past the real end"),
195 struct et_list *et, **end; local
197 for (end = list, et = *list; et; end = &et->next, et = et->next)
209 *end = et;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/
buildAll.bat 49 goto end
54 :end label
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/tests/testScripts/
runtests.bat 86 goto end
88 :end label
  /external/elfutils/src/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;
169 Dwarf_Addr end; local
    [all...]
  /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 67 end(void *data, const char *el) function
81 XML_SetElementHandler(p, start, end);
  /external/fio/t/
lfsr-test.c 24 "end of the test\n");
30 struct timeval start, end; local
96 fio_gettime(&end, NULL);
118 total = utime_since(&start, &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 42 const uint8_t *end,
57 if (likely (text < end &&
69 if (likely (1 < end - text &&
84 if (likely (2 < end - text &&
115 const uint8_t *end = text--; local
116 while (start < text && (*text & 0xc0) == 0x80 && end - text < 4)
119 if (likely (next (text, end, unicode, replacement) == end))
123 return end - 1;
141 const uint16_t *end,
177 const uint16_t *end = text--; local
    [all...]
  /external/icu/icu4c/source/i18n/
collationweights.h 78 uint32_t start, end; member in struct:CollationWeights::WeightRange
  /external/icu/icu4c/source/samples/break/
break.cpp 26 int32_t start, int32_t end )
32 printf(" %ld %ld\t", (long)start, (long)end);
35 printUnicodeString(UnicodeString(s, start, end-start));
37 printUnicodeString(UnicodeString(s, end));
47 for (int32_t end = boundary.next();
48 end != BreakIterator::DONE;
49 start = end, end = boundary.next())
51 printTextRange( boundary, start, end );
58 int32_t end = boundary.last() local
71 int32_t end = boundary.next(); local
78 int32_t end = boundary.last(); local
86 int32_t end = boundary.following(pos); local
    [all...]
ubreak.c 17 void printTextRange(UChar* str, int32_t start, int32_t end)
22 savedEndChar = str[end];
23 str[end] = 0;
26 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
27 str[end] = savedEndChar;
34 int32_t end; local
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end
46 int32_t end = ubrk_last(boundary); local
55 int32_t end; local
64 int32_t end = ubrk_last(boundary); local
73 int32_t end = ubrk_following(boundary, pos); local
    [all...]
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.cpp 16 int32_t start, end; local
34 end = ubrk_following(brk, start);
35 pttrnLen = end - start;
46 for(end = start; ; end += 1) {
47 UChar ch = src[end];
54 pttrnLen = end - start;
  /external/icu/icu4c/source/test/perf/unisetperf/draft/
trieset.cpp 44 UChar32 start, end; local
50 end=iter.getCodepointEnd();
54 if(end>0xffff) {
55 end=0xffff;
57 if(!utrie_setRange32(newTrie, start, end+1, TRUE, TRUE)) {
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 78 char *end; local
90 end=strchr(line, '#');
91 if(end!=NULL) {
92 *end=0;
95 end=strchr(line, 0);
96 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
97 *--end=0;
111 // find whitespace after the item or the end of the lin
    [all...]
  /external/iproute2/tc/
f_tcindex.c 32 char *end; local
35 t->tcm_handle = strtoul(handle,&end,0);
36 if (*end) {
49 hash = strtoul(*argv,&end,0);
50 if (*end || !hash || hash > 0x10000) {
60 mask = strtoul(*argv,&end,0);
61 if (*end) {
71 shift = strtoul(*argv,&end,0);
72 if (*end) {
q_dsmark.c 34 char *end; local
42 ind = strtoul(*argv,&end,0);
43 if (*end) {
51 dflt = strtoul(*argv,&end,0);
52 if (*end) {
96 char *end; local
103 tmp = strtoul(*argv,&end,0);
104 if (*end) {
112 tmp = strtoul(*argv,&end,0);
113 if (*end) {
    [all...]
  /external/iptables/extensions/
libip6t_MASQUERADE.c 43 char *end; local
48 if (!xtables_strtoui(arg, &end, &port, 0, UINT16_MAX))
51 switch (*end) {
58 if (!xtables_strtoui(end + 1, NULL, &maxport, 0, UINT16_MAX))
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
SliceFunction.java 28 * Returns the string slice starting at start and ending at end, similar to the Python slice
34 * @param args 1 string values then 2 numeric values (start and end).
43 int end = endValue.asNumber(); local
48 if (end == 0) {
49 end = length;
53 if (end < 0) {
54 end += length;
57 end = min(end, length);
59 if (end < start)
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
SyncEvent.h 110 ** Function: end
112 ** Description: End a synchronization operation.
117 void end () function in class:SyncEvent
136 ** Description: Automatically start and end a synchronization event.
162 ** Description: End a synchronization operation.
169 mEvent.end (); //automatically end operation
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberMatch.java 28 * {@linkplain #start() start} and {@linkplain #end() end} offsets of the corresponding subsequence
45 * // start() and end() define the range of the matched subsequence.
46 * CharSequence subsequence = text.subSequence(m.start(), m.end());
91 /** Returns the exclusive end index of the matched phone number within the searched text. */
92 public int end() { method in class:PhoneNumberMatch
121 return "PhoneNumberMatch [" + start() + "," + end() + ") " + rawString;
  /external/libunwind/include/
map_info.h 40 uintptr_t end; member in struct:map_info
  /external/libunwind/src/
os-linux.c 39 unsigned long start, end, offset, flags; local
49 while (maps_next (&mi, &start, &end, &offset, &flags))
56 cur_map->end = end;
149 /* End of ANDROID update. */

Completed in 435 milliseconds

<<11121314151617181920>>