Searched refs:values (Results 276 - 300 of 2560) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/courgette/
H A Dcourgette_tool.cc449 std::vector<base::FilePath> values; local
452 values.push_back(base::FilePath(args[i]));
474 if (values.size() != 1)
476 return !Supported(values[0]);
478 if (values.size() != 2)
480 Disassemble(values[0], values[1]);
482 if (values.size() != 2)
484 Assemble(values[0], values[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_state_constants.c111 const float (*values)[4])
143 values[i],
152 values[i][0],
153 values[i][1],
154 values[i][2],
155 values[i][3]);
163 values[j],
171 values[j][0],
172 values[j][1],
173 values[
107 emit_const_range(struct svga_context *svga, unsigned shader, unsigned offset, unsigned count, const float (*values)[4]) argument
[all...]
/external/chromium_org/tools/telemetry/telemetry/util/
H A Dstatistics.py271 def GeneralizedMean(values, exponent):
273 if not values:
276 for v in values:
278 return (sum_of_powers / len(values)) ** (1.0/exponent)
281 def Median(values):
282 """Gets the median of a list of values."""
283 return Percentile(values, 50)
286 def Percentile(values, percentile):
287 """Calculates the value below which a given percentage of values fall.
289 For example, if 17% of the values ar
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DSetNavigationTester.java45 private List<E> values; field in class:SetNavigationTester
53 values = Helpers.copyToList(getSubjectGenerator().getSampleElements(
55 Collections.sort(values, navigableSet.comparator());
58 if (values.size() >= 1) {
59 a = values.get(0);
60 if (values.size() >= 3) {
61 b = values.get(1);
62 c = values.get(2);
156 values.subList(1, values
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_constants.c111 const float (*values)[4])
143 values[i],
152 values[i][0],
153 values[i][1],
154 values[i][2],
155 values[i][3]);
163 values[j],
171 values[j][0],
172 values[j][1],
173 values[
107 emit_const_range(struct svga_context *svga, unsigned shader, unsigned offset, unsigned count, const float (*values)[4]) argument
[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/
H A DBuildResults.java41 double[][] values; field in class:BuildResults
60 * Clean values when several measures has been done for the same build.
63 int length = this.values.length;
65 int vLength = this.values[dim_id].length;
68 IStatus status = new Status(IStatus.WARNING, PerformanceTestPlugin.PLUGIN_ID, "Clean "+vLength+" values for "+this.parent+">"+this.name+" ("+this.count[dim_id]+" measures)..."); //$NON-NLS-1$//$NON-NLS-2$//$NON-NLS-3$//$NON-NLS-4$ //$NON-NLS-5$
74 this.average[dim_id] += this.values[dim_id][i];
79 double deviation= this.average[dim_id] - this.values[dim_id][i];
83 this.values[dim_id] = null;
86 if (this.values[i] != null) {
90 this.values
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_MapTest2.java46 assertTrue("Should not have values", !map.values().iterator()
60 assertTrue("Should not have values", !map.values().iterator()
/external/ceres-solver/internal/ceres/
H A Ddynamic_compressed_row_sparse_matrix_test.cc86 std::vector<double> values; local
92 values.push_back(i + 1);
95 ASSERT_EQ(values.size(), expected_num_nonzeros);
102 std::copy(values.begin(), values.end(), tsm->mutable_values());
103 tsm->set_num_nonzeros(values.size());
155 ConstVectorRef crsm_values(crsm->values(), crsm->num_nonzeros());
156 ConstVectorRef dcrsm_values(dcrsm->values(), dcrsm->num_nonzeros());
/external/chromium_org/chrome/browser/policy/test/
H A Dasn1der.py61 def Sequence(values):
62 """Encodes a sequence of other values.
65 values: the list of values, must be strings holding already encoded data.
69 return Data(SEQUENCE, ''.join(values))
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dcontroller.js71 var values, accumulator, operator, operand;
73 values = this.model.handle(input);
74 accumulator = values.accumulator;
75 operator = values.operator;
76 operand = values.operand;
83 this.view.addValues({operator: values.operator});
91 Controller.prototype.updateValues_ = function(values) {
95 var after = !before.accumulator ? values : {};
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableStrokeDasharrayList.h59 AnimatableStrokeDasharrayList(WillBeHeapVector<RefPtrWillBeMember<AnimatableValue> >& values) argument
60 : AnimatableRepeatable(values)
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioParam.idl44 // Sets an array of arbitrary parameter values starting at time for the given duration.
45 // The number of values will be scaled to fit into the desired duration.
46 [RaisesException] void setValueCurveAtTime(Float32Array values, double time, double duration);
/external/chromium_org/tools/relocation_packer/src/
H A Dleb128.h8 // of pairs of relatively small positive integer values. Encoding these as
34 // Add a vector of values to the encoding stream.
35 // |values| is the vector of unsigned ints to add.
36 void EnqueueAll(const std::vector<ELF::Xword>& values);
38 // Retrieve the encoded representation of the values.
60 // Retrieve all remaining values from the encoded stream.
61 // |values| is the vector of decoded data.
62 void DequeueAll(std::vector<ELF::Xword>* values);
H A Dsleb128.h8 // of pairs signed integer values, many with small values. Encoding these
35 // Add a vector of values to the encoding stream.
36 // |values| is the vector of signed ints to add.
37 void EnqueueAll(const std::vector<ELF::Sxword>& values);
39 // Retrieve the encoded representation of the values.
61 // Retrieve all remaining values from the encoded stream.
62 // |values| is the vector of decoded data.
63 void DequeueAll(std::vector<ELF::Sxword>* values);
/external/deqp/modules/glshared/
H A DglsStateChangePerfTestCases.cpp65 ResultStats calculateStats (const vector<deUint64>& values) argument
71 for (int i = 0; i < (int)values.size(); i++)
72 sum += values[i];
74 result.mean = ((double)sum) / values.size();
76 for (int i = 0; i < (int)values.size(); i++)
78 const double val = (double)values[i];
82 result.variance /= values.size();
85 const int n = (int)(values.size()/2);
87 vector<deUint64> sortedValues = values;
94 for (int i = 0; i < (int)values
166 calculateVariance(const vector<deUint64>& values, double avg) argument
179 findMin(const vector<deUint64>& values) argument
189 findMax(const vector<deUint64>& values) argument
201 vector<deUint64> values = v; local
677 calculateAverage(const vector<deUint64>& values) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DForwardingListMultimap.java51 @Override public List<V> replaceValues(K key, Iterable<? extends V> values) { argument
52 return delegate().replaceValues(key, values);
H A DForwardingSetMultimap.java53 @Override public Set<V> replaceValues(K key, Iterable<? extends V> values) { argument
54 return delegate().replaceValues(key, values);
H A DForwardingSortedSetMultimap.java53 K key, Iterable<? extends V> values) {
54 return delegate().replaceValues(key, values);
52 replaceValues( K key, Iterable<? extends V> values) argument
/external/jmdns/src/javax/jmdns/impl/constants/
H A DDNSResultCode.java130 for (DNSResultCode aCode : DNSResultCode.values()) {
138 for (DNSResultCode aCode : DNSResultCode.values()) {
/external/jsilver/src/com/google/clearsilver/jsilver/functions/operators/
H A DAddFunction.java21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalValue;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/string/
H A DCrcFunction.java20 import com.google.clearsilver.jsilver.values.Value;
21 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
/external/libyuv/
H A Dsetup_env.bat1 :: This script must not rely on any external tools or PATH values.
/external/smack/src/org/jivesoftware/smackx/
H A DReportedData.java84 // The field is created with all the values of the data form's field
85 List<String> values = new ArrayList<String>();
87 values.add(it.next());
89 fieldList.add(new Field(field.getVariable(), values));
229 * Returns the values of the field whose variable matches the requested variable.
232 * @return the values of the field whose variable matches the requested variable.
256 private List<String> values; field in class:ReportedData.Field
258 public Field(String variable, List<String> values) { argument
260 this.values = values;
[all...]
/external/deqp/framework/platform/win32/
H A DtcuWGL.cpp268 int values[DE_LENGTH_OF_ARRAY(attribs)]; local
270 if (!wgl.getPixelFormatAttribivARB(deviceCtx, 0, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &values[0]))
273 // \todo [2013-04-14 pyry] Do we need to filter values at all?
274 std::vector<int> pixelFormats(values[0]);
275 for (int i = 0; i < values[0]; i++)
309 int values [DE_LENGTH_OF_ARRAY(attribs)]; local
325 deMemset(&values[0], 0, sizeof(values));
326 if (!wgl.getPixelFormatAttribivARB(deviceCtx, pixelFormat, 0, DE_LENGTH_OF_ARRAY(attribs), &attribs[0], &values[0]))
329 // Translate values
[all...]
/external/chromium_org/base/threading/
H A Dthread_local_storage_unittest.cc102 int values[kNumThreads]; local
110 values[index] = kInitialTlsValue;
111 thread_delegates[index] = new ThreadLocalStorageRunner(&values[index]);
124 EXPECT_EQ(values[index], kFinalTlsValue);

Completed in 2259 milliseconds

<<11121314151617181920>>