HomeSort by relevance Sort by last modified time
    Searched refs:units (Results 226 - 250 of 1119) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/ImageMagick/MagickCore/
image.h 201 units; /* resolution/density ppi or ppc */ member in struct:_Image
248 ticks_per_second; /* units for delay time, default 100 for GIF */
398 units; /* denisty pixels/inch or pixel/cm */ member in struct:_ImageInfo
  /external/autotest/server/cros/ap_configurators/
pyauto_utils.py 143 def PrintPerfResult(graph_name, series_name, data_point, units,
156 units: The string unit of measurement for the given |data_point|.
164 str(data_point).replace(' ', ''), units)
  /external/autotest/server/site_tests/autoupdate_EndToEndTest/
autoupdate_EndToEndTest.py 246 units='KiB',
256 value=int(update_time), units='sec',
  /external/autotest/server/site_tests/network_WiFi_AttenuatedPerf/
network_WiFi_AttenuatedPerf.py 109 self.output_perf_value(atten_tag, values, units='Mbps',
113 units='dBm', higher_is_better=True,
  /external/autotest/server/site_tests/network_WiFi_BluetoothStreamPerf/
network_WiFi_BluetoothStreamPerf.py 81 self.output_perf_value(config.tag + '_' + bt_tag, values, units='Mbps',
97 drop, units='percent_drop',
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ConsoleOutput.java 107 ImmutableSet<String> units = FluentIterable.from(measurements) local
122 String unit = Iterables.getOnlyElement(units);
  /external/tensorflow/tensorflow/contrib/lite/kernels/
fully_connected_test.cc 122 BaseFullyConnectedOpModel(int units, int batches, const TensorData& input,
124 : batches_(batches), units_(units) {
264 FloatFullyConnectedOpModel m(/*units=*/3,
  /external/turbine/java/com/google/turbine/binder/
CompUnitPreprocessor.java 39 * Processes compilation units before binding, creating symbols for type declarations and desugaring
79 public static ImmutableList<PreprocessedCompUnit> preprocess(List<CompUnit> units) {
81 for (CompUnit unit : units) {
  /external/v8/tools/
perf-to-html.py 144 units = test_data["units"]
145 hasScoreUnits = units == "score"
  /frameworks/ml/nn/common/operations/
RNNTest.cpp 152 BasicRNNOpModel(uint32_t batches, uint32_t units, uint32_t size)
154 units_(units),
  /prebuilts/tools/common/m2/repository/org/checkerframework/checker-compat-qual/2.0.0/
checker-compat-qual-2.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.tools.impl/0.18.1/
org.eclipse.tycho.p2.tools.impl-0.18.1.jar 
  /external/tensorflow/tensorflow/contrib/bayesflow/python/kernel_tests/
layers_dense_variational_test.py 109 layer = layer_class(units=2)
130 units=2,
175 units=out_size,
419 units=out_size,
426 units=out_size,
  /external/tensorflow/tensorflow/python/ops/
init_ops.py 411 - number of input units in the weight tensor, if mode = "fan_in"
412 - number of output units, if mode = "fan_out"
413 - average of the numbers of input and output units, if mode = "fan_avg"
599 where `fan_in` is the number of input units in the weight tensor
600 and `fan_out` is the number of output units in the weight tensor.
623 where `fan_in` is the number of input units in the weight tensor
624 and `fan_out` is the number of output units in the weight tensor.
645 """Computes the number of input and output units for a weight shape.
  /external/libcups/cups/
ipp.c 735 ipp_res_t units, /* I - Units for resolution */
742 DEBUG_printf(("ippAddResolution(ipp=%p, group=%02x(%s), name=\"%s\", units=%d, xres=%d, yres=%d)", (void *)ipp, group,
743 ippTagString(group), name, units, xres, yres));
751 units < IPP_RES_PER_INCH || units > IPP_RES_PER_CM ||
764 attr->values[0].resolution.units = units;
788 ipp_res_t units, /* I - Units for resolution *
    [all...]
  /external/ImageMagick/coders/
mpc.c 722 if (LocaleCompare(keyword,"units") == 0)
725 units;
727 units=ParseCommandOption(MagickResolutionOptions,
729 if (units < 0)
731 image->units=(ResolutionType) units;
721 units; local
    [all...]
vips.c 487 image->units=PixelsPerCentimeterResolution;
705 if (image->units == PixelsPerCentimeterResolution)
710 else if (image->units == PixelsPerInchResolution)
  /external/autotest/client/common_lib/
test.py 106 def output_perf_value(self, description, value, units=None,
122 @param units: A string describing the units associated with the
141 |description| and |units| with.
147 if units and len(units) > 32:
148 raise ValueError('The units must be at most 32 characters.')
158 units = re.sub(string_regex, replacement, units) if units else Non
    [all...]
  /packages/services/BuiltInPrintService/jni/ipphelper/
ipphelper.c 438 ipp_res_t units; local
440 xres = ippGetResolution(attr, i, &yres, &units);
444 units == IPP_RES_PER_INCH ? "dpi" : "dpc");
526 ipp_res_t units; local
528 xres = ippGetResolution(attr, i, &yres, &units);
532 units == IPP_RES_PER_INCH ? "dpi" : "dpc");
667 ipp_res_t units; local
669 xres = ippGetResolution(attrptr, i, &yres, &units);
670 if (units == IPP_RES_PER_INCH) {
    [all...]
  /external/autotest/client/site_tests/longevity_Tracker/
longevity_Tracker.py 240 units='%', higher_is_better=False)
242 units='%', higher_is_better=False)
244 units='Celsius', higher_is_better=False)
  /external/autotest/client/site_tests/video_VEAPerf/
video_VEAPerf.py 46 # Units of performance values:
80 def _logperf(self, test_name, key, value, units, higher_is_better=False):
83 description=description, value=value, units=units,
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/number/
PropertiesTest.java 282 Object[] units = MeasureUnit.getAvailable().toArray();
283 return units[seed % units.length];
  /external/icu/icu4c/source/common/
ucharstriebuilder.cpp 257 int32_t length=0; // Number of different units at unitIndex.
288 UCharsTrieBuilder::UCTLinearMatchNode::UCTLinearMatchNode(const UChar *units, int32_t len, Node *nextNode)
289 : LinearMatchNode(len, nextNode), s(units) {
290 hash=hash*37u+ustr_hashUCharsN(units, len);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/
PropertiesTest.java 279 Object[] units = MeasureUnit.getAvailable().toArray();
280 return units[seed % units.length];
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/org.eclipse.tycho.p2.resolver.impl/0.18.1/
org.eclipse.tycho.p2.resolver.impl-0.18.1.jar 

Completed in 831 milliseconds

1 2 3 4 5 6 7 8 91011>>