Searched refs:start (Results 1 - 25 of 3523) sorted by relevance

1234567891011>>

/external/valgrind/main/none/tests/ppc32/
H A Dbug129390-ppc32.stdout.exp1 vmxcache: start
/external/clang/test/CodeGen/
H A D2002-09-19-StarInLabel.c3 extern void start() __asm__("start");
6 void start() {} function
/external/qemu/distrib/zlib-1.2.3/
H A Dinffast.h11 void inflate_fast OF((z_streamp strm, unsigned start));
/external/compiler-rt/lib/
H A Dclear_cache.c24 void __clear_cache(void* start, void* end) argument
34 sys_icache_invalidate(start, end-start);
/external/v8/test/mjsunit/compiler/
H A Dregress-rep-change.js31 function test(start) {
33 for (var i = start; i < 10; i++) { }
35 for (var i = start; i < 10; i++) { }
/external/zlib/src/
H A Dinffast.h11 void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start));
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dposition.py27 start: The index in to the string where the segment starts.
31 def __init__(self, start, length):
35 start: The start index.
38 self.start = start
50 return string[self.start:self.start + self.length]
62 return target[:self.start] + source + target[self.start
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DLerp.java21 public static float lerp(float start, float target, float duration, float timeSinceStart) argument
23 float value = start;
26 final float range = target - start;
28 value = start + (range * percent);
37 public static float ease(float start, float target, float duration, float timeSinceStart) argument
39 float value = start;
42 final float range = target - start;
46 value = start + ((range / 2.0f) * percent * percent * percent);
51 value = start + ((range / 2.0f) *
/external/webkit/Source/JavaScriptCore/wtf/
H A DNonCopyingSort.h35 inline void siftDown(RandomAccessIterator array, ptrdiff_t start, ptrdiff_t end, Predicate compareLess) argument
37 ptrdiff_t root = start;
55 ptrdiff_t start = (count - 2) / 2; local
57 while (start >= 0) {
58 siftDown(array, start, count - 1, compareLess);
59 start--;
64 void heapSort(RandomAccessIterator start, RandomAccessIterator end, Predicate compareLess) argument
66 ptrdiff_t count = end - start;
67 heapify(start, count, compareLess);
71 swap(start[endInde
78 nonCopyingSort(RandomAccessIterator start, RandomAccessIterator end, Predicate compareLess) argument
[all...]
/external/icu4c/common/
H A Dcwchar.c24 wchar_t *start=dst; local
32 return start;
36 wchar_t *start=dst; local
41 return start;
45 const wchar_t *start=src; local
49 return src-start;
/external/webkit/Source/WebCore/fileapi/
H A DBlob.cpp66 PassRefPtr<Blob> Blob::webkitSlice(long long start, long long end, const String& contentType) const argument
81 if (start < 0)
82 start = start + size;
87 if (start < 0)
88 start = 0;
91 if (start >= size) {
92 start = 0;
94 } else if (end < start)
95 end = start;
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeRuleReturnScope.java33 * the start property is a tree nodes not Token object
39 public Object start; field in class:TreeRuleReturnScope
40 public Object getStart() { return start; }
/external/chromium-trace/trace-viewer/src/
H A Dtimeline_slice.js19 function TimelineSlice(category, title, colorId, start, args, opt_duration) {
22 this.start = start;
36 return this.start + this.duration;
/external/clang/test/SemaTemplate/
H A Darray-to-pointer-decay.cpp19 int start; member in struct:hb_sanitize_context_t
23 return !c->start;
/external/dbus/bus/
H A Drc.messagebus.in25 start() {
57 start)
58 start
69 start
76 echo $"Usage: $0 {start|stop|status|restart|reload}"
/external/oprofile/libpopt/
H A Dfindme.c17 char * start, * chptr; local
27 start = pathbuf = alloca(strlen(path) + 1);
35 if ((chptr = strchr(start, ':')))
37 sprintf(buf, "%s/%s", start, argv0);
43 start = chptr + 1;
45 start = NULL;
46 } while (start && *start);
/external/webkit/Source/WebCore/manual-tests/resources/
H A DCheckerApplet.class ... java.applet.Applet { public boolean checkVersion () public void start () public void " href="/4.2_r1/s?defs= ...
/external/webkit/Source/WebCore/platform/audio/
H A DAudioArray.h45 void zeroRange(unsigned start, unsigned end) argument
47 bool isSafe = (start <= end) && (end <= this->size());
52 memset(this->data() + start, 0, sizeof(T) * (end - start));
55 void copyToRange(T* sourceData, unsigned start, unsigned end) argument
57 bool isSafe = (start <= end) && (end <= this->size());
62 memcpy(this->data() + start, sourceData, sizeof(T) * (end - start));
/external/skia/src/svg/
H A DSkSVGUse.cpp26 const char* start = strchr(f_xlink_href.c_str(), '#') + 1; local
27 SkASSERT(start);
28 parser._addAttributeLen("use", start, strlen(start) - 1);
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberMatch.java28 * {@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());
57 /** The start index into the text. */
58 private final int start; field in class:PhoneNumberMatch
67 * @param start the start index into the target text
71 PhoneNumberMatch(int start, String rawString, PhoneNumber number) { argument
72 if (start <
89 public int start() { method in class:PhoneNumberMatch
[all...]
/external/e2fsprogs/e2fsck/
H A Dregion.c23 region_addr_t start; member in struct:region_el
59 int region_allocate(region_t region, region_addr_t start, int n) argument
64 end = start+n;
65 if ((start < region->min) || (end > region->max))
78 if (((start >= r->start) && (start < r->end)) ||
79 ((end > r->start) && (end <= r->end)) ||
80 ((start <= r->start)
175 region_addr_t start, end, len; local
[all...]
/external/icu4c/samples/break/
H A Dubreak.c17 void printTextRange(UChar* str, int32_t start, int32_t end) argument
24 u_austrncpy(charBuf, str+start, sizeof(charBuf)-1);
26 printf("string[%2d..%2d] \"%s\"\n", start, end-1, charBuf);
35 int32_t start = ubrk_first(boundary); local
36 for (end = ubrk_next(boundary); end != UBRK_DONE; start = end, end =
38 printTextRange(str, start, end );
45 int32_t start; local
47 for (start = ubrk_previous(boundary); start != UBRK_DONE; end = start,
56 int32_t start = ubrk_first(boundary); local
63 int32_t start; local
72 int32_t start; local
[all...]
/external/linux-tools-perf/util/
H A Dsvghelper.h6 extern void open_svg(const char *filename, int cpus, int rows, u64 start, u64 end);
7 extern void svg_box(int Yslot, u64 start, u64 end, const char *type);
8 extern void svg_sample(int Yslot, int cpu, u64 start, u64 end);
9 extern void svg_waiting(int Yslot, u64 start, u64 end);
13 extern void svg_process(int cpu, u64 start, u64 end, const char *type, const char *name);
14 extern void svg_cstate(int cpu, u64 start, u64 end, int type);
15 extern void svg_pstate(int cpu, u64 start, u64 end, u64 freq);
20 extern void svg_wakeline(u64 start, int row1, int row2);
21 extern void svg_partial_wakeline(u64 start, int row1, char *desc1, int row2, char *desc2);
22 extern void svg_interrupt(u64 start, in
[all...]
/external/webkit/Source/WebCore/platform/
H A DContentType.cpp46 size_t start = strippedType.find(parameterName, semi + 1, false); local
47 if (start != notFound) {
48 start = strippedType.find('=', start + parameterName.length());
49 if (start != notFound) {
50 size_t quote = strippedType.find('\"', start + 1);
51 size_t end = strippedType.find('\"', start + 2);
53 start = quote;
55 end = strippedType.find(';', start + 1);
59 parameterValue = strippedType.substring(start
[all...]
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutine.java32 private int start; field in class:Subroutine
34 public Subroutine(int start, int caller) { argument
35 this.start = start;
43 public int start() { method in class:Subroutine
44 return start;
64 return "start = " + start + " callers = " + callers.toString();

Completed in 3838 milliseconds

1234567891011>>