Searched refs:values (Results 151 - 175 of 2560) sorted by relevance

1234567891011>>

/external/oprofile/daemon/liblegacy/
H A Dopd_sample_files.c71 struct mangle_values values; local
74 values.flags = 0;
76 values.flags |= MANGLE_KERNEL;
79 values.flags |= MANGLE_TGID | MANGLE_TID;
80 values.tid = image->tid;
81 values.tgid = image->tgid;
85 values.flags |= MANGLE_CPU;
86 values.cpu = cpu_nr;
89 values.event_name = event->name;
90 values
[all...]
/external/ceres-solver/internal/ceres/
H A Dlinear_least_squares_problems.cc194 double* values = A->mutable_values(); local
202 values[nnz++] = 1;
206 values[nnz++] = 2;
213 values[nnz++] = 3;
217 values[nnz++] = 4;
224 values[nnz++] = 5;
228 values[nnz++] = 6;
235 values[nnz++] = 7;
239 values[nnz++] = 8;
246 values[nn
[all...]
/external/ceres-solver/include/ceres/
H A Dproblem.h268 void AddParameterBlock(double* values, int size);
274 void AddParameterBlock(double* values,
292 void RemoveParameterBlock(double* values);
306 void SetParameterBlockConstant(double* values);
309 void SetParameterBlockVariable(double* values);
317 void SetParameterization(double* values,
323 const LocalParameterization* GetParameterization(double* values) const;
326 void SetParameterLowerBound(double* values, int index, double lower_bound);
327 void SetParameterUpperBound(double* values, int index, double upper_bound);
346 int ParameterBlockSize(const double* values) cons
[all...]
/external/chromium_org/chrome/browser/ui/tabs/
H A Dpinned_tab_codec.cc9 #include "base/values.h"
41 // Adds a DictionaryValue to |values| representing |tab|.
42 static void EncodeTab(const StartupTab& tab, base::ListValue* values) { argument
47 values->Append(value.release());
50 // Adds a base::DictionaryValue to |values| representing the pinned tab at the
54 base::ListValue* values) {
68 values->Append(value.release());
75 values->Append(value.release());
81 static void EncodePinnedTabs(Browser* browser, base::ListValue* values) { argument
84 EncodePinnedTab(tab_model, i, values);
52 EncodePinnedTab(TabStripModel* model, int index, base::ListValue* values) argument
135 base::ListValue* values = update.Get(); local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpixel.c110 const GLfloat *values)
124 ctx->PixelMaps.StoS.Map[i] = (GLfloat)IROUND(values[i]);
131 ctx->PixelMaps.ItoI.Map[i] = values[i];
138 GLfloat val = CLAMP(values[i], 0.0F, 1.0F);
184 _mesa_PixelMapfv( GLenum map, GLsizei mapsize, const GLfloat *values )
206 GL_FLOAT, INT_MAX, values)) {
210 values = (const GLfloat *) _mesa_map_pbo_source(ctx, &ctx->Unpack, values);
211 if (!values) {
219 store_pixelmap(ctx, map, mapsize, values);
109 store_pixelmap(struct gl_context *ctx, GLenum map, GLsizei mapsize, const GLfloat *values) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dpixel.c110 const GLfloat *values)
124 ctx->PixelMaps.StoS.Map[i] = (GLfloat)IROUND(values[i]);
131 ctx->PixelMaps.ItoI.Map[i] = values[i];
138 GLfloat val = CLAMP(values[i], 0.0F, 1.0F);
184 _mesa_PixelMapfv( GLenum map, GLsizei mapsize, const GLfloat *values )
206 GL_FLOAT, INT_MAX, values)) {
210 values = (const GLfloat *) _mesa_map_pbo_source(ctx, &ctx->Unpack, values);
211 if (!values) {
219 store_pixelmap(ctx, map, mapsize, values);
109 store_pixelmap(struct gl_context *ctx, GLenum map, GLsizei mapsize, const GLfloat *values) argument
[all...]
/external/chromium_org/net/cert/
H A Dx509_cert_types_win.cc64 std::vector<std::string>* values[]) {
70 values[oid]->push_back(value);
78 void SetSingle(const std::vector<std::string>& values, argument
81 LOG_IF(WARNING, values.size() > 1) << "Didn't expect multiple values";
82 if (!values.empty())
83 *single_value = values[0];
113 std::vector<std::string>* values[] = { local
121 DCHECK(arraysize(kOIDs) == arraysize(values));
127 if (!AddTypeValuePair(ava, values))
63 AddTypeValuePair(PCERT_RDN_ATTR attribute, std::vector<std::string>* values[]) argument
[all...]
/external/chromium_org/tools/relocation_packer/src/
H A Dleb128.cc29 // Add a vector of values to the encoding.
30 void Leb128Encoder::EnqueueAll(const std::vector<ELF::Xword>& values) { argument
31 for (size_t i = 0; i < values.size(); ++i)
32 Enqueue(values[i]);
63 // Decode and retrieve all remaining values from the encoding.
64 void Leb128Decoder::DequeueAll(std::vector<ELF::Xword>* values) { argument
66 values->push_back(Dequeue());
H A Dsleb128.cc49 // Add a vector of values to the encoding.
50 void Sleb128Encoder::EnqueueAll(const std::vector<ELF::Sxword>& values) { argument
51 for (size_t i = 0; i < values.size(); ++i)
52 Enqueue(values[i]);
89 // Decode and retrieve all remaining values from the encoding.
90 void Sleb128Decoder::DequeueAll(std::vector<ELF::Sxword>* values) { argument
92 values->push_back(Dequeue());
/external/chromium_org/tools/telemetry/telemetry/results/
H A Dcsv_output_formatter.py16 values = merge_values.MergeLikeValuesFromSamePage(
19 header_value_names = self._OutputHeader(values, writer)
21 values, lambda value: value.page.url)
27 def _OutputHeader(self, values, csv_writer):
30 This will retrieve the header string from the given values. As a
31 results, you would typically pass it all of the recorded values at
34 with that set of values.
37 values: A set of values from which to extract the header string,
46 for value in values
[all...]
H A Dpage_run.py25 def values(self): member in class:PageRun
26 """The values that correspond to this page run."""
34 SkipValue in self.values.
42 To be precise: returns true if there is any SkipValue in self.values.
44 return any(isinstance(v, skip.SkipValue) for v in self.values)
51 SkipValue in self.values.
54 isinstance(v, failure.FailureValue) for v in self.values)
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DTestMapEntrySetGenerator.java24 * Creates map entries using sample keys and sample values.
33 private final SampleElements<V> values; field in class:TestMapEntrySetGenerator
36 SampleElements<K> keys, SampleElements<V> values) {
38 this.values = values;
43 return SampleElements.mapEntries(keys, values);
35 TestMapEntrySetGenerator( SampleElements<K> keys, SampleElements<V> values) argument
/external/lzma/CPP/7zip/Common/
H A DMethodProps.cpp52 NWindows::NCOM::CPropVariant *values = new NWindows::NCOM::CPropVariant[numProps]; local
60 NWindows::NCOM::CPropVariant &value = values[i];
71 res = setCoderProperties->SetCoderProperties(&propIDs.Front(), values, numProps);
75 delete []values;
78 delete []values;
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp39 CPropVariant *values = new CPropVariant[properties.Size()]; local
64 values[i] = propVariant;
70 RINOK(setProperties->SetProperties(&names.Front(), values, names.Size()));
74 delete []values;
77 delete []values;
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_external_delegate.cc84 std::vector<base::string16> values(suggested_values);
90 ApplyAutofillWarnings(&values, &labels, &icons, &ids);
92 // Add a separator to go between the values and menu items.
93 values.push_back(base::string16());
109 ApplyAutofillOptions(&values, &labels, &icons, &ids);
114 values.pop_back();
120 // If anything else is added to modify the values after inserting the data
123 InsertDataListValues(&values, &labels, &icons, &ids);
126 if (values.empty() &&
129 values
305 ApplyAutofillWarnings( std::vector<base::string16>* values, std::vector<base::string16>* labels, std::vector<base::string16>* icons, std::vector<int>* unique_ids) argument
348 ApplyAutofillOptions( std::vector<base::string16>* values, std::vector<base::string16>* labels, std::vector<base::string16>* icons, std::vector<int>* unique_ids) argument
370 InsertDataListValues( std::vector<base::string16>* values, std::vector<base::string16>* labels, std::vector<base::string16>* icons, std::vector<int>* unique_ids) argument
[all...]
/external/chromium_org/content/browser/dom_storage/
H A Ddom_storage_database_unittest.cc88 void CreateMapWithValues(DOMStorageValuesMap* values) { argument
102 (*values)[kCannedKeys[i]] = kCannedValues[i];
136 DOMStorageValuesMap values; local
137 db.ReadAllValues(&values);
138 EXPECT_EQ(storage.size(), values.size());
181 DOMStorageValuesMap values; local
182 db.ReadAllValues(&values);
186 values[ASCIIToUTF16("key")] =
188 db.CommitChanges(false, values);
196 CheckValuesMatch(&db, values);
302 DOMStorageValuesMap values; local
322 DOMStorageValuesMap values; local
358 DOMStorageValuesMap values; local
376 DOMStorageValuesMap values; local
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp27 * Implements tracking of values copied between registers, and
61 try_constant_propagation(vec4_instruction *inst, int arg, src_reg *values[4]) argument
68 src_reg value = *values[0];
70 if (!value.equals(values[i]))
164 vec4_instruction *inst, int arg, src_reg *values[4])
171 src_reg value = *values[0];
174 if (value.file != values[i]->file ||
175 value.reg != values[i]->reg ||
176 value.reg_offset != values[i]->reg_offset ||
177 value.type != values[
163 try_copy_propagation(struct intel_context *intel, vec4_instruction *inst, int arg, src_reg *values[4]) argument
272 src_reg *values[4]; local
[all...]
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_vec4_copy_propagation.cpp27 * Implements tracking of values copied between registers, and
61 try_constant_propagation(vec4_instruction *inst, int arg, src_reg *values[4]) argument
68 src_reg value = *values[0];
70 if (!value.equals(values[i]))
164 vec4_instruction *inst, int arg, src_reg *values[4])
171 src_reg value = *values[0];
174 if (value.file != values[i]->file ||
175 value.reg != values[i]->reg ||
176 value.reg_offset != values[i]->reg_offset ||
177 value.type != values[
163 try_copy_propagation(struct intel_context *intel, vec4_instruction *inst, int arg, src_reg *values[4]) argument
272 src_reg *values[4]; local
[all...]
/external/chromium_org/net/spdy/
H A Dhpack_round_trip_test.cc123 // Grow vectors of names & values, which are seeded with fixtures and then
133 vector<string> values; local
134 values.push_back("/");
135 values.push_back("/index.html");
136 values.push_back("200");
137 values.push_back("404");
138 values.push_back("");
139 values.push_back("baz=bing; foo=bar; garbage");
140 values.push_back("baz=bing; fizzle=fazzle; garbage");
161 if (value_index >= values
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log_c.cc59 const int* values,
62 return webrtc::DataLog::InsertCell(table_name, column_name, values, length);
74 const float* values,
77 return webrtc::DataLog::InsertCell(table_name, column_name, values, length);
89 const double* values,
92 return webrtc::DataLog::InsertCell(table_name, column_name, values, length);
104 const int32_t* values,
107 return webrtc::DataLog::InsertCell(table_name, column_name, values, length);
119 const uint32_t* values,
122 return webrtc::DataLog::InsertCell(table_name, column_name, values, lengt
57 WebRtcDataLog_InsertArray_int(const char* table_name, const char* column_name, const int* values, int length) argument
72 WebRtcDataLog_InsertArray_float(const char* table_name, const char* column_name, const float* values, int length) argument
87 WebRtcDataLog_InsertArray_double(const char* table_name, const char* column_name, const double* values, int length) argument
102 WebRtcDataLog_InsertArray_int32(const char* table_name, const char* column_name, const int32_t* values, int length) argument
117 WebRtcDataLog_InsertArray_uint32(const char* table_name, const char* column_name, const uint32_t* values, int length) argument
132 WebRtcDataLog_InsertArray_int64(const char* table_name, const char* column_name, const int64_t* values, int length) argument
[all...]
/external/chromium_org/tools/perf/metrics/
H A Dtest_page_test_results.py19 values = [value for value in self.all_page_specific_values
21 assert len(values) == 1, 'Could not find value named %s' % name
22 return values[0]
/external/chromium_org/v8/test/mjsunit/es6/
H A Dmirror-collections.js79 var values = setMirror.values(); variable
80 assertEquals(2, values.length);
81 assertSame(o2, values[0]);
82 assertEquals(undefined, values[1]);
126 assertTrue(weakSetMirror.values().length <= 5);
130 var values = weakSetMirror.values();
131 assertEquals(2, values.length);
133 for (var i = 0; i < values
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/functions/structure/
H A DFirstFunction.java21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
23 import com.google.clearsilver.jsilver.values.VariableValue;
H A DLastFunction.java21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
23 import com.google.clearsilver.jsilver.values.VariableValue;
H A DSubcountFunction.java21 import com.google.clearsilver.jsilver.values.Value;
22 import static com.google.clearsilver.jsilver.values.Value.literalConstant;
23 import com.google.clearsilver.jsilver.values.VariableValue;

Completed in 531 milliseconds

1234567891011>>