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

1 2 3 4 5 6 7 8 91011>>

  /device/google/contexthub/firmware/os/platform/native/inc/plat/
usart.h 28 uint8_t unit; member in struct:usart
  /test/vts/testcases/target/hal_lights/
Android.mk 118 # adb shell /data/nativetest/hallights-unit-tests/hallights-unit-tests32
119 # adb shell /data/nativetest/hallights-unit-tests/hallights-unit-tests64
120 # adb shell /data/nativetest/hallights-unit-tests/hallights-unit-tests-gcc32
121 # adb shell /data/nativetest/hallights-unit-tests/hallights-unit-tests-gcc64
123 common_hallights-unit-tests_whole_static_libraries := \
127 common_hallights-unit-tests_static_libraries :=
    [all...]
  /test/vts/testcases/target/hal_power/
Android.mk 118 # adb shell /data/nativetest/halpower-unit-tests/halpower-unit-tests32
119 # adb shell /data/nativetest/halpower-unit-tests/halpower-unit-tests64
120 # adb shell /data/nativetest/halpower-unit-tests/halpower-unit-tests-gcc32
121 # adb shell /data/nativetest/halpower-unit-tests/halpower-unit-tests-gcc64
123 common_halpower-unit-tests_whole_static_libraries := \
127 common_halpower-unit-tests_static_libraries :=
    [all...]
  /device/google/contexthub/firmware/os/platform/stm32/inc/plat/
usart.h 31 uint8_t unit; member in struct:usart
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/
TCKChronoUnit.java 123 public void test_unitType(ChronoUnit unit, boolean isDateBased, boolean isTimeBased, boolean isDurationEstimated) {
124 assertEquals(unit.isDateBased(), isDateBased);
125 assertEquals(unit.isTimeBased(), isTimeBased);
126 assertEquals(unit.isDurationEstimated(), isDurationEstimated);
169 public void test_unitAndTemporal(ChronoUnit unit, Temporal base, boolean isSupportedBy, long amount, Temporal target) {
170 assertEquals(unit.isSupportedBy(base), isSupportedBy);
172 Temporal result = unit.addTo(base, amount);
174 assertEquals(unit.between(base, result), amount);
183 for (ChronoUnit unit : ChronoUnit.values()) {
184 assertEquals(ChronoUnit.valueOf(unit.name()), unit) local
    [all...]
  /external/googletest/googlemock/
Android.mk 29 define gmock-unit-test
54 $(eval $(call gmock-unit-test,gmock-actions_test,,libgmock_main,$(1))) \
55 $(eval $(call gmock-unit-test,gmock-cardinalities_test,,libgmock_main,$(1))) \
56 $(eval $(call gmock-unit-test,gmock-generated-actions_test,,libgmock_main,$(1))) \
57 $(eval $(call gmock-unit-test,gmock-generated-function-mockers_test,,libgmock_main,$(1))) \
58 $(eval $(call gmock-unit-test,gmock-generated-internal-utils_test,,libgmock_main,$(1))) \
59 $(eval $(call gmock-unit-test,gmock-generated-matchers_test,,libgmock_main,$(1))) \
60 $(eval $(call gmock-unit-test,gmock-internal-utils_test,,libgmock_main,$(1))) \
61 $(eval $(call gmock-unit-test,gmock-matchers_test,,libgmock_main,$(1))) \
62 $(eval $(call gmock-unit-test,gmock-more-actions_test,,libgmock_main,$(1)))
    [all...]
  /external/icu/icu4c/source/i18n/unicode/
measure.h 32 * An amount of a specified unit, consisting of a number and a Unit.
34 * unit, such as feet or meters.
47 * unit. After this call, the caller must not delete the given
48 * unit object.
50 * @param adoptedUnit the unit object, which must not be NULL
51 * @param ec input-output error code. If the amount or the unit
99 * Return a reference to the unit of this object.
144 * The unit of this object, e.g., "millimeter" or "JPY". This is
147 MeasureUnit* unit; member in class:Measure
    [all...]
  /external/ltp/testcases/kernel/controllers/cpuset/cpuset_memory_pressure_test/
cpuset_memory_pressure.c 32 int unit = 1024 * 1024; variable
49 long int mmap_block = use * unit / 10 / pagesize;
52 while (pagesize * mmap_block > 2 * unit) {
62 if (total_block * pagesize >= use * unit)
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/
MediaPlayerMethodUnderTest.java 17 package com.android.mediaframeworktest.unit;
22 * All MediaPlayer method unit test subclass must implement this interface.
MediaRecorderMethodUnderTest.java 17 package com.android.mediaframeworktest.unit;
22 * All MediaRecorder method unit test subclass must implement this interface.
CameraUtilsUncheckedThrowTest.java 17 package com.android.mediaframeworktest.unit;
  /prebuilts/go/darwin-x86/src/debug/dwarf/
unit.go 13 // Each unit has its own abbreviation table and address size.
15 type unit struct { type
27 func (u *unit) version() int {
31 func (u *unit) dwarf64() (bool, bool) {
35 func (u *unit) addrsize() int {
39 func (d *Data) parseUnits() ([]unit, error) {
46 b.error("unit length overflow")
58 units := make([]unit, nunit)
95 // offsetToUnit returns the index of the unit containing offset off.
96 // It returns -1 if no unit contains this offset
    [all...]
  /prebuilts/go/linux-x86/src/debug/dwarf/
unit.go 13 // Each unit has its own abbreviation table and address size.
15 type unit struct { type
27 func (u *unit) version() int {
31 func (u *unit) dwarf64() (bool, bool) {
35 func (u *unit) addrsize() int {
39 func (d *Data) parseUnits() ([]unit, error) {
46 b.error("unit length overflow")
58 units := make([]unit, nunit)
95 // offsetToUnit returns the index of the unit containing offset off.
96 // It returns -1 if no unit contains this offset
    [all...]
  /external/ltp/testcases/kernel/mem/ksm/
ksm_common.h 23 int size = 128, num = 3, unit = 1; variable
29 {"u:", &opt_unitstr, "-u Memory allocation unit in MB"},
34 char *str_num, int *num, char *str_unit, int *unit)
42 if(tst_parse_int(str_unit, unit, 1, *size))
43 tst_brk(TBROK, "Invalid unit '%s'", str_unit);
44 if (*size % *unit != 0)
46 "the remainder of division of size by unit is "
  /external/tensorflow/tensorflow/stream_executor/lib/
human_readable.h 46 const char* unit = units; local
49 ++unit;
50 assert(unit < units + sizeof(units));
53 return port::Printf(((*unit == 'K') ? "%s%.1f%c" : "%s%.2f%c"), neg_str,
54 num_bytes / 1024.0, *unit);
  /external/turbine/javatests/com/google/turbine/parse/
VariableDeclarationTest.java 198 Tree.CompUnit unit = Parser.parse("class Test {" + input + "}"); local
199 assertThat(Joiner.on(" ").join(getOnlyElement(unit.decls()).members())).isEqualTo(expected);
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typesolvers/
JavaParserTypeSolver.java 104 Optional<CompilationUnit> unit = parse(file); local
105 if (unit.isPresent()) {
106 units.add(unit.get());
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Value.java 35 public static Value create(double value, String unit) {
36 return new Value(value, checkNotNull(unit));
42 private String unit; field in class:Value
46 this.unit = "";
49 private Value(double value, String unit) {
51 this.unit = unit;
54 public String unit() { method in class:Value
55 return unit;
68 && this.unit.equals(that.unit)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Measure.java 18 * An amount of a specified unit, consisting of a Number and a Unit.
20 * unit, such as feet or meters.
36 private final MeasureUnit unit; field in class:Measure
39 * Constructs a new object given a number and a unit.
41 * @param unit the unit
43 public Measure(Number number, MeasureUnit unit) {
44 if (number == null || unit == null) {
48 this.unit = unit
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Measure.java 17 * An amount of a specified unit, consisting of a Number and a Unit.
19 * unit, such as feet or meters.
36 private final MeasureUnit unit; field in class:Measure
39 * Constructs a new object given a number and a unit.
41 * @param unit the unit
44 public Measure(Number number, MeasureUnit unit) {
45 if (number == null || unit == null) {
49 this.unit = unit
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/
JsonPrinterTest.java 56 CompilationUnit unit = parse(code); local
58 printer.output(unit);
68 CompilationUnit unit = parse(code); local
71 String output = printer.output(unit);
  /external/libnl/lib/route/qdisc/
fifo.c 72 char *unit; local
78 r = nl_cancel_down_bytes(fifo->qf_limit, &unit);
79 nl_dump(p, " limit %.1f%s", r, unit);
  /external/ltp/testcases/lib/
tst_sleep.c 27 printf(" If no unit is specified the interval is in seconds\n");
30 static struct unit { struct
31 const char *unit; member in struct:unit
76 if (!strcmp(units[i].unit, end))
81 fprintf(stderr, "ERROR: Invalid interval unit '%s'\n\n", end);
  /external/mesa3d/src/gallium/drivers/nouveau/nv30/
nv40_verttex.c 36 unsigned unit = ffs(dirty) - 1; local
37 struct nv30_sampler_view *sv = (void *)nv30->fragprog.textures[unit];
38 struct nv30_sampler_state *ss = nv30->fragprog.samplers[unit];
42 BEGIN_NV04(push, NV40_3D(VTXTEX_ENABLE(unit)), 1);
45 dirty &= ~(1 << unit);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_maos_arrays.c 151 GLuint vtx, unit; local
251 for (unit = 0; unit < ctx->Const.MaxTextureUnits; unit++) {
252 if (inputs & VERT_BIT_TEX(unit)) {
253 if (!rmesa->tcl.tex[unit].buf)
256 (char *)VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->data,
257 VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->size,
258 VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->stride,
262 vfmt |= RADEON_ST_BIT(unit);
    [all...]

Completed in 653 milliseconds

1 2 3 4 5 6 7 8 91011>>