HomeSort by relevance Sort by last modified time
    Searched defs:units (Results 1 - 25 of 658) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue17918.go 17 units = []struct {
33 for _, f := range units {
16 units = []struct { var
  /prebuilts/go/linux-x86/test/fixedbugs/
issue17918.go 17 units = []struct {
33 for _, f := range units {
16 units = []struct { var
  /external/freetype/src/tools/
cordic.py 4 #units = 64*65536.0 # don't change !!
5 units = 180 * 2**16 variable
6 scale = units/math.pi
11 print "table of arctan( 1/2^n ) for PI = " + repr(units/65536.0) + " units"
18 angle2 = round(angle*scale) # arctangent in FT_Angle units
  /external/devlib/devlib/derived/
__init__.py 24 def units(self): member in class:DerivedMetric
25 return self.measurement_type.units
46 if self.units:
47 return '{}: {} {}'.format(self.name, self.value, self.units)
  /external/tensorflow/tensorflow/stream_executor/lib/
human_readable.h 45 static const char units[] = "KMGTPE"; // int64 only goes up to E. local
46 const char* unit = units;
50 assert(unit < units + sizeof(units));
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
SourceRootTest.java 23 List<CompilationUnit> units = sourceRoot.getCompilationUnits(); local
25 assertEquals(2, units.size());
26 assertTrue(units.stream().allMatch(unit -> !unit.getTypes().isEmpty() || unit.getModule().isPresent()));
SourceZipTest.java 50 List<CompilationUnit> units = new ArrayList<>(); local
52 units.add(pr.b.getResult().get());
54 assertTrue(units.stream().noneMatch(unit -> unit.getTypes().isEmpty()));
65 List<CompilationUnit> units = new ArrayList<>(); local
67 units.add(pr.b.getResult().get());
69 assertTrue(units.stream().noneMatch(unit -> unit.getTypes().isEmpty()));
  /external/ltp/testcases/lib/
tst_sleep.c 33 } units[] = { variable in typeref:struct:unit
40 static unsigned int units_len = sizeof(units) / sizeof(*units);
76 if (!strcmp(units[i].unit, end))
86 if (units[i].mul == 1000000)
89 if (units[i].mul == 1000) {
94 if (units[i].mul == 1) {
  /external/python/cpython2/Lib/lib-tk/test/test_ttk/
support.py 76 units = { variable
84 return float(value[:-1]) * units[value[-1:]]
  /external/python/cpython3/Lib/tkinter/test/
support.py 76 units = { variable
84 return float(value[:-1]) * units[value[-1:]]
  /frameworks/ml/nn/runtime/test/specs/V1_0/
rnn_state.mod.py 18 units = 16 variable
24 weights = Input("weights", "TENSOR_FLOAT32", "{%d, %d}" % (units, input_size))
25 recurrent_weights = Input("recurrent_weights", "TENSOR_FLOAT32", "{%d, %d}" % (units, units))
26 bias = Input("bias", "TENSOR_FLOAT32", "{%d}" % (units))
27 hidden_state_in = Input("hidden_state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
31 hidden_state_out = IgnoredOutput("hidden_state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
svdf_state.mod.py 18 units = 4 variable
25 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (units, input_size))
26 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (units, memory_size))
27 bias = Input("bias", "TENSOR_FLOAT32", "{%d}" % (units))
28 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
31 state_out = Output("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
  /frameworks/ml/nn/runtime/test/specs/V1_1/
rnn_state_relaxed.mod.py 18 units = 16 variable
24 weights = Input("weights", "TENSOR_FLOAT32", "{%d, %d}" % (units, input_size))
25 recurrent_weights = Input("recurrent_weights", "TENSOR_FLOAT32", "{%d, %d}" % (units, units))
26 bias = Input("bias", "TENSOR_FLOAT32", "{%d}" % (units))
27 hidden_state_in = Input("hidden_state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
31 hidden_state_out = IgnoredOutput("hidden_state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
svdf_state_relaxed.mod.py 18 units = 4 variable
25 weights_feature = Input("weights_feature", "TENSOR_FLOAT32", "{%d, %d}" % (units, input_size))
26 weights_time = Input("weights_time", "TENSOR_FLOAT32", "{%d, %d}" % (units, memory_size))
27 bias = Input("bias", "TENSOR_FLOAT32", "{%d}" % (units))
28 state_in = Input("state_in", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
31 state_out = Output("state_out", "TENSOR_FLOAT32", "{%d, %d}" % (batches, memory_size*units))
32 output = Output("output", "TENSOR_FLOAT32", "{%d, %d}" % (batches, units))
  /external/ImageMagick/coders/
sct.c 160 units;
201 units=1UL*ReadBlobByte(image);
202 if (units == 0)
203 image->units=PixelsPerCentimeterResolution;
157 units; local
  /external/deqp/external/openglcts/modules/common/
glcPolygonOffsetClampTests.hpp 40 GLfloat units; member in struct:glcts::PolygonOffsetClampValues
43 PolygonOffsetClampValues(GLfloat _f, GLfloat _u, GLfloat _c) : factor(_f), units(_u), clamp(_c)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
TimeUnit.java 14 * 'Enum' for individual time units. Not an actual enum so that it can be
62 return ordinal == 0 ? null : units[ordinal - 1];
67 return ordinal == units.length - 1 ? null : units[ordinal + 1];
70 /** The list of units, in order from largest to smallest. */
71 static final TimeUnit[] units = { field in class:TimeUnit
80 /** Approximate, durations for the units independent of the time at which
  /external/turbine/javatests/com/google/turbine/binder/
BinderErrorTest.java 356 .units(); method
  /frameworks/base/libs/hwui/pipeline/skia/
SkiaMemoryTracer.h 40 void dumpNumericValue(const char* dumpName, const char* valueName, const char* units,
58 TraceValue(const char* units, uint64_t value) : units(units), value(value), count(1) {}
59 TraceValue(const TraceValue& v) : units(v.units), value(v.value), count(v.count) {}
61 const char* units; member in struct:android::uirenderer::skiapipeline::SkiaMemoryTracer::TraceValue
  /packages/apps/Settings/src/com/android/settings/utils/
FileSizeFormatter.java 48 * @param context Context to use to load the localized units
61 .unicodeWrap(context.getString(getFileSizeSuffix(context), res.value, res.units));
112 final String units = res.getString(suffix); local
114 return new Formatter.BytesResult(roundedString, units, roundedBytes);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
Utils.java 49 * - Units repeat in levels of 10,000, there are symbols for each level too (except 1's).
52 * - Sequences of 0 digits and their units are replaced by a single 0 and no unit.
56 * - Level symbols are omitted if all of their units are omitted
70 char[] buf = new char[40]; // as long as we get, and actually we can't get this high, no units past zhao
88 buf[--x] = zh.units[u++];
161 if (i < buf.length - 1 && buf[i+1] == zh.units[0]) continue;
162 if (i > x && (buf[i-1] == zh.units[0] || buf[i-1] == zh.digits[0] || buf[i-1] == '*')) continue;
168 if (buf[x] == zh.digits[1] && (zh.ko || buf[x+1] == zh.units[0])) {
194 final char[] units; field in class:Utils.ChineseDigits
199 ChineseDigits(String digits, String units, String levels, char liang, boolean ko)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
TimeUnit.java 13 * 'Enum' for individual time units. Not an actual enum so that it can be
60 return ordinal == 0 ? null : units[ordinal - 1];
65 return ordinal == units.length - 1 ? null : units[ordinal + 1];
68 /** The list of units, in order from largest to smallest. */
69 static final TimeUnit[] units = { field in class:TimeUnit
78 /** Approximate, durations for the units independent of the time at which
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
Utils.java 45 * - Units repeat in levels of 10,000, there are symbols for each level too (except 1's).
48 * - Sequences of 0 digits and their units are replaced by a single 0 and no unit.
52 * - Level symbols are omitted if all of their units are omitted
66 char[] buf = new char[40]; // as long as we get, and actually we can't get this high, no units past zhao
84 buf[--x] = zh.units[u++];
157 if (i < buf.length - 1 && buf[i+1] == zh.units[0]) continue;
158 if (i > x && (buf[i-1] == zh.units[0] || buf[i-1] == zh.digits[0] || buf[i-1] == '*')) continue;
164 if (buf[x] == zh.digits[1] && (zh.ko || buf[x+1] == zh.units[0])) {
190 final char[] units; field in class:Utils.ChineseDigits
195 ChineseDigits(String digits, String units, String levels, char liang, boolean ko)
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/
CalculateLimits.java 75 long units = UniversalTimeScale.getTimeScaleValue(scale, UniversalTimeScale.UNITS_VALUE); local
76 BigDecimal half = new BigDecimal(units == 1? 0: units / 2 - 1);
GenerateCTimeScaleData.java 76 long units = UniversalTimeScale.getTimeScaleValue(scale, UniversalTimeScale.UNITS_VALUE); local
78 if (units == ticks) {
80 } else if (units == microseconds) {
82 } else if (units == milliseconds) {
84 } else if (units == seconds) {
86 } else if (units == minutes) {
88 } else if (units == hours) {
90 } else if (units == days) {
93 cargs[0] = "INT64_C(" + Long.toString(units) + ")";

Completed in 413 milliseconds

1 2 3 4 5 6 7 8 91011>>