HomeSort by relevance Sort by last modified time
    Searched refs:trial (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/wilhelm/tools/hashgen/
part8.c 5 SLInterfaceID trial = &SL_IID_array[MPH]; variable
6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /external/icu/icu4c/source/layout/
LookupTables.cpp 35 LEReferenceTo<LookupSegment> trial(entry, success, extra);
39 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
40 entry = trial;
45 trial = entry; // copy
46 trial.addOffset(probe, success);
48 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
49 entry = trial;
67 LEReferenceTo<LookupSingle> trial(entry, success, extra);
69 if (SWAPW(trial->glyph) <= ttGlyph) {
70 entry = trial;
    [all...]
PairPositioningSubtables.cpp 153 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
155 if (SWAPW(trial->secondGlyph) <= glyphID) {
156 record = trial;
161 trial = (const PairValueRecord *) ((char *) record + probe);
163 if (SWAPW(trial->secondGlyph) <= glyphID) {
164 record = trial;
  /frameworks/wilhelm/src/autogen/
IID_to_MPH.c 324 SLInterfaceID trial = &SL_IID_array[MPH]; local
325 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /external/icu/icu4c/source/test/perf/howExpensiveIs/
howExpensiveIs.cpp 177 fprintf(stderr, "trial: %d/%d = %.9fs\n", i, ITERATIONS,times[i]);
303 double trial = unum_parseDouble(fFmt,fStr,fLen, NULL, &setupStatus); local
304 if(U_SUCCESS(setupStatus) && trial!=fExpect) {
307 fFile,fLine,getName(),trial,fExpect);
312 double trial=0.0; local
315 trial = unum_parse(fFmt,fStr,fLen, NULL, &setupStatus);
432 int32_t trial = unum_formatDouble(fFmt,fExpect, buf, 100, NULL, &setupStatus); local
434 || trial!=fLen
435 ||trial<=0
436 || u_strncmp(fStr,buf,trial) ) {
446 int32_t trial; local
556 int32_t trial = unum_formatInt64(fFmt,fExpect, buf, 100, NULL, &setupStatus); local
570 int32_t trial; local
663 int32_t trial; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpMath.java 177 int trial = 1; local
181 prevtrial = trial;
182 trial = trial * 2;
183 if (trial > a) {
189 trial = prevtrial;
191 a -= trial;
231 int trial = 1; local
236 prevtrial = trial;
238 trial = trial * 2
    [all...]
Dfp.java 1584 int trial=0; \/\/ trial quotient digit local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
Utf8Test.java 68 for (int trial = 0; trial < 100; trial++) {
  /external/webp/src/enc/
alpha.c 259 FilterTrial trial; local
262 &trial);
263 if (ok && trial.score < best.score) {
265 best = trial;
267 VP8BitWriterWipeOut(&trial.bw);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
RateLimiterTest.java 303 for (int trial = 0; trial < 100; trial++) {
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
RoundTripTest.java 231 String trial = Normalizer.compose(sample, false); local
232 if (trial.length() == 2) {
233 resultToAddTo.add(trial);
244 String trial = Normalizer.compose(sample, false); local
245 if (trial.length() == 2) {
246 resultToAddTo.add(trial);
252 String trial = Normalizer.compose(sample, false); local
253 if (trial.length() == 2) {
254 resultToAddTo.add(trial);
    [all...]
  /external/icu/icu4c/source/common/
caniter.cpp 566 UnicodeString trial; local
567 nfd.normalize(temp, trial, status);
568 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
uniset.cpp 662 const UnicodeString& trial = *(const UnicodeString*)strings->elementAt(i);
664 //if (trial.length() == 0) {
667 // assert(trial.length() != 0); // We ensure this elsewhere
669 UChar c = trial.charAt(forward ? 0 : trial.length() - 1);
676 int32_t matchLen = matchRest(text, offset, limit, trial);
686 if (matchLen == trial.length()) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateTimePatternGenerator.java 789 String trial = getBestPattern(cur.toString(), cur, MATCH_NO_OPTIONS); local
    [all...]
UnicodeSet.java 1040 String trial = null; local
    [all...]
  /external/ceres-solver/internal/ceres/
compressed_row_sparse_matrix_test.cc 508 for (int trial = 0; trial < kNumTrials; ++trial) {
rotation_test.cc 639 for (int trial = 0; trial < kNumTrials; ++trial) {
    [all...]
  /external/aac/libAACdec/src/
aacdec_hcrs.cpp 127 UINT trial; local
215 for ( trial = *pNumSegment; trial > 0; trial-- ) {
299 } /* end of trial loop */
    [all...]
  /hardware/qcom/audio/hal/
audio_hw.c 2856 int trial; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_heapq.py 140 for trial in xrange(100):
143 if trial & 1: # Half of the time, use heapify
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_heapq.py 140 for trial in xrange(100):
143 if trial & 1: # Half of the time, use heapify
  /external/littlemock/src/com/google/testing/littlemock/
LittleMock.java 158 for (MethodCall trial : calls) {
159 if (mLastCall == null || mLastCall.mInvocationOrder < trial.mInvocationOrder) {
160 mLastCall = trial;
163 lastTrial = trial;
    [all...]
  /external/icu/icu4c/source/i18n/
dtptngen.cpp 1066 DateTimeMatcher trial = it.next(); local
1323 UnicodeString trial = getBestPattern(current.getPattern(), status); local
    [all...]
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
aether-connector-wagon-0.9.0.M2.jar 
  /external/clang/tools/c-index-test/
c-index-test.c 1580 int trial; local
    [all...]

Completed in 1246 milliseconds

1 2