Home
last modified time | relevance | path

Searched defs:unit (Results 1 – 25 of 589) sorted by relevance

12345678910>>...24

/external/u-boot/drivers/ddr/marvell/axp/
Dxor_regs.h17 #define MV_XOR_REGS_OFFSET(unit) (0xF0800) argument
19 #define MV_XOR_REGS_OFFSET(unit) (0x60900) argument
21 #define MV_XOR_REGS_BASE(unit) (MV_XOR_REGS_OFFSET(unit)) argument
24 #define XOR_CHANNEL_ARBITER_REG(unit) (MV_XOR_REGS_BASE(unit)) argument
25 #define XOR_CONFIG_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + (0x10 + ((chan) * 4))) argument
26 #define XOR_ACTIVATION_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + (0x20 + ((chan) * 4))) argument
29 #define XOR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x30) argument
30 #define XOR_MASK_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x40) argument
31 #define XOR_ERROR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x50) argument
32 #define XOR_ERROR_ADDR_REG(unit) (MV_XOR_REGS_BASE(unit) + 0x60) argument
[all …]
/external/tensorflow/tensorflow/python/kernel_tests/
Dsubstr_op_test.py42 def testScalarString(self, dtype, pos, unit): argument
64 def testScalarString_EdgeCases(self, dtype, unit): argument
128 def testVectorStrings(self, dtype, pos, unit): argument
151 def testMatrixStrings(self, dtype, unit): argument
201 def testElementWisePosLen(self, dtype, unit): argument
242 def testBroadcast(self, dtype, unit): argument
324 def testBadBroadcast(self, dtype, unit): argument
344 def testOutOfRangeError_Scalar(self, dtype, pos, unit): argument
368 def testOutOfRangeError_VectorScalar(self, dtype, pos, unit): argument
389 def testOutOfRangeError_MatrixMatrix(self, dtype, unit): argument
[all …]
/external/u-boot/drivers/ddr/marvell/a38x/
Dxor_regs.h16 #define MV_XOR_REGS_OFFSET(unit) (0x60900) argument
17 #define MV_XOR_REGS_BASE(unit) (MV_XOR_REGS_OFFSET(unit)) argument
20 #define XOR_CHANNEL_ARBITER_REG(unit) (MV_XOR_REGS_BASE(unit)) argument
21 #define XOR_CONFIG_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + \ argument
23 #define XOR_ACTIVATION_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + \ argument
27 #define XOR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x30)) argument
28 #define XOR_MASK_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x40)) argument
29 #define XOR_ERROR_CAUSE_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x50)) argument
30 #define XOR_ERROR_ADDR_REG(unit) (MV_XOR_REGS_BASE(unit)+(0x60)) argument
33 #define XOR_NEXT_DESC_PTR_REG(unit, chan) (MV_XOR_REGS_BASE(unit) + \ argument
[all …]
/external/opencensus-java/api/src/main/java/io/opencensus/metrics/
DMetricRegistry.java49 String name, String description, String unit, List<LabelKey> labelKeys); in addLongGauge()
66 String name, String description, String unit, List<LabelKey> labelKeys); in addDoubleGauge()
83 String name, String description, String unit, List<LabelKey> labelKeys); in addDerivedLongGauge()
100 String name, String description, String unit, List<LabelKey> labelKeys); in addDerivedDoubleGauge()
110 String name, String description, String unit, List<LabelKey> labelKeys) { in addLongGauge()
122 String name, String description, String unit, List<LabelKey> labelKeys) { in addDoubleGauge()
134 String name, String description, String unit, List<LabelKey> labelKeys) { in addDerivedLongGauge()
146 String name, String description, String unit, List<LabelKey> labelKeys) { in addDerivedDoubleGauge()
/external/icu/android_icu4j/src/main/java/android/icu/impl/duration/
DPeriod.java43 public static Period at(float count, TimeUnit unit) { in at()
55 public static Period moreThan(float count, TimeUnit unit) { in moreThan()
67 public static Period lessThan(float count, TimeUnit unit) { in lessThan()
83 public Period and(float count, TimeUnit unit) { in and()
94 public Period omit(TimeUnit unit) { in omit()
183 public boolean isSet(TimeUnit unit) { in isSet()
193 public float getCount(TimeUnit unit) { in getCount()
297 private Period(int limit, boolean future, float count, TimeUnit unit) { in Period()
316 private Period setTimeUnitValue(TimeUnit unit, float value) { in setTimeUnitValue()
331 private Period setTimeUnitInternalValue(TimeUnit unit, int value) { in setTimeUnitInternalValue()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/
DPeriod.java41 public static Period at(float count, TimeUnit unit) { in at()
53 public static Period moreThan(float count, TimeUnit unit) { in moreThan()
65 public static Period lessThan(float count, TimeUnit unit) { in lessThan()
81 public Period and(float count, TimeUnit unit) { in and()
92 public Period omit(TimeUnit unit) { in omit()
181 public boolean isSet(TimeUnit unit) { in isSet()
191 public float getCount(TimeUnit unit) { in getCount()
295 private Period(int limit, boolean future, float count, TimeUnit unit) { in Period()
314 private Period setTimeUnitValue(TimeUnit unit, float value) { in setTimeUnitValue()
329 private Period setTimeUnitInternalValue(TimeUnit unit, int value) { in setTimeUnitInternalValue()
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
DSameThreadScheduledExecutorService.java73 public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException { in awaitTermination()
106 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAll()
121 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAny()
135 public ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
143 final Callable<V> callable, long delay, TimeUnit unit) { in schedule()
159 public V get(long timeout, TimeUnit unit) in get()
166 public long getDelay(TimeUnit unit) { in getDelay()
180 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
186 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
DTestingExecutors.java122 public boolean awaitTermination(long timeout, TimeUnit unit) { in awaitTermination()
131 Callable<V> callable, long delay, TimeUnit unit) { in schedule()
136 public ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
142 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
148 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
160 public long getDelay(TimeUnit unit) { in getDelay()
/external/guava/android/guava-testlib/src/com/google/common/util/concurrent/testing/
DSameThreadScheduledExecutorService.java73 public boolean awaitTermination(long timeout, TimeUnit unit) throws InterruptedException { in awaitTermination()
106 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAll()
121 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAny()
135 public ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
143 final Callable<V> callable, long delay, TimeUnit unit) { in schedule()
159 public V get(long timeout, TimeUnit unit) in get()
166 public long getDelay(TimeUnit unit) { in getDelay()
180 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
186 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
DTestingExecutors.java122 public boolean awaitTermination(long timeout, TimeUnit unit) { in awaitTermination()
131 Callable<V> callable, long delay, TimeUnit unit) { in schedule()
136 public ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
142 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
148 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
160 public long getDelay(TimeUnit unit) { in getDelay()
/external/ltp/testcases/lib/
Dtst_sleep.c17 static struct unit { struct
18 const char *unit; member
20 } units[] = { argument
/external/guava/guava/src/com/google/common/collect/
DForwardingBlockingDeque.java74 public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerFirst()
79 public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerLast()
94 public E pollFirst(long timeout, TimeUnit unit) throws InterruptedException { in pollFirst()
99 public E pollLast(long timeout, TimeUnit unit) throws InterruptedException { in pollLast()
109 public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException { in offer()
119 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DForwardingBlockingDeque.java72 public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerFirst()
77 public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerLast()
92 public E pollFirst(long timeout, TimeUnit unit) throws InterruptedException { in pollFirst()
97 public E pollLast(long timeout, TimeUnit unit) throws InterruptedException { in pollLast()
107 public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException { in offer()
117 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
DListeningScheduledExecutorService.java37 ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit); in schedule()
41 <V> ListenableScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit); in schedule()
46 Runnable command, long initialDelay, long period, TimeUnit unit); in scheduleAtFixedRate()
51 Runnable command, long initialDelay, long delay, TimeUnit unit); in scheduleWithFixedDelay()
DUninterruptibles.java74 public static boolean awaitUninterruptibly(CountDownLatch latch, long timeout, TimeUnit unit) { in awaitUninterruptibly()
104 public static boolean awaitUninterruptibly(Condition condition, long timeout, TimeUnit unit) { in awaitUninterruptibly()
151 public static void joinUninterruptibly(Thread toJoin, long timeout, TimeUnit unit) { in joinUninterruptibly()
230 public static <V> V getUninterruptibly(Future<V> future, long timeout, TimeUnit unit) in getUninterruptibly()
303 public static void sleepUninterruptibly(long sleepFor, TimeUnit unit) { in sleepUninterruptibly()
334 Semaphore semaphore, long timeout, TimeUnit unit) { in tryAcquireUninterruptibly()
347 Semaphore semaphore, int permits, long timeout, TimeUnit unit) { in tryAcquireUninterruptibly()
DWrappingScheduledExecutorService.java44 public final ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
49 public final <V> ScheduledFuture<V> schedule(Callable<V> task, long delay, TimeUnit unit) { in schedule()
55 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
61 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
/external/guava/guava/src/com/google/common/util/concurrent/
DForwardingBlockingDeque.java72 public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerFirst()
77 public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerLast()
92 public E pollFirst(long timeout, TimeUnit unit) throws InterruptedException { in pollFirst()
97 public E pollLast(long timeout, TimeUnit unit) throws InterruptedException { in pollLast()
107 public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException { in offer()
117 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
DListeningScheduledExecutorService.java37 ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit); in schedule()
41 <V> ListenableScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit); in schedule()
46 Runnable command, long initialDelay, long period, TimeUnit unit); in scheduleAtFixedRate()
51 Runnable command, long initialDelay, long delay, TimeUnit unit); in scheduleWithFixedDelay()
DUninterruptibles.java74 public static boolean awaitUninterruptibly(CountDownLatch latch, long timeout, TimeUnit unit) { in awaitUninterruptibly()
104 public static boolean awaitUninterruptibly(Condition condition, long timeout, TimeUnit unit) { in awaitUninterruptibly()
151 public static void joinUninterruptibly(Thread toJoin, long timeout, TimeUnit unit) { in joinUninterruptibly()
230 public static <V> V getUninterruptibly(Future<V> future, long timeout, TimeUnit unit) in getUninterruptibly()
303 public static void sleepUninterruptibly(long sleepFor, TimeUnit unit) { in sleepUninterruptibly()
334 Semaphore semaphore, long timeout, TimeUnit unit) { in tryAcquireUninterruptibly()
347 Semaphore semaphore, int permits, long timeout, TimeUnit unit) { in tryAcquireUninterruptibly()
DWrappingScheduledExecutorService.java44 public final ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
49 public final <V> ScheduledFuture<V> schedule(Callable<V> task, long delay, TimeUnit unit) { in schedule()
55 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
61 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
/external/guava/android/guava/src/com/google/common/collect/
DForwardingBlockingDeque.java74 public boolean offerFirst(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerFirst()
79 public boolean offerLast(E e, long timeout, TimeUnit unit) throws InterruptedException { in offerLast()
94 public E pollFirst(long timeout, TimeUnit unit) throws InterruptedException { in pollFirst()
99 public E pollLast(long timeout, TimeUnit unit) throws InterruptedException { in pollLast()
109 public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException { in offer()
119 public E poll(long timeout, TimeUnit unit) throws InterruptedException { in poll()
/external/caliper/caliper/src/main/java/com/google/caliper/model/
DValue.java35 public static Value create(double value, String unit) { in create()
42 private String unit; field in Value
49 private Value(double value, String unit) { in Value()
54 public String unit() { in unit() method in Value
/external/arm-trusted-firmware/drivers/marvell/comphy/
Dphy-comphy-3700.h41 #define PHY_SHFT(unit) ((unit == PCIE) ? PCIEPHY_SHFT : USB3PHY_SHFT) argument
45 #define PWR_PLL_CTRL_ADDR(unit) (COMPHY_POWER_PLL_CTRL * PHY_SHFT(unit)) argument
70 #define KVCO_CAL_CTRL_ADDR(unit) (COMPHY_KVCO_CAL_CTRL * PHY_SHFT(unit)) argument
80 #define DIG_LB_EN_ADDR(unit) (COMPHY_LOOPBACK_REG0 * PHY_SHFT(unit)) argument
89 #define SYNC_PATTERN_REG_ADDR(unit) (COMPHY_SYNC_PATTERN_REG * \ argument
100 #define ISOLATION_CTRL_REG_ADDR(unit) (COMPHY_ISOLATION_CTRL_REG * \ argument
105 #define MISC_REG0_ADDR(unit) (COMPHY_MISC_REG0_ADDR * PHY_SHFT(unit)) argument
112 #define GEN2_SETTING_2_ADDR(unit) (COMPHY_REG_GEN2_SET_2 * PHY_SHFT(unit)) argument
120 #define GEN2_SETTING_3_ADDR(unit) (COMPHY_REG_GEN2_SET_3 * PHY_SHFT(unit)) argument
137 #define UNIT_CTRL_ADDR(unit) (COMPHY_REG_UNIT_CTRL_ADDR * \ argument
[all …]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DWrappingScheduledExecutorServiceTest.java121 void assertLastMethodCalled(String method, long delay, TimeUnit unit) { in assertLastMethodCalled()
127 void assertLastMethodCalled(String method, long initialDelay, long delay, TimeUnit unit) { in assertLastMethodCalled()
135 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
144 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
154 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
165 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
176 public boolean awaitTermination(long timeout, TimeUnit unit) { in awaitTermination()
188 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAll()
200 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAny()
/external/guava/android/guava-tests/test/com/google/common/util/concurrent/
DWrappingScheduledExecutorServiceTest.java121 void assertLastMethodCalled(String method, long delay, TimeUnit unit) { in assertLastMethodCalled()
127 void assertLastMethodCalled(String method, long initialDelay, long delay, TimeUnit unit) { in assertLastMethodCalled()
135 public ScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit) { in schedule()
144 public <V> ScheduledFuture<V> schedule(Callable<V> callable, long delay, TimeUnit unit) { in schedule()
154 Runnable command, long initialDelay, long period, TimeUnit unit) { in scheduleAtFixedRate()
165 Runnable command, long initialDelay, long delay, TimeUnit unit) { in scheduleWithFixedDelay()
176 public boolean awaitTermination(long timeout, TimeUnit unit) { in awaitTermination()
188 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAll()
200 public <T> T invokeAny(Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) in invokeAny()

12345678910>>...24