HomeSort by relevance Sort by last modified time
    Searched defs:starts (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/valgrind/coregrind/
m_aspacehl.c 45 Addr* starts; local
50 starts = VG_(malloc)( "main.gss.1", n_starts * sizeof(Addr) );
51 r = VG_(am_get_segment_starts)( kind_mask, starts, n_starts );
54 VG_(free)(starts);
59 return starts;
  /external/skia/tools/lua/
paths.lua 47 function string.starts(String,Start)
68 if (string.starts(t.verb, "draw")) then
72 if (string.starts(t.verb, "clip")) then
  /art/test/908-gc-start-finish/
gc_callbacks.cc 32 static size_t starts = 0; member in namespace:art::Test908GcStartFinish
40 starts++;
75 jint result = static_cast<jint>(starts);
76 starts = 0;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
BlockAddresses.java 33 private final CodeAddress[] starts; field in class:BlockAddresses
53 this.starts = new CodeAddress[maxLabel];
67 return starts[block.getLabel()];
77 return starts[label];
135 starts[label] = new CodeAddress(insn.getPosition());
RopTranslator.java 246 RegisterSpecSet starts = locals.getStarts(block); local
248 starts));
  /dalvik/dx/src/com/android/dx/dex/code/
BlockAddresses.java 33 private final CodeAddress[] starts; field in class:BlockAddresses
53 this.starts = new CodeAddress[maxLabel];
67 return starts[block.getLabel()];
77 return starts[label];
135 starts[label] = new CodeAddress(insn.getPosition());
RopTranslator.java 253 RegisterSpecSet starts = locals.getStarts(block); local
255 starts));
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
MultiStartMultivariateRealOptimizer.java 52 /** Number of iterations already performed for all starts. */
55 /** Number of evaluations already performed for all starts. */
58 /** Number of starts to go. */
59 private int starts; field in class:MultiStartMultivariateRealOptimizer
70 * @param starts number of starts to perform (including the
76 final int starts,
81 this.starts = starts;
93 * method returns all the points found at the end of each starts,
    [all...]
MultiStartDifferentiableMultivariateRealOptimizer.java 49 /** Number of iterations already performed for all starts. */
55 /** Number of evaluations already performed for all starts. */
58 /** Number of gradient evaluations already performed for all starts. */
61 /** Number of starts to go. */
62 private int starts; field in class:MultiStartDifferentiableMultivariateRealOptimizer
73 * @param starts number of starts to perform (including the
79 final int starts,
85 this.starts = starts;
    [all...]
MultiStartDifferentiableMultivariateVectorialOptimizer.java 52 /** Number of iterations already performed for all starts. */
58 /** Number of evaluations already performed for all starts. */
61 /** Number of jacobian evaluations already performed for all starts. */
64 /** Number of starts to go. */
65 private int starts; field in class:MultiStartDifferentiableMultivariateVectorialOptimizer
76 * @param starts number of starts to perform (including the
83 final int starts,
89 this.starts = starts;
    [all...]
MultiStartUnivariateRealOptimizer.java 53 /** Number of iterations already performed for all starts. */
56 /** Number of evaluations already performed for all starts. */
59 /** Number of starts to go. */
60 private int starts; field in class:MultiStartUnivariateRealOptimizer
74 * @param starts number of starts to perform (including the
80 final int starts,
84 this.starts = starts;
171 * method returns all the points found at the end of each starts,
    [all...]
  /external/junit/src/main/java/org/junit/experimental/max/
MaxHistory.java 107 private Map<Description, Long> starts = new HashMap<Description, Long>(); field in class:MaxHistory.RememberingListener
111 starts.put(description, System.nanoTime()); // Get most accurate
118 long start = starts.get(description);
  /external/harfbuzz_ng/src/
gen-indic-table.py 187 starts = [] variable
208 offset += ends[-1] - starts[-1]
212 starts.append (start)
217 offset += ends[-1] - starts[-1]
229 pages = set([u>>page_bits for u in starts+ends+singles.keys()])
232 for (start,end) in zip (starts, ends):
gen-use-table.py 395 starts = [] variable
425 offset += ends[-1] - starts[-1]
429 starts.append (start)
434 offset += ends[-1] - starts[-1]
446 pages = set([u>>page_bits for u in starts+ends+singles.keys()])
449 for (start,end) in zip (starts, ends):
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CanonicalIterator.java 207 *@return the set of "safe starts", characters that are class zero AND are never non-initial in a decomposition.
293 UnicodeSet starts = new UnicodeSet(); local
301 if (!nfcImpl.getCanonStartSet(cp, starts)) {
305 for(UnicodeSetIterator iter = new UnicodeSetIterator(starts); iter.next();) {
334 UnicodeSet starts = AT_START.get(cp);
335 if (starts == null) continue;
336 UnicodeSetIterator usi = new UnicodeSetIterator(starts);
  /external/icu/icu4c/source/common/
caniter.cpp 444 UnicodeSet starts; local
451 if (!nfcImpl.getCanonStartSet(cp, starts)) {
455 UnicodeSetIterator iter(starts);
stringtriebuilder.cpp 152 int32_t starts[kMaxBranchLinearSubNodeLength]; local
156 int32_t i=starts[unitNumber]=start;
163 starts[unitNumber]=start;
173 jumpTargets[unitNumber]=writeNode(starts[unitNumber], starts[unitNumber+1], unitIndex+1);
183 start=starts[unitNumber];
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CanonicalIterator.java 211 *@return the set of "safe starts", characters that are class zero AND are never non-initial in a decomposition.
297 UnicodeSet starts = new UnicodeSet(); local
305 if (!nfcImpl.getCanonStartSet(cp, starts)) {
309 for(UnicodeSetIterator iter = new UnicodeSetIterator(starts); iter.next();) {
338 UnicodeSet starts = AT_START.get(cp);
339 if (starts == null) continue;
340 UnicodeSetIterator usi = new UnicodeSetIterator(starts);
  /frameworks/base/core/java/android/text/method/
PasswordTransformationMethod.java 193 int[] starts = null, ends = null; local
203 starts = new int[nvisible];
208 starts[i] = sp.getSpanStart(visible[i]);
219 if (i >= starts[a] && i < ends[a]) {
  /frameworks/base/sax/tests/saxtests/src/android/sax/
SafeSaxTest.java 55 int starts = 0; field in class:SafeSaxTest.ElementCounter
59 starts++;
68 int starts = 0; field in class:SafeSaxTest.TextElementCounter
72 starts++;
105 assertEquals(1, rootCounter.starts);
107 assertEquals(2, entryCounter.starts);
109 assertEquals(2, idCounter.starts);
  /art/test/913-heaps/
heaps.cc 765 static size_t starts = 0; member in namespace:art::Test913Heaps
773 starts++;
808 jint result = static_cast<jint>(starts);
809 starts = 0;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
DB_Results.java 290 long[] starts = new long[10]; field in class:DB_Results.LogWriter
297 void starts(String log) { method in class:DB_Results.LogWriter
305 this.starts[this.depth] = System.currentTimeMillis();
310 throw new RuntimeException("Invalid call to ends (missing corresponding starts call)!"); //$NON-NLS-1$
313 this.times[this.depth] += System.currentTimeMillis() - this.starts[this.depth];
324 this.starts = new long[10];
    [all...]
  /external/freetype/src/sfnt/
ttcmap.c 877 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; local
    [all...]
  /external/ltp/pan/
ltp-pan.c 169 int starts = -1; local
225 "Usage: pan -n name [ -SyAehpq ] [ -s starts ]"
251 starts = atoi(optarg);
287 timed = 1; //-t implies run as many starts as possible, by default
387 /* Supply a default for starts. If we are in sequential mode, use
390 if (timed == 1 && starts == -1) { /* timed, infinite by default */
391 starts = -1;
392 } else if (starts == -1) {
394 starts = coll->cnt;
396 starts = 1
    [all...]
  /external/pdfium/third_party/freetype/src/sfnt/
ttcmap.c 846 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; local
911 starts = table + 16 + num_segs * 2;
912 deltas = starts + num_segs * 2;
928 FT_Byte* p_start = starts
    [all...]

Completed in 796 milliseconds

1 2 3 4 5 6