Home
last modified time | relevance | path

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

12345

/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/skia/third_party/harfbuzz/
Dhb-version.h45 #define HB_VERSION_ATLEAST(major,minor,micro) \ argument
46 ((major)*10000+(minor)*100+(micro) <= \
53 unsigned int *micro);
61 unsigned int micro);
/external/harfbuzz_ng/src/
Dhb-version.h45 #define HB_VERSION_ATLEAST(major,minor,micro) \ argument
46 ((major)*10000+(minor)*100+(micro) <= \
53 unsigned int *micro);
61 unsigned int micro);
Dhb-version.h.in45 #define HB_VERSION_ATLEAST(major,minor,micro) \ argument
46 ((major)*10000+(minor)*100+(micro) <= \
53 unsigned int *micro);
61 unsigned int micro);
/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/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/swiftshader/third_party/LLVM/lib/Target/ARM/
DARMSchedule.td73 def IIC_iLoad_m : InstrItinClass<0>; // micro-coded
74 def IIC_iLoad_mu : InstrItinClass<0>; // micro-coded
75 def IIC_iLoad_mBr : InstrItinClass<0>; // micro-coded
76 def IIC_iPop : InstrItinClass<0>; // micro-coded
77 def IIC_iPop_Br : InstrItinClass<0>; // micro-coded
94 def IIC_iStore_m : InstrItinClass<0>; // micro-coded
95 def IIC_iStore_mu : InstrItinClass<0>; // micro-coded
127 def IIC_fpLoad_m : InstrItinClass<0>; // micro-coded
128 def IIC_fpLoad_mu : InstrItinClass<0>; // micro-coded
131 def IIC_fpStore_m : InstrItinClass<0>; // micro-coded
[all …]
/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 …]
DPPCScheduleE500mc.td149 2>, // 2 micro-ops
155 2>, // 2 micro-ops
165 2>, // 2 micro-ops
181 2>, // 2 micro-ops
193 2>, // 2 micro-ops
200 2>, // 2 micro-ops
313 let IssueWidth = 2; // 2 micro-ops are dispatched per cycle.
/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/protobuf/
Dbuild.gradle20 micro
27 micro {
30 include("com/google/protobuf/micro/*")
102 from sourceSets.nano.output, sourceSets.micro.output
119 from sourceSets.micro.output
124 classifier "micro"
137 micro microJar
DREADME.android6 Local Modifications: Initial changes include support for the micro
21 com.google.protobuf.micro:
23 LOCAL_STATIC_JAVA_LIBRARIES += com.google.protobuf.micro
26 details on compiling .proto files for the micro runtine.
/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/icu/android_icu4j/src/main/tests/android/icu/dev/test/serializable/
DSerializableWriter.java43 int micro = VersionInfo.ICU_VERSION.getMicro(); in folderName() local
50 if (milli != 0 || micro != 0) { in folderName()
54 if (micro != 0) { in folderName()
56 result.append(micro); in folderName()
/external/icu/android_icu4j/src/main/java/android/icu/util/
DVersionInfo.java253 int micro) in getInstance() argument
258 milli < 0 || milli > 255 || micro < 0 || micro > 255) { in getInstance()
261 int version = getInt(major, minor, milli, micro); in getInstance()
551 private static int getInt(int major, int minor, int milli, int micro) in getInt() argument
553 return (major << 24) | (minor << 16) | (milli << 8) | micro; in getInt()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DVersionInfo.java282 int micro) in getInstance() argument
287 milli < 0 || milli > 255 || micro < 0 || micro > 255) { in getInstance()
290 int version = getInt(major, minor, milli, micro); in getInstance()
590 private static int getInt(int major, int minor, int milli, int micro) in getInt() argument
592 return (major << 24) | (minor << 16) | (milli << 8) | micro; in getInt()
/external/libcxx/test/std/utilities/time/time.duration/time.duration.cons/
Dconvert_inexact.pass.cpp25 std::chrono::duration<double, std::micro> us(1); in main()
31 constexpr std::chrono::duration<double, std::micro> us(1); in main()
/external/ImageMagick/MagickCore/
DMagickCore.h51 #define MAGICKCORE_CHECK_VERSION(major,minor,micro) \ argument
57 (MAGICKCORE_MICRO_VERSION >= (micro))))
/external/llvm/lib/Target/Lanai/
DLanaiSchedule.td31 // Max micro-ops that can be buffered for optimized loop dispatch/execution.
39 // Max micro-ops that may be scheduled per cycle. [default = 1]
48 // Max micro-ops that can be buffered. [default = -1]
/external/ImageMagick/MagickWand/
DMagickWand.h51 #define MAGICKWAND_CHECK_VERSION(major,minor,micro) \ argument
57 (MAGICKWAND_MICRO_VERSION >= (micro))))
/external/protobuf/javamicro/src/main/java/com/google/protobuf/micro/
DMessageMicro.java31 package com.google.protobuf.micro;
33 import com.google.protobuf.micro.CodedOutputStreamMicro;
/external/libcxx/test/std/utilities/ratio/
Dtypedefs.pass.cpp20 static_assert(std::micro::num == 1 && std::micro::den == 1000000ULL, ""); in main()
/external/llvm/lib/Target/X86/
DX86SchedSandyBridge.td16 // All x86 instructions are modeled as a single micro-op, and SB can decode 4
18 // FIXME: Identify instructions that aren't a single fused micro-op.
34 // Sandy Bridge can issue micro-ops to 6 different ports in one cycle.
50 // Many micro-ops are capable of issuing on multiple ports.
68 // Instructions with folded loads are usually micro-fused, so they only appear
69 // as two micro-ops when queued in the reservation station.
DX86ScheduleSLM.td16 // All x86 instructions are modeled as a single micro-op, and SLM can decode 2
34 // Silvermont has 5 reservation stations for micro-ops
42 // Many micro-ops are capable of issuing on multiple ports.
55 // Instructions with folded loads are usually micro-fused, so they only appear
56 // as two micro-ops when queued in the reservation station.

12345