Searched refs:values (Results 1 - 25 of 2718) sorted by last modified time

1234567891011>>

/external/zlib/src/
H A Dmake_vms.com658 $! Check for properties of C/C++ compiler with multiple result values
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp354 /*provide some proper output values if error will happen*/
535 is a code. The 2 rows are the 2 possible bit values (0 or 1), there are as
607 /*step 2: generate the nextcode values*/
941 /*make sure that length values that aren't filled in will be 0, or a wrong tree will be generated*/
1149 /*part 5: fill in all the out[n] values based on the length and dist*/
1314 static void addLengthDistance(uivector* values, size_t length, size_t distance) argument
1316 /*values in encoded vector are those used by deflate:
1327 uivector_push_back(values, length_code + FIRST_LENGTH_CODE_INDEX);
1328 uivector_push_back(values, extra_length);
1329 uivector_push_back(values, dist_cod
[all...]
/external/zxing/core/
H A Dcore.jar ... final synthetic com.google.zxing.DecodeHintType[] $VALUES public static com.google.zxing.DecodeHintType[] values ...
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dupnp_xml.c112 * Some values implied by the above are however illegal because they
177 * other in args and their values go here, if any
/external/wpa_supplicant_8/src/wps/
H A Dupnp_xml.c112 * Some values implied by the above are however illegal because they
177 * other in args and their values go here, if any
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dupnp_xml.c112 * Some values implied by the above are however illegal because they
177 * other in args and their values go here, if any
/external/xmlwriter/src/org/jheer/
H A DXMLWriter.java154 * @param values the values of the attributes
159 protected void tag(String tag, String[] names, String[] values, argument
170 escapeString(values[i]);
187 * @param values the values of the attributes
190 public void tag(String tag, String[] names, String[] values, int nattr) throws IOException argument
192 tag(tag, names, values, nattr, true);
200 * @param values the values o
203 start(String tag, String[] names, String[] values, int nattr) argument
283 tag(String tag, ArrayList names, ArrayList values, int nattr, boolean close) argument
314 tag(String tag, ArrayList names, ArrayList values, int nattr) argument
327 start(String tag, ArrayList names, ArrayList values, int nattr) argument
[all...]
/external/wpa_supplicant_8/hs20/client/
H A Dest.c206 * values SET SIZE(1..MAX) OF OBJECT IDENTIFIER }
211 STACK_OF(ASN1_OBJECT) *values;
229 ASN1_SET_OF(Attribute, values, ASN1_OBJECT)
268 STACK_OF(ASN1_OBJECT) *values,
274 num = sk_ASN1_OBJECT_num(values);
276 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(values, i);
304 if (!attr || !attr->type || !attr->values)
312 add_csrattrs_ext_req(ctx, attr->values, exts);
316 num = sk_ASN1_OBJECT_num(attr->values);
318 ASN1_OBJECT *oid = sk_ASN1_OBJECT_value(attr->values,
267 add_csrattrs_ext_req(struct hs20_osu_client *ctx, STACK_OF(ASN1_OBJECT) *values, STACK_OF(X509_EXTENSION) *exts) argument
[all...]
/external/webrtc/webrtc/sound/
H A Dpulseaudiosoundsystem.cc107 if (pa_volume < channel_volumes->values[i]) {
108 pa_volume = channel_volumes->values[i];
/external/webrtc/webrtc/system_wrappers/include/
H A Ddata_log_c.h41 const int* values,
48 const float* values,
55 const double* values,
62 const int32_t* values,
69 const uint32_t* values,
76 const int64_t* values,
/external/webrtc/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...]
H A Ddata_log_c_helpers_unittest.c71 int values[kTestArrayLen] = {1, 2, 3, 4}; local
72 return WebRtcDataLog_InsertArray_int(kTableName, kColumnName2, values,
81 float values[kTestArrayLen] = {1.0f, 2.0f, 3.0f, 4.0f}; local
82 return WebRtcDataLog_InsertArray_float(kTableName, kColumnName2, values,
91 double values[kTestArrayLen] = {1.0, 2.0, 3.0, 4.0}; local
92 return WebRtcDataLog_InsertArray_double(kTableName, kColumnName2, values,
101 int32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
102 return WebRtcDataLog_InsertArray_int32(kTableName, kColumnName2, values,
111 uint32_t values[kTestArrayLen] = {1, 2, 3, 4}; local
112 return WebRtcDataLog_InsertArray_uint32(kTableName, kColumnName2, values,
121 int64_t values[kTestArrayLen] = {1, 2, 3, 4}; local
[all...]
H A Ddata_log_unittest.cc22 // A class for storing the values expected from a log table column when
27 : values(),
33 : values(expected_values),
37 std::vector<std::string> values; member in struct:ExpectedValues
66 EXPECT_EQ(str, it->second.values[row]);
67 if (str != it->second.values[row])
/external/webrtc/webrtc/test/testsupport/
H A Dperf_test.cc25 const std::string& values,
42 << prefix << values << suffix << " " << units << std::endl;
49 const std::string& values,
54 printf("%s", ResultsToString(measurement, modifier, trace, values,
134 const std::string& values,
137 PrintResultsImpl(measurement, modifier, trace, values,
145 const std::string& values,
148 output += ResultsToString(measurement, modifier, trace, values,
22 ResultsToString(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& prefix, const std::string& suffix, const std::string& units, bool important) argument
46 PrintResultsImpl(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& prefix, const std::string& suffix, const std::string& units, bool important) argument
131 PrintResultList(const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& units, bool important) argument
141 AppendResultList(std::string& output, const std::string& measurement, const std::string& modifier, const std::string& trace, const std::string& values, const std::string& units, bool important) argument
H A Dperf_test.h69 // The |<values>| should be two comma-separated numbers, the mean and
86 // Like PrintResult(), but prints an entire list of results. The |values|
93 const std::string& values,
101 const std::string& values,
/external/webrtc/webrtc/video/
H A Dfull_stack_plot.py94 def __init__(self, label, values, flags):
96 self.values = values
156 def _hide(self, values):
158 Replaces values for dropped frames with None.
159 These values are then skipped by the plot() method.
162 return [None if self.samples[DROPPED][k] else values[k]
163 for k in range(len(values))]
174 values = self.samples[field_id]
177 values
[all...]
/external/webrtc/webrtc/modules/video_coding/codecs/h264/
H A Dh264_video_toolbox_decoder.cc27 CFTypeRef* values,
29 return CFDictionaryCreate(nullptr, keys, values, size,
207 CFTypeRef values[attributes_size] = {kCFBooleanTrue, io_surface_value, local
210 internal::CreateCFDictionary(keys, values, attributes_size);
26 CreateCFDictionary(CFTypeRef* keys, CFTypeRef* values, size_t size) argument
H A Dh264_video_toolbox_encoder.cc29 CFTypeRef* values,
31 return CFDictionaryCreate(kCFAllocatorDefault, keys, values, size,
285 CFTypeRef values[] = {kCFBooleanTrue}; local
286 frame_properties = internal::CreateCFDictionary(keys, values, 1);
354 CFTypeRef values[attributes_size] = {kCFBooleanTrue, io_surface_value, local
357 internal::CreateCFDictionary(keys, values, attributes_size);
28 CreateCFDictionary(CFTypeRef* keys, CFTypeRef* values, size_t size) argument
/external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/
H A Dplot_neteq_delay.m33 % return a vector of delay values for the points in the given vector
114 peak_ix=find(s.optbuf(cng_ix)<0); % peak mode is labeled with negative values
/external/webrtc/webrtc/modules/audio_device/linux/
H A Daudio_mixer_manager_pulse_linux.cc1037 if (paVolume < i->volume.values[j])
1039 paVolume = i->volume.values[j];
1066 if (paVolume < i->volume.values[j])
1068 paVolume = i->volume.values[j];
1090 if (paVolume < i->volume.values[j])
1092 paVolume = i->volume.values[j];
/external/webrtc/webrtc/modules/audio_processing/test/
H A Dtest_utils.cc132 const std::vector<float> values = ParseList<float>(mic_positions); local
134 rtc::CheckedDivExact(values.size(), static_cast<size_t>(3));
139 for (size_t i = 0; i < values.size(); i += 3) {
140 result.push_back(Point(values[i + 0], values[i + 1], values[i + 2]));
H A Dtest_utils.h128 // Returns a vector<T> parsed from whitespace delimited values in to_parse,
132 std::vector<T> values; local
138 std::back_inserter(values));
140 return values;
/external/webrtc/webrtc/modules/audio_processing/transient/test/
H A DplotDetection.m4 %Plots the signal alongside the detection values.
7 %DATfile: The file containing the detection values in binary float format.
9 %chunkSize: The chunk size used to compute the detection values in seconds.
/external/webrtc/tools/autoroller/
H A Droll_chromium_revision.py99 assert all(type(value) == str for value in extra_env.values())
/external/webrtc/tools/python_charts/webrtc/
H A Ddata_helper.py90 # Create that and copy frame_number values from the first data set
178 for values in configuration:
179 name = values['name']
180 value = values['value']

Completed in 523 milliseconds

1234567891011>>