Home
last modified time | relevance | path

Searched refs:maximum (Results 1 – 25 of 1079) sorted by relevance

12345678910>>...44

/external/webrtc/webrtc/common_audio/signal_processing/
Dmin_max_operations.c39 int absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW16C() local
46 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW16C()
47 maximum = absolute; in WebRtcSpl_MaxAbsValueW16C()
52 if (maximum > WEBRTC_SPL_WORD16_MAX) { in WebRtcSpl_MaxAbsValueW16C()
53 maximum = WEBRTC_SPL_WORD16_MAX; in WebRtcSpl_MaxAbsValueW16C()
56 return (int16_t)maximum; in WebRtcSpl_MaxAbsValueW16C()
64 uint32_t absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW32C() local
71 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW32C()
72 maximum = absolute; in WebRtcSpl_MaxAbsValueW32C()
76 maximum = WEBRTC_SPL_MIN(maximum, WEBRTC_SPL_WORD32_MAX); in WebRtcSpl_MaxAbsValueW32C()
[all …]
Dmin_max_operations_neon.c19 int absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW16Neon() local
41 maximum = (int)vmaxvq_u16(max_qv); in WebRtcSpl_MaxAbsValueW16Neon()
48 maximum = (int)vget_lane_u16(max_dv, 0); in WebRtcSpl_MaxAbsValueW16Neon()
55 if (absolute > maximum) { in WebRtcSpl_MaxAbsValueW16Neon()
56 maximum = absolute; in WebRtcSpl_MaxAbsValueW16Neon()
62 if (maximum > WEBRTC_SPL_WORD16_MAX) { in WebRtcSpl_MaxAbsValueW16Neon()
63 maximum = WEBRTC_SPL_WORD16_MAX; in WebRtcSpl_MaxAbsValueW16Neon()
66 return (int16_t)maximum; in WebRtcSpl_MaxAbsValueW16Neon()
75 uint32_t absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW32Neon() local
101 maximum = vmaxvq_u32(max32x4); in WebRtcSpl_MaxAbsValueW32Neon()
[all …]
Dmin_max_operations_mips.c230 uint32_t absolute = 0, maximum = 0; in WebRtcSpl_MaxAbsValueW32_mips() local
252 : [tmp1] "=&r" (tmp1), [maximum] "+r" (maximum), [absolute] "+r" (absolute) in WebRtcSpl_MaxAbsValueW32_mips()
257 return (int32_t)maximum; in WebRtcSpl_MaxAbsValueW32_mips()
263 int16_t maximum = WEBRTC_SPL_WORD16_MIN; in WebRtcSpl_MaxValueW16_mips() local
282 : [tmp1] "=&r" (tmp1), [maximum] "+r" (maximum), [value] "=&r" (value) in WebRtcSpl_MaxValueW16_mips()
287 return maximum; in WebRtcSpl_MaxValueW16_mips()
292 int32_t maximum = WEBRTC_SPL_WORD32_MIN; in WebRtcSpl_MaxValueW32_mips() local
311 : [tmp1] "=&r" (tmp1), [maximum] "+r" (maximum), [value] "=&r" (value) in WebRtcSpl_MaxValueW32_mips()
316 return maximum; in WebRtcSpl_MaxValueW32_mips()
/external/easymock/src/org/easymock/internal/
DRange.java26 private final int maximum; field in Range
32 public Range(int minimum, int maximum) { in Range() argument
33 if (!(minimum <= maximum)) { in Range()
43 if (!(maximum >= 1)) { in Range()
48 this.maximum = maximum; in Range()
52 return minimum == maximum; in hasFixedCount()
56 return maximum; in getMaximum()
70 return "between " + minimum + " and " + maximum; in toString()
79 return minimum <= count && count <= maximum; in contains()
83 return maximum == Integer.MAX_VALUE; in hasOpenCount()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DGeneralSubtree.java40 private ASN1Integer maximum; field in GeneralSubtree
59 maximum = ASN1Integer.getInstance(o, false); in GeneralSubtree()
83 maximum = ASN1Integer.getInstance(oMax, false); in GeneralSubtree()
114 BigInteger maximum) in GeneralSubtree() argument
117 if (maximum != null) in GeneralSubtree()
119 this.maximum = new ASN1Integer(maximum); in GeneralSubtree()
176 if (maximum == null) in getMaximum()
181 return maximum.getValue(); in getMaximum()
211 if (maximum != null) in toASN1Primitive()
213 v.add(new DERTaggedObject(false, 1, maximum)); in toASN1Primitive()
/external/libchrome/base/metrics/
Dhistogram.cc93 HistogramBase::Sample maximum, in Factory() argument
96 : Factory(name, HISTOGRAM, minimum, maximum, bucket_count, flags) {} in Factory()
107 HistogramBase::Sample maximum, in Factory() argument
113 maximum_(maximum), in Factory()
237 Sample maximum, in FactoryGet() argument
241 InspectConstructionArguments(name, &minimum, &maximum, &bucket_count); in FactoryGet()
244 return Factory(name, minimum, maximum, bucket_count, flags).Build(); in FactoryGet()
249 TimeDelta maximum, in FactoryTimeGet() argument
253 static_cast<Sample>(maximum.InMilliseconds()), bucket_count, in FactoryTimeGet()
259 Sample maximum, in FactoryGet() argument
[all …]
Dhistogram.h116 Sample maximum,
121 base::TimeDelta maximum,
130 Sample maximum,
135 base::TimeDelta maximum,
143 Sample maximum,
152 Sample maximum,
189 Sample* maximum,
220 Sample maximum,
231 Sample maximum,
331 Sample maximum,
[all …]
/external/tensorflow/tensorflow/python/framework/
Dtensor_spec.py119 def __init__(self, shape, dtype, minimum, maximum, name=None): argument
140 if minimum is None or maximum is None:
142 "'%s' and '%s'" % (minimum, maximum))
153 maximum_shape = np.shape(maximum)
163 self._maximum = np.array(maximum, dtype=self.dtype.as_numpy_dtype())
178 maximum = getattr(spec, "maximum", high)
179 return BoundedTensorSpec(spec.shape, dtype, minimum, maximum, spec.name)
187 def maximum(self): member in BoundedTensorSpec
194 repr(self.minimum), repr(self.maximum))
199 np.allclose(self.maximum, other.maximum))
Dtensor_spec_test.py145 self.assertEqual(type(spec.maximum), np.ndarray)
147 self.assertAllEqual(spec.maximum, np.array([5, 5, 5], dtype=np.float32))
155 spec.maximum[0] = 100
159 minimum=0, maximum=1)
161 spec_1.shape, spec_1.dtype, spec_1.minimum, spec_1.maximum)
166 (), dtypes.float32, minimum=0.0, maximum=1.0)
169 self.assertIsInstance(spec.maximum, np.ndarray)
173 self.assertEqual(1.0, spec.maximum)
177 spec.shape, spec.dtype, spec.minimum, spec.maximum)
181 minimum=0, maximum=1)
[all …]
/external/ltp/testcases/kernel/device-drivers/v4l/user_space/
Dtest_VIDIOC_QUERYCTRL.c117 queryctrl.maximum); in test_VIDIOC_QUERYCTRL()
124 queryctrl.maximum); in test_VIDIOC_QUERYCTRL()
129 CU_ASSERT_EQUAL(queryctrl.maximum, 1); in test_VIDIOC_QUERYCTRL()
143 queryctrl.maximum); in test_VIDIOC_QUERYCTRL()
148 CU_ASSERT_EQUAL(queryctrl.maximum, 0); in test_VIDIOC_QUERYCTRL()
160 CU_ASSERT_EQUAL(queryctrl.maximum, 0); in test_VIDIOC_QUERYCTRL()
167 CU_ASSERT_EQUAL(queryctrl.maximum, 0); in test_VIDIOC_QUERYCTRL()
188 queryctrl2.maximum = queryctrl.maximum; in test_VIDIOC_QUERYCTRL()
202 queryctrl.maximum, queryctrl.step, in test_VIDIOC_QUERYCTRL()
326 queryctrl.maximum, queryctrl.step, in test_VIDIOC_QUERYCTRL_flag_NEXT_CTRL()
[all …]
Dtest_VIDIOC_CTRL.c65 queryctrl.maximum, in do_get_control()
92 CU_ASSERT(control.value <= queryctrl.maximum); in do_get_control()
220 queryctrl.maximum, in do_set_control()
248 value <= queryctrl.maximum; value++) { in do_set_control()
292 queryctrl.maximum); in do_set_control()
510 CU_ASSERT(control_new.value <= queryctrl.maximum); in do_set_control()
567 CU_ASSERT(control_new.value <= queryctrl->maximum); in do_set_control_value()
587 CU_ASSERT(control_new.value <= queryctrl->maximum); in do_set_control_value()
630 queryctrl.maximum, in do_set_control_invalid()
672 if (queryctrl.maximum < S16_MAX) { in do_set_control_invalid()
[all …]
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
DLimit.java57 private BigDecimal maximum; field in Limit
135 return maximum == null ? null : maximum.toPlainString(); in getMaximum()
147 public void setMaximum(final String maximum) { in setMaximum() argument
148 this.maximum = parseValue(maximum); in setMaximum()
174 if (maximum != null && maximum.compareTo(bd) < 0) { in check()
175 return message("maximum", bd, maximum, RoundingMode.CEILING); in check()
/external/cmockery/cmockery_0_1_2/src/google/
Dcmockery.h76 #define expect_in_range(function, parameter, minimum, maximum) \ argument
77 expect_in_range_count(function, parameter, minimum, maximum, 1)
78 #define expect_in_range_count(function, parameter, minimum, maximum, count) \ argument
80 maximum, count)
86 #define expect_not_in_range(function, parameter, minimum, maximum) \ argument
87 expect_not_in_range_count(function, parameter, minimum, maximum, 1)
88 #define expect_not_in_range_count(function, parameter, minimum, maximum, \ argument
91 minimum, maximum, count)
182 #define assert_in_range(value, minimum, maximum) \ argument
183 _assert_in_range((int)value, (int)minimum, (int)maximum, __FILE__, \
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_maximum.cc19 REGISTER6(BinaryOp, CPU, "Maximum", functor::maximum, float, Eigen::half,
22 REGISTER4(BinaryOp, GPU, "Maximum", functor::maximum, float, Eigen::half,
34 BinaryOp<CPUDevice, functor::maximum<int32>>);
38 REGISTER3(BinaryOp, SYCL, "Maximum", functor::maximum, float, double, int64);
45 BinaryOp<CPUDevice, functor::maximum<int32>>);
Dquantized_instance_norm.cc140 float variance_epsilon, float* minimum, float* maximum) { in MinAndMax() argument
189 *maximum = v_maximum; in MinAndMax()
197 float minimum, float maximum, uint8_t* output) { in InstanceNorm() argument
200 const float out_scale = 255.0f / (maximum - minimum); in InstanceNorm()
329 float minimum = given_y_min_, maximum = given_y_max_; in Compute() local
333 variance_epsilon_, &minimum, &maximum); in Compute()
336 if (maximum - minimum < min_separation_) { in Compute()
337 maximum = minimum + min_separation_; in Compute()
342 variance_epsilon_, minimum, maximum, in Compute()
345 output_max->scalar<float>()() = maximum; in Compute()
[all …]
/external/libcups/cups/
Dppd-page.c198 ppd_size_t *maximum) /* O - Maximum custom size */ in ppdPageSizeLimits() argument
212 if (!ppd || !ppd->variable_sizes || !minimum || !maximum) in ppdPageSizeLimits()
217 if (maximum) in ppdPageSizeLimits()
218 memset(maximum, 0, sizeof(ppd_size_t)); in ppdPageSizeLimits()
332 maximum->width = width; in ppdPageSizeLimits()
333 maximum->length = length; in ppdPageSizeLimits()
334 maximum->left = ppd->custom_margins[0]; in ppdPageSizeLimits()
335 maximum->bottom = ppd->custom_margins[1]; in ppdPageSizeLimits()
336 maximum->right = width - ppd->custom_margins[2]; in ppdPageSizeLimits()
337 maximum->top = length - ppd->custom_margins[3]; in ppdPageSizeLimits()
/external/ImageMagick/coders/
Dhistogram.c196 maximum, in WriteHISTOGRAMImage() local
269 maximum=histogram[0].red; in WriteHISTOGRAMImage()
273 (maximum < histogram[x].red)) in WriteHISTOGRAMImage()
274 maximum=histogram[x].red; in WriteHISTOGRAMImage()
276 (maximum < histogram[x].green)) in WriteHISTOGRAMImage()
277 maximum=histogram[x].green; in WriteHISTOGRAMImage()
279 (maximum < histogram[x].blue)) in WriteHISTOGRAMImage()
280 maximum=histogram[x].blue; in WriteHISTOGRAMImage()
283 if (fabs(maximum) >= MagickEpsilon) in WriteHISTOGRAMImage()
284 scale=(double) histogram_image->rows/maximum; in WriteHISTOGRAMImage()
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
Dsignalbar.cpp44 opts.maximum = -35; in paint()
47 else if (signal > opts.maximum) in paint()
48 opts.progress = opts.maximum; in paint()
/external/python/cpython2/Doc/library/
Dresource.rst89 The maximum size (in bytes) of a core file that the current process can create.
96 The maximum amount of processor time (in seconds) that a process can use. If
104 The maximum size of a file which the process may create.
109 The maximum size (in bytes) of the process's heap.
114 The maximum size (in bytes) of the call stack for the current process. This only
120 The maximum resident set size that should be made available to the process.
125 The maximum number of processes the current process may create.
130 The maximum number of open file descriptors for the current process.
140 The maximum address space which may be locked in memory.
150 The maximum area (in bytes) of address space which may be taken by the process.
[all …]
/external/python/cpython3/Doc/library/
Dresource.rst113 The maximum size (in bytes) of a core file that the current process can create.
120 The maximum amount of processor time (in seconds) that a process can use. If
128 The maximum size of a file which the process may create.
133 The maximum size (in bytes) of the process's heap.
138 The maximum size (in bytes) of the call stack for the current process. This only
144 The maximum resident set size that should be made available to the process.
149 The maximum number of processes the current process may create.
154 The maximum number of open file descriptors for the current process.
164 The maximum address space which may be locked in memory.
174 The maximum area (in bytes) of address space which may be taken by the process.
[all …]
/external/autotest/client/site_tests/platform_OSLimits/
Dcontrol37 - Max open files: the maximum number of file descriptors a process can open.
38 - Max processes: the maximum number of processes that can be created for
42 - fs/file-max: maximum number of file handles that the kernel will allocate.
47 - fs/nr_open: the maximum number of file handles a process can allocate.
53 - kernel/pid_max: the maximum value of a pid before it wraps.
/external/mesa3d/src/gallium/docs/source/
Dscreen.rst33 * ``PIPE_CAP_MAX_RENDER_TARGETS``: The maximum number of render targets that may be
42 * ``PIPE_CAP_MAX_TEXTURE_2D_LEVELS``: The maximum number of mipmap levels available
44 * ``PIPE_CAP_MAX_TEXTURE_3D_LEVELS``: The maximum number of mipmap levels available
46 * ``PIPE_CAP_MAX_TEXTURE_CUBE_LEVELS``: The maximum number of mipmap levels available
54 * ``PIPE_CAP_MAX_STREAM_OUTPUT_BUFFERS``: The maximum number of stream buffers.
62 * ``PIPE_CAP_MAX_TEXTURE_ARRAY_LAYERS``: The maximum number of texture array
170 * ``PIPE_CAP_MAX_TEXTURE_BUFFER_SIZE``: The maximum accessible size with
172 * ``PIPE_CAP_MAX_VIEWPORTS``: The maximum number of viewports (and scissors
185 * ``PIPE_CAP_MAX_GEOMETRY_OUTPUT_VERTICES``: The maximum number of vertices
187 * ``PIPE_CAP_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS``: The maximum number of
[all …]
/external/autotest/client/site_tests/platform_LibCBench/
Dplatform_LibCBench.py66 maximum = max(results[benchmark])
67 difference = maximum - minimum
72 (benchmark, minimum, maximum, difference, average,
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_UnsortedSegmentMax.pbtxt17 summary: "Computes the maximum along segments of a tensor."
24 Instead of computing the sum over segments, it computes the maximum such that:
29 If the maximum is empty for a given segment ID `i`, it outputs the smallest
/external/deqp/doc/testspecs/GLES31/
Dfunctional.tessellation_geometry_interaction.txt28 + Render tests with maximum geometry amplification in different stages
50 shader that uses the maximum number of geometry output vertices, uses maximum
51 number geometry shader instances, or sets the maximum tessellation level.
52 *_required_* cases use the maximum limit as required by the extension
53 specifications and *_implementation_* cases use the maximum limit reported by

12345678910>>...44