Searched refs:start (Results 76 - 100 of 5526) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_index_modify.h33 unsigned start,
41 unsigned start,
49 unsigned start, unsigned count,
56 unsigned start, unsigned count);
63 unsigned start, unsigned count,
70 unsigned start, unsigned count);
/external/toybox/scripts/
H A Dmktags.c24 // by ) at start of line.
40 char *start; local
46 start = ++s;
51 printf("#define %s_%*.*s %d\n", tag, -40, (int)(s-start), start, idx);
52 printf("#define _%s_%*.*s (1%s<<%d)\n", tag, -39, (int)(s-start), start,
/external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/
H A Dcreate_timing_table.py12 start = end = time.time()
15 while iterations < 10 or end - start < 2:
20 duration = end - start
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchTable.java96 /** {@code >= 0;} start address */
97 private final int start; field in class:CatchTable.Entry
99 /** {@code > start;} end address (exclusive) */
108 * @param start {@code >= 0;} start address
109 * @param end {@code > start;} end address (exclusive)
112 public Entry(int start, int end, CatchHandlerList handlers) { argument
113 if (start < 0) {
114 throw new IllegalArgumentException("start < 0");
117 if (end <= start) {
[all...]
/external/guice/core/src/com/google/inject/internal/util/
H A DStopwatch.java29 private long start = System.currentTimeMillis(); field in class:Stopwatch
37 return now - start;
39 start = now;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DBlock.java23 private Label start; field in class:Block
28 start = e.mark();
43 return start;
/external/slf4j/slf4j-ext/src/test/java/org/slf4j/profiler/
H A DBasicProfilerDemo.java58 profiler.start("A");
61 profiler.start("B");
64 profiler.start("OTHER");
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DICharStream.cs44 string Substring(int start, int length); argument
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DICharStream.cs46 string Substring( int start, int length ); argument
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonErrorNode.js1 org.antlr.runtime.tree.CommonErrorNode = function(input, start, stop, e) {
3 (stop.getTokenIndex() < start.getTokenIndex() &&
7 // in follow set. So, stop will be 1 to left to start. adjust.
8 // Also handle case where start is the first token and no token
10 stop = start;
13 this.start = start;
29 if ( this.start instanceof org.antlr.runtime.Token ) {
30 var i = this.start.getTokenIndex();
37 else if ( this.start instanceo
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXMLStringFactoryImpl.java66 * @param start The start position in the array.
71 public XMLString newstr(FastStringBuffer fsb, int start, int length) argument
73 return new XStringForFSB(fsb, start, length);
81 * @param start The start position in the array.
86 public XMLString newstr(char[] string, int start, int length) argument
88 return new XStringForChars(string, start, length);
/external/autotest/utils/
H A Dautotest.init6 # update-rc.d autotest start 95 2 3 4 5 . stop 90 0 1 6 .
26 start-stop-daemon --start --quiet --chuid $BECOME_USER \
34 start-stop-daemon --stop --quiet --pidfile $BASE_DIR/$PID_NAME.pid
43 start)
58 echo "Usage: $0 start|stop|restart"
/external/guava/guava/src/com/google/common/io/
H A DLineBuffer.java59 int start = pos;
63 line.append(cbuf, start, pos - start);
70 start = pos + 1;
74 line.append(cbuf, start, pos - start);
76 start = pos + 1;
83 line.append(cbuf, start, off + len - start);
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DRangeValueIterator.java17 * &lt;start, limit, value&gt; where
19 * <li> start is the starting integer of the result range
20 * <li> limit is 1 after the maximum integer that follows start, such that
21 * all integers between start and (limit - 1), inclusive, have the same
23 * <li> value is the integer value that all integers from start to (limit - 1)
27 * Hence value(start) = value(start + 1) = .... = value(start + n) = .... =
28 * value(limit - 1). However value(start -1) != value(start) an
65 public int start; field in class:RangeValueIterator.Element
[all...]
/external/icu/icu4c/source/common/
H A Dunistr_props.cpp54 int32_t start; local
57 start = i;
68 if(start > 0) {
69 doReplace(0, start, 0, 0, 0);
/external/icu/icu4c/source/i18n/
H A Dnortrans.cpp102 // start and limit of the input range
103 int32_t start = offsets.start; local
105 if(start >= limit) {
119 int32_t length = limit - start;
120 _Replaceable_extractBetween(text, start, limit, input.getBuffer(length));
126 text.handleReplaceBetween(start, limit, normalized);
131 offsets.start = limit + delta;
137 UChar32 c = text.char32At(start);
139 int32_t prev = start;
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DRangeValueIterator.java16 * &lt;start, limit, value&gt; where
18 * <li> start is the starting integer of the result range
19 * <li> limit is 1 after the maximum integer that follows start, such that
20 * all integers between start and (limit - 1), inclusive, have the same
22 * <li> value is the integer value that all integers from start to (limit - 1)
26 * Hence value(start) = value(start + 1) = .... = value(start + n) = .... =
27 * value(limit - 1). However value(start -1) != value(start) an
67 public int start; field in class:RangeValueIterator.Element
[all...]
/external/javassist/src/main/javassist/
H A DTranslator.java42 void start(ClassPool pool) method in interface:Translator
/external/parameter-framework/upstream/remote-processor/
H A DRemoteProcessorServerInterface.h38 virtual bool start(std::string &strError) = 0;
/external/toybox/toys/pending/
H A Dklogd.c62 * "used" amount to track next read to start.
67 char *start, *line_start, msg_buffer[16348]; //LOG_LINE_LENGTH - Ring buffer size local
83 start = msg_buffer + used; //start updated for re-read.
85 size = klogctl(2, start, sizeof(msg_buffer) - used - 1);
87 size = xread(TT.fd, start, sizeof(msg_buffer) - used - 1);
90 start[size] = '\0'; //Ensure last line to be NUL terminated.
91 if (used) start = msg_buffer;
92 while(start) {
93 if ((line_start = strsep(&start, "\
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DIndentingWriter.java68 private void writeLine(char[] chars, int start, int len) throws IOException { argument
73 writer.write(chars, start, len);
80 private void writeLine(String str, int start, int len) throws IOException { argument
85 writer.write(str, start, len);
94 public void write(char[] chars, int start, int len) throws IOException { argument
95 final int end = start+len;
96 int pos = start;
99 writeLine(chars, start, pos-start);
104 start
118 write(String str, int start, int len) argument
142 append(CharSequence charSequence, int start, int len) argument
[all...]
/external/v8/test/unittests/compiler/
H A Dschedule-unittest.cc88 EXPECT_NE(nullptr, schedule.start());
89 EXPECT_EQ(schedule.start(),
93 EXPECT_NE(schedule.start(), schedule.end());
99 BasicBlock* start = schedule.start(); local
103 schedule.AddNode(start, node0);
104 EXPECT_EQ(start, schedule.block(node0));
105 EXPECT_THAT(*start, ElementsAre(node0));
109 schedule.AddNode(start, node1);
110 EXPECT_EQ(start, schedul
119 BasicBlock* start = schedule.start(); local
142 BasicBlock* start = schedule.start(); local
171 BasicBlock* start = schedule.start(); local
200 BasicBlock* start = schedule.start(); local
215 BasicBlock* start = schedule.start(); local
[all...]
H A Dgraph-trimmer-unittest.cc44 Node* const start = graph()->NewNode(common()->Start(0)); local
45 Node* const end = graph()->NewNode(common()->End(1), start);
46 graph()->SetStart(start);
50 EXPECT_EQ(start, graph()->start());
51 EXPECT_EQ(start, end->InputAt(0));
56 Node* const dead0 = graph()->NewNode(&kDead0, graph()->start());
57 graph()->SetEnd(graph()->NewNode(common()->End(1), graph()->start()));
60 EXPECT_THAT(graph()->start()->uses(), ElementsAre(graph()->end()));
65 Node* const dead0 = graph()->NewNode(&kDead0, graph()->start());
[all...]
/external/icu/icu4c/source/common/unicode/
H A Dunistr.h388 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
390 * (The parameters "start" and "length" are not applied to the other text "text".)
391 * @param start the offset at which the compare operation begins
401 inline int8_t compare(int32_t start,
407 * [<TT>start</TT>, <TT>start + length</TT>) with the characters
410 * @param start the offset at which the compare operation begins
413 * @param srcStart the offset into <TT>srcText</TT> to start comparison
422 inline int8_t compare(int32_t start,
3740 pinIndices(int32_t& start, int32_t& _length) const argument
3839 doCompare(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const argument
3889 compare(int32_t start, int32_t _length, const UnicodeString& srcText) const argument
3900 compare(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const argument
3908 compare(int32_t start, int32_t _length, const UChar *srcChars) const argument
3914 compare(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
3922 compareBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const argument
3931 doCompareCodePointOrder(int32_t start, int32_t thisLength, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const argument
3950 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText) const argument
3961 compareCodePointOrder(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) const argument
3969 compareCodePointOrder(int32_t start, int32_t _length, const UChar *srcChars) const argument
3975 compareCodePointOrder(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) const argument
3983 compareCodePointOrderBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) const argument
3992 doCaseCompare(int32_t start, int32_t thisLength, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
4013 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, uint32_t options) const argument
4028 caseCompare(int32_t start, int32_t _length, const UnicodeString &srcText, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
4038 caseCompare(int32_t start, int32_t _length, const UChar *srcChars, uint32_t options) const argument
4046 caseCompare(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength, uint32_t options) const argument
4056 caseCompareBetween(int32_t start, int32_t limit, const UnicodeString &srcText, int32_t srcStart, int32_t srcLimit, uint32_t options) const argument
4066 indexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const argument
4093 indexOf(const UnicodeString& text, int32_t start, int32_t _length) const argument
4107 indexOf(const UChar *srcChars, int32_t srcLength, int32_t start, int32_t _length) const argument
4114 indexOf(UChar c, int32_t start, int32_t _length) const argument
4120 indexOf(UChar32 c, int32_t start, int32_t _length) const argument
4148 lastIndexOf(const UChar *srcChars, int32_t srcLength, int32_t start, int32_t _length) const argument
4163 lastIndexOf(const UnicodeString& srcText, int32_t srcStart, int32_t srcLength, int32_t start, int32_t _length) const argument
4179 lastIndexOf(const UnicodeString& text, int32_t start, int32_t _length) const argument
4196 lastIndexOf(UChar c, int32_t start, int32_t _length) const argument
4202 lastIndexOf(UChar32 c, int32_t start, int32_t _length) const argument
4296 replace(int32_t start, int32_t _length, const UnicodeString& srcText) argument
4302 replace(int32_t start, int32_t _length, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) argument
4310 replace(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcLength) argument
4317 replace(int32_t start, int32_t _length, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4325 replace(int32_t start, int32_t _length, UChar srcChar) argument
4331 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText) argument
4337 replaceBetween(int32_t start, int32_t limit, const UnicodeString& srcText, int32_t srcStart, int32_t srcLimit) argument
4351 findAndReplace(int32_t start, int32_t _length, const UnicodeString& oldText, const UnicodeString& newText) argument
4362 doExtract(int32_t start, int32_t _length, UnicodeString& target) const argument
4368 extract(int32_t start, int32_t _length, UChar *target, int32_t targetStart) const argument
4375 extract(int32_t start, int32_t _length, UnicodeString& target) const argument
4383 extract(int32_t start, int32_t _length, char *dst, const char *codepage) const argument
4396 extractBetween(int32_t start, int32_t limit, UChar *dst, int32_t dstStart) const argument
4406 tempSubStringBetween(int32_t start, int32_t limit) const argument
4564 insert(int32_t start, const UnicodeString& srcText, int32_t srcStart, int32_t srcLength) argument
4571 insert(int32_t start, const UnicodeString& srcText) argument
4576 insert(int32_t start, const UChar *srcChars, int32_t srcStart, int32_t srcLength) argument
4583 insert(int32_t start, const UChar *srcChars, int32_t srcLength) argument
4589 insert(int32_t start, UChar srcChar) argument
4594 insert(int32_t start, UChar32 srcChar) argument
4612 remove(int32_t start, int32_t _length) argument
4623 removeBetween(int32_t start, int32_t limit) argument
4628 retainBetween(int32_t start, int32_t limit) argument
4653 reverse(int32_t start, int32_t _length) argument
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dblkmap64_rb.c35 __u64 start; member in struct:bmap_rb_extent
61 static int rb_insert_extent(__u64 start, __u64 count,
79 ext->start, ext->start + ext->count);
94 printf("extent: %llu -> %llu (%u)\n", ext->start,
95 ext->start + ext->count, ext->count);
98 if (ext->start < 0) {
99 printf("Tree Error: start is crazy\n");
100 printf("extent: %llu -> %llu (%u)\n", ext->start,
101 ext->start
141 rb_get_new_extent(struct bmap_rb_extent **ext, __u64 start, __u64 count) argument
384 rb_insert_extent(__u64 start, __u64 count, struct ext2fs_rb_private *bp) argument
485 rb_remove_extent(__u64 start, __u64 count, struct ext2fs_rb_private *bp) argument
627 rb_test_clear_bmap_extent(ext2fs_generic_bitmap bitmap, __u64 start, unsigned int len) argument
683 rb_set_bmap_range(ext2fs_generic_bitmap bitmap, __u64 start, size_t num, void *in) argument
726 rb_get_bmap_range(ext2fs_generic_bitmap bitmap, __u64 start, size_t num, void *out) argument
[all...]

Completed in 8546 milliseconds

1234567891011>>