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

  /system/media/wilhelm/tools/hashgen/
part8.c 5 SLInterfaceID trial = &SL_IID_array[MPH]; variable
6 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /external/icu4c/layout/
LookupTables.cpp 34 const LookupSegment *trial = (const LookupSegment *) ((char *) entry + extra); local
36 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
37 entry = trial;
42 trial = (const LookupSegment *) ((char *) entry + probe);
44 if (SWAPW(trial->lastGlyph) <= ttGlyph) {
45 entry = trial;
63 const LookupSingle *trial = (const LookupSingle *) ((char *) entry + extra); local
65 if (SWAPW(trial->glyph) <= ttGlyph) {
66 entry = trial;
71 trial = (const LookupSingle *) ((char *) entry + probe)
    [all...]
PairPositioningSubtables.cpp 148 const PairValueRecord *trial = (const PairValueRecord *) ((char *) record + extra);
150 if (SWAPW(trial->secondGlyph) <= glyphID) {
151 record = trial;
156 trial = (const PairValueRecord *) ((char *) record + probe);
158 if (SWAPW(trial->secondGlyph) <= glyphID) {
159 record = trial;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audioquality/experiments/
SequenceExperiment.java 38 protected byte[] getStim(Context context, int trial) {
54 for (int trial = 0; trial < n; trial++) {
55 playbackData[trial] = getStim(mContext, trial);
56 recordedData[trial] = loopback(playbackData[trial]);
57 setRecording(recordedData[trial], trial);
    [all...]
GainLinearityExperiment.java 54 protected byte[] getStim(Context context, int trial) {
55 float db = (trial - (LEVELS - 1)) * DB_STEP_SIZE;
  /external/chromium/base/metrics/
field_trial_unittest.cc 104 scoped_refptr<FieldTrial> trial; local
107 std::string name = StringPrintf("trial%d", ++counter);
108 trial = new FieldTrial(name, 10, winner, next_year_, 12, 31);
109 trial->AppendGroup(loser, 5); // 50% chance of not being chosen.
111 } while (trial->group_ != FieldTrial::kNotFinalized);
114 EXPECT_EQ(FieldTrial::kDefaultGroupNumber, trial->group());
117 EXPECT_EQ(winner, trial->group_name());
132 scoped_refptr<FieldTrial> trial(
134 trial->AppendGroup("first", 1); // 50% chance of being chosen.
136 if (trial->group_ != FieldTrial::kNotFinalized)
156 FieldTrial* trial = local
179 FieldTrial* trial = local
208 scoped_refptr<FieldTrial> trial; local
223 FieldTrial* trial = local
254 FieldTrial* trial = FieldTrialList::Find("Some_name"); local
255 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
260 ASSERT_NE(static_cast<FieldTrial*>(NULL), trial); local
275 FieldTrial* trial = local
291 FieldTrial* trial = local
    [all...]
field_trial.cc 157 void FieldTrialList::Register(FieldTrial* trial) {
163 DCHECK(!global_->PreLockedFind(trial->name()));
164 trial->AddRef();
165 global_->registered_[trial->name()] = trial;
203 // No definitive winner in this trial, use default_group_name as the
244 // In single process mode, we may have already created the field trial.
field_trial.h 36 // // Note: This field trial will run in Chrome instances compiled through
38 // scoped_refptr<FieldTrial> trial = new FieldTrial("MemoryExperiment", 1000,
41 // trial->AppendGroup("HighMem", 20); // 2% in HighMem group.
43 // trial->AppendGroup("LowMem", 20); // 2% in LowMem group.
45 // if (trial->group() == kHighMemGroup)
47 // else if (trial->group() == kLowMemGroup)
51 // slightly different names depending on what group the trial instance happened
93 typedef int Probability; // Probability type for being selected in a trial.
96 // assignment (and hence is not yet participating in the trial).
104 // and can be used to find the trial (only one trial can be present for eac
    [all...]
  /external/chromium/chrome/browser/prerender/
prerender_field_trial.cc 65 scoped_refptr<base::FieldTrial> trial(
69 const int kNoPrefetchGroup = trial->kDefaultGroupNumber;
71 trial->AppendGroup("ContentPrefetchEnabled", kYesPrefetchProbability);
73 trial->AppendGroup("ContentPrefetchPrerender1",
76 trial->AppendGroup("ContentPrefetchPrerenderControl1",
79 trial->AppendGroup("ContentPrefetchPrerender2",
82 trial->AppendGroup("ContentPrefetchPrerenderControl2",
84 const int trial_group = trial->group();
  /system/media/wilhelm/src/autogen/
IID_to_MPH.c 255 SLInterfaceID trial = &SL_IID_array[MPH]; local
256 if (!memcmp(iid, trial, sizeof(struct SLInterfaceID_)))
  /external/chromium/chrome/browser/
io_thread.cc 87 // Set up a field trial to see what impact the total number of concurrent
95 scoped_refptr<base::FieldTrial> trial(
101 int parallel_6 = trial->AppendGroup("parallel_6", kProbabilityPerGroup);
102 int parallel_7 = trial->AppendGroup("parallel_7", kProbabilityPerGroup);
103 int parallel_8 = trial->AppendGroup("parallel_8", kProbabilityPerGroup);
104 int parallel_9 = trial->AppendGroup("parallel_9", kProbabilityPerGroup);
105 int parallel_10 = trial->AppendGroup("parallel_10", kProbabilityPerGroup);
106 int parallel_14 = trial->AppendGroup("parallel_14", kProbabilityPerGroup);
107 int parallel_20 = trial->AppendGroup("parallel_20", kProbabilityPerGroup);
109 if (trial->group() == parallel_6
    [all...]
browser_main.cc 405 scoped_refptr<base::FieldTrial> trial(
410 int npn_spdy_grp = trial->kDefaultGroupNumber;
413 int npn_http_grp = trial->AppendGroup("npn_with_http", npnhttp_probability);
415 int trial_grp = trial->group();
431 // Setup SPDY CWND Field trial.
440 scoped_refptr<base::FieldTrial> trial(
444 trial->AppendGroup("cwnd10", kSpdyCwnd10);
445 trial->AppendGroup("cwnd16", kSpdyCwnd16);
446 trial->AppendGroup("cwndMin16", kSpdyCwndMin16);
447 trial->AppendGroup("cwndMin10", kSpdyCwndMin10)
    [all...]
  /external/chromium/chrome/browser/net/websocket_experiment/
websocket_experiment_runner.cc 32 scoped_refptr<base::FieldTrial> trial(
35 int active = trial->AppendGroup("active", 5); // 0.5% in active group.
37 bool run_experiment = (trial->group() == active);
  /external/icu4c/common/
caniter.cpp 565 UnicodeString trial; local
566 nfd.normalize(temp, trial, status);
567 if(U_FAILURE(status) || trial.compare(segment+segmentPos, segLen - segmentPos) != 0) {
uniset.cpp 660 const UnicodeString& trial = *(const UnicodeString*)strings->elementAt(i);
662 //if (trial.length() == 0) {
665 // assert(trial.length() != 0); // We ensure this elsewhere
667 UChar c = trial.charAt(forward ? 0 : trial.length() - 1);
674 int32_t matchLen = matchRest(text, offset, limit, trial);
684 if (matchLen == trial.length()) {
    [all...]
  /external/chromium/net/spdy/
spdy_session.cc 1447 base::FieldTrial* trial = base::FieldTrialList::Find("SpdyCwnd"); local
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 777 int trial; local
808 for (trial = 0; trial < trials; ++trial) {
810 trial >= remap_after_trial ? num_unsaved_files : 0,
811 trial >= remap_after_trial ? unsaved_files : 0,
    [all...]
  /external/icu4c/i18n/
dtptngen.cpp 971 DateTimeMatcher trial = it.next(); local
1228 UnicodeString trial = getBestPattern(current.getPattern(), status); local
    [all...]
  /external/dropbear/libtommath/
bn.tex     [all...]
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]

Completed in 466 milliseconds