Home
last modified time | relevance | path

Searched refs:micro (Results 1 – 25 of 315) sorted by relevance

12345678910>>...13

/external/harfbuzz_ng/test/api/
Dtest-version.c35 unsigned int major, minor, micro; in test_version() local
38 hb_version (&major, &minor, &micro); in test_version()
42 g_assert_cmpint (micro, ==, HB_VERSION_MICRO); in test_version()
44 s = g_strdup_printf ("%u.%u.%u", major, minor, micro); in test_version()
49 g_assert (HB_VERSION_ATLEAST (major, minor, micro)); in test_version()
51 g_assert (HB_VERSION_ATLEAST (major-1, minor, micro)); in test_version()
53 g_assert (HB_VERSION_ATLEAST (major, minor-1, micro)); in test_version()
54 if (micro) in test_version()
55 g_assert (HB_VERSION_ATLEAST (major, minor, micro-1)); in test_version()
56 g_assert (!HB_VERSION_ATLEAST (major+1, minor, micro)); in test_version()
[all …]
/external/tensorflow/tensorflow/lite/g3doc/microcontrollers/
Dlibrary.md4 [TensorFlow repository](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro).
14 [`micro`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro)
25 …all_ops_resolver.h`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/al…
27 …able_op_resolver.h`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/mi…
33 …o_error_reporter.h`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/mi…
35 …icro_interpreter.h`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/mi…
43 [`sparkfun_edge`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/sparkf…
47 - [`kernel`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/kernels),
49 - [`tools`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/tools),
51 - [`examples`](https://github.com/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/example…
[all …]
Dget_started_low_level.md9 [Hello World](https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/examples/h…
54 …ttps://colab.research.google.com/github/tensorflow/tflite-micro/blob/main/tensorflow/lite/micro/ex…
57 …utton-primary" href="https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/ex…
65 …utton-primary" href="https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/ex…
69 [`hello_world_test.cc`](https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/…
79 #include "tensorflow/lite/micro/all_ops_resolver.h"
80 #include "tensorflow/lite/micro/micro_error_reporter.h"
81 #include "tensorflow/lite/micro/micro_interpreter.h"
86 …all_ops_resolver.h`](https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/al…
88 …o_error_reporter.h`](https://github.com/tensorflow/tflite-micro/tree/main/tensorflow/lite/micro/mi…
[all …]
/external/python/cpython2/Doc/tools/extensions/
Dpatchlevel.py36 micro = int(d['PY_MICRO_VERSION'])
37 if micro != 0:
38 release += '.' + str(micro)
52 major, minor, micro, level, serial = sys.version_info
54 if micro:
55 release += '.%s' % micro
/external/python/cpython2/PC/VS7.1/
Dfield3.py17 major, minor, micro, level, serial = sys.version_info variable
26 print " * PY_MICRO_VERSION = %d" % micro
31 field3 = micro * 1000 + levelnum * 10 + serial
33 print " * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3)
/external/python/cpython2/PC/VS9.0/
Dfield3.py17 major, minor, micro, level, serial = sys.version_info variable
26 print(" * PY_MICRO_VERSION = %d" % micro)
31 field3 = micro * 1000 + levelnum * 10 + serial
33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
/external/python/cpython2/PCbuild/
Dfield3.py17 major, minor, micro, level, serial = sys.version_info variable
26 print(" * PY_MICRO_VERSION = %d" % micro)
31 field3 = micro * 1000 + levelnum * 10 + serial
33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
/external/python/cpython3/PCbuild/
Dfield3.py17 major, minor, micro, level, serial = sys.version_info variable
26 print(" * PY_MICRO_VERSION = %d" % micro)
31 field3 = micro * 1000 + levelnum * 10 + serial
33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
/external/python/cpython2/PC/VS8.0/
Dfield3.py17 major, minor, micro, level, serial = sys.version_info variable
26 print(" * PY_MICRO_VERSION = %d" % micro)
31 field3 = micro * 1000 + levelnum * 10 + serial
33 print(" * and %d*1000 + %d*10 + %d = %d" % (micro, levelnum, serial, field3))
/external/harfbuzz_ng/src/
Dhb-version.h74 #define HB_VERSION_ATLEAST(major,minor,micro) \ argument
75 ((major)*10000+(minor)*100+(micro) <= \
82 unsigned int *micro);
90 unsigned int micro);
Dhb-version.h.in54 * The micro component of the library version available at compile-time.
69 * @micro: the micro component of the version number
74 #define HB_VERSION_ATLEAST(major,minor,micro) \ argument
75 ((major)*10000+(minor)*100+(micro) <= \
82 unsigned int *micro);
90 unsigned int micro);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64SchedKryo.td40 def KryoUnitXA : ProcResource<1>; // Type X(A) micro-ops
41 def KryoUnitXB : ProcResource<1>; // Type X(B) micro-ops
42 def KryoUnitYA : ProcResource<1>; // Type Y(A) micro-ops
43 def KryoUnitYB : ProcResource<1>; // Type Y(B) micro-ops
44 def KryoUnitX : ProcResGroup<[KryoUnitXA, // Type X micro-ops
46 def KryoUnitY : ProcResGroup<[KryoUnitYA, // Type Y micro-ops
48 def KryoUnitXY : ProcResGroup<[KryoUnitXA, // Type XY micro-ops
52 def KryoUnitLSA : ProcResource<1>; // Type LS(A) micro-ops
53 def KryoUnitLSB : ProcResource<1>; // Type LS(B) micro-ops
54 def KryoUnitLS : ProcResGroup<[KryoUnitLSA, // Type LS micro-ops
DAArch64SchedA57WriteRes.td18 // 11 micro-ops to be issued down one I pipe, six S pipes and four V pipes.
23 // Define Generic 1 micro-op types
54 // Define Generic 2 micro-op types
177 // Define Generic 3 micro-op types
248 // Define Generic 4 micro-op types
315 // Define Generic 5 micro-op types
359 // Define Generic 6 micro-op types
406 // Define Generic 7 micro-op types
443 // Define Generic 8 micro-op types
469 // Define Generic 9 micro-op types
[all …]
/external/llvm/lib/Target/AArch64/
DAArch64SchedKryo.td36 def KryoUnitXA : ProcResource<1>; // Type X(A) micro-ops
37 def KryoUnitXB : ProcResource<1>; // Type X(B) micro-ops
38 def KryoUnitYA : ProcResource<1>; // Type Y(A) micro-ops
39 def KryoUnitYB : ProcResource<1>; // Type Y(B) micro-ops
40 def KryoUnitX : ProcResGroup<[KryoUnitXA, // Type X micro-ops
42 def KryoUnitY : ProcResGroup<[KryoUnitYA, // Type Y micro-ops
44 def KryoUnitXY : ProcResGroup<[KryoUnitXA, // Type XY micro-ops
48 def KryoUnitLSA : ProcResource<1>; // Type LS(A) micro-ops
49 def KryoUnitLSB : ProcResource<1>; // Type LS(B) micro-ops
50 def KryoUnitLS : ProcResGroup<[KryoUnitLSA, // Type LS micro-ops
DAArch64SchedA57WriteRes.td19 // 11 micro-ops to be issued down one I pipe, six S pipes and four V pipes.
24 // Define Generic 1 micro-op types
55 // Define Generic 2 micro-op types
178 // Define Generic 3 micro-op types
249 // Define Generic 4 micro-op types
316 // Define Generic 5 micro-op types
360 // Define Generic 6 micro-op types
407 // Define Generic 7 micro-op types
444 // Define Generic 8 micro-op types
470 // Define Generic 9 micro-op types
[all …]
/external/caliper/caliper/src/main/resources/com/google/caliper/config/
Ddefault-config.properties5 # instrument.micro.options.warmup=10s
6 # instrument.micro.options.timingInterval=500ms
7 # instrument.micro.options.reportedIntervals=7
8 # instrument.micro.options.maxRuntime=10s
/external/autotest/docs/
Dfaft-how-to-run-doc.md8 - [ServoV4 Type-A with servo micro](#servov4-typea-micro)
10 - [ServoV4 Type-C with servo micro](#servov4-typec-micro)
36 [servo] board ([servo v2], [servo v4] with [servo micro] or [servo v4 Type-C])
60 ### ServoV4 Type-A with Micro {#servov4-typea-micro}
63 with servo micro includes:
69 - servo-micro cable
70 - USB type-A to USB micro cable for DUT connection (~ 2' in length)
71 - USB type-A to USB micro cable for test controller connection (~ 4' - 6' in length)
76 servoV4 Type-A and servo micro, to the test controller, DUT, and network.
82 **Figure 1.Diagram of hardware configuration for a ServoV4 Type-A with servo micro.**
[all …]
/external/python/cpython3/Doc/tools/extensions/
Dpatchlevel.py35 micro = int(d['PY_MICRO_VERSION'])
36 release += '.' + str(micro)
50 major, minor, micro, level, serial = sys.version_info
52 release += '.%s' % micro
/external/llvm/lib/Target/PowerPC/
DPPCScheduleE5500.td178 2>, // 2 micro-ops
184 2>, // 2 micro-ops
198 2>, // 2 micro-ops
204 2>, // 2 micro-ops
214 2>, // 2 micro-ops
230 2>, // 2 micro-ops
236 2>, // 2 micro-ops
243 2>, // 2 micro-ops
250 2>, // 2 micro-ops
260 2>, // 2 micro-ops
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DVersionTuple.cpp61 unsigned major = 0, minor = 0, micro = 0, build = 0; in tryParse() local
88 if (parseInt(input, micro)) in tryParse()
92 *this = VersionTuple(major, minor, micro); in tryParse()
107 *this = VersionTuple(major, minor, micro, build); in tryParse()
/external/clang/lib/Basic/
DVersionTuple.cpp60 unsigned major = 0, minor = 0, micro = 0, build = 0; in tryParse() local
83 if (parseInt(input, micro)) return true; in tryParse()
86 *this = VersionTuple(major, minor, micro); in tryParse()
98 *this = VersionTuple(major, minor, micro, build); in tryParse()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCScheduleE5500.td177 2>, // 2 micro-ops
183 2>, // 2 micro-ops
197 2>, // 2 micro-ops
203 2>, // 2 micro-ops
223 2>, // 2 micro-ops
229 2>, // 2 micro-ops
236 2>, // 2 micro-ops
243 2>, // 2 micro-ops
253 2>, // 2 micro-ops
259 2>, // 2 micro-ops
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
DSerializableWriter.java45 int micro = VersionInfo.ICU_VERSION.getMicro(); in folderName() local
52 if (milli != 0 || micro != 0) { in folderName()
56 if (micro != 0) { in folderName()
58 result.append(micro); in folderName()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/
DSerializableWriter.java42 int micro = VersionInfo.ICU_VERSION.getMicro(); in folderName() local
49 if (milli != 0 || micro != 0) { in folderName()
53 if (micro != 0) { in folderName()
55 result.append(micro); in folderName()
/external/protobuf/
DREADME.android9 - Initial changes include support for the micro protobuf compiler and the
25 com.google.protobuf.micro:
27 LOCAL_STATIC_JAVA_LIBRARIES += com.google.protobuf.micro
30 details on compiling .proto files for the micro runtine.

12345678910>>...13