Searched refs:unit (Results 101 - 125 of 870) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/util/concurrent/
H A DUninterruptibles.java71 * await(timeout, unit)} uninterruptibly.
74 long timeout, TimeUnit unit) {
77 long remainingNanos = unit.toNanos(timeout);
146 * {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)}
154 Future<V> future, long timeout, TimeUnit unit)
158 long remainingNanos = unit.toNanos(timeout);
179 * {@code unit.}{@link TimeUnit#timedJoin(Thread, long)
183 long timeout, TimeUnit unit) {
187 long remainingNanos = unit.toNanos(timeout);
250 * Invokes {@code unit
73 awaitUninterruptibly(CountDownLatch latch, long timeout, TimeUnit unit) argument
153 getUninterruptibly( Future<V> future, long timeout, TimeUnit unit) argument
182 joinUninterruptibly(Thread toJoin, long timeout, TimeUnit unit) argument
253 sleepUninterruptibly(long sleepFor, TimeUnit unit) argument
[all...]
H A DMoreExecutors.java64 * @param timeUnit unit of time for the time parameter
95 * @param timeUnit unit of time for the time parameter
124 * @param timeUnit unit of time for the time parameter
297 public boolean awaitTermination(long timeout, TimeUnit unit) argument
299 long nanos = unit.toNanos(timeout);
413 public boolean awaitTermination(long timeout, TimeUnit unit) argument
415 return delegate.awaitTermination(timeout, unit);
455 Runnable command, long delay, TimeUnit unit) {
456 return delegate.schedule(command, delay, unit);
461 Callable<V> callable, long delay, TimeUnit unit) {
454 schedule( Runnable command, long delay, TimeUnit unit) argument
460 schedule( Callable<V> callable, long delay, TimeUnit unit) argument
466 scheduleAtFixedRate( Runnable command, long initialDelay, long period, TimeUnit unit) argument
472 scheduleWithFixedDelay( Runnable command, long initialDelay, long delay, TimeUnit unit) argument
[all...]
/external/icu/icu4c/source/i18n/unicode/
H A Dmeasure.h30 * An amount of a specified unit, consisting of a number and a Unit.
32 * unit, such as feet or meters.
45 * unit. After this call, the caller must not delete the given
46 * unit object.
48 * @param adoptedUnit the unit object, which must not be NULL
49 * @param ec input-output error code. If the amount or the unit
97 * Return a reference to the unit of this object.
142 * The unit of this object, e.g., "millimeter" or "JPY". This is
145 MeasureUnit* unit; member in class:Measure
153 return *unit;
[all...]
/external/ksoap2/
H A DAndroid.mk15 # additionally, build unit tests in a separate .apk
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DPing.java64 public long roundTripTime(long timeout, TimeUnit unit) throws InterruptedException { argument
65 if (latch.await(timeout, unit)) {
/external/scrypt/tests/
H A DAndroid.mk1 # Build the scrypt unit tests
/external/chromium_org/chrome/browser/extensions/
H A Ddisplay_info_provider_aura.cc27 extensions::core_api::system_display::DisplayUnitInfo* unit) {
25 UpdateDisplayUnitInfoForPlatform( const gfx::Display& display, extensions::core_api::system_display::DisplayUnitInfo* unit) argument
H A Ddisplay_info_provider_mac.cc27 extensions::core_api::system_display::DisplayUnitInfo* unit) {
25 UpdateDisplayUnitInfoForPlatform( const gfx::Display& display, extensions::core_api::system_display::DisplayUnitInfo* unit) argument
/external/chromium_org/extensions/shell/browser/
H A Dshell_display_info_provider.cc25 extensions::core_api::system_display::DisplayUnitInfo* unit) {
23 UpdateDisplayUnitInfoForPlatform( const gfx::Display& display, extensions::core_api::system_display::DisplayUnitInfo* unit) argument
/external/chromium_org/ppapi/thunk/
H A Dppb_scrollbar_api.h23 virtual void ScrollBy(PP_ScrollBy_Dev unit, int32_t multiplier) = 0;
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
H A Dnv40_verttex.c36 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);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di830_texstate.c117 i830_update_tex_unit(struct intel_context *intel, GLuint unit, GLuint ss3) argument
121 struct gl_texture_unit *tUnit = &ctx->Texture.Unit[unit];
125 struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
126 GLuint *state = i830->state.Tex[unit], format, pitch;
135 if (i830->state.tex_buffer[unit] != NULL) {
136 drm_intel_bo_unreference(i830->state.tex_buffer[unit]);
137 i830->state.tex_buffer[unit] = NULL;
140 if (!intel_finalize_mipmap_tree(intel, unit))
152 i830->state.tex_buffer[unit] = intelObj->mt->region->bo;
158 i830->state.tex_offset[unit]
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_tex.c262 GLuint unit = ctx->Texture.CurrentUnit; local
263 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
276 if ( rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] != envColor ) {
277 RADEON_STATECHANGE( rmesa, tex[unit] );
278 rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] = envColor;
302 if ( (rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] & RADEON_LOD_BIAS_MASK) != b ) {
303 RADEON_STATECHANGE( rmesa, tex[unit] );
304 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] &= ~RADEON_LOD_BIAS_MASK;
305 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] |= (b & RADEON_LOD_BIAS_MASK);
315 void radeonTexUpdateParameters(struct gl_context *ctx, GLuint unit) argument
398 GLuint unit = ctx->Texture.CurrentUnit; local
[all...]
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DInterruptionUtil.java75 static void requestInterruptIn(final long time, final TimeUnit unit) { argument
81 unit.sleep(time);
118 Thread thread, long timeout, TimeUnit unit) {
121 long remainingNanos = unit.toNanos(timeout);
117 joinUninterruptibly( Thread thread, long timeout, TimeUnit unit) argument
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv40_verttex.c36 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);
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di830_texstate.c117 i830_update_tex_unit(struct intel_context *intel, GLuint unit, GLuint ss3) argument
121 struct gl_texture_unit *tUnit = &ctx->Texture.Unit[unit];
125 struct gl_sampler_object *sampler = _mesa_get_samplerobj(ctx, unit);
126 GLuint *state = i830->state.Tex[unit], format, pitch;
135 if (i830->state.tex_buffer[unit] != NULL) {
136 drm_intel_bo_unreference(i830->state.tex_buffer[unit]);
137 i830->state.tex_buffer[unit] = NULL;
140 if (!intel_finalize_mipmap_tree(intel, unit))
152 i830->state.tex_buffer[unit] = intelObj->mt->region->bo;
158 i830->state.tex_offset[unit]
[all...]
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_tex.c262 GLuint unit = ctx->Texture.CurrentUnit; local
263 struct gl_texture_unit *texUnit = &ctx->Texture.Unit[unit];
276 if ( rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] != envColor ) {
277 RADEON_STATECHANGE( rmesa, tex[unit] );
278 rmesa->hw.tex[unit].cmd[TEX_PP_TFACTOR] = envColor;
302 if ( (rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] & RADEON_LOD_BIAS_MASK) != b ) {
303 RADEON_STATECHANGE( rmesa, tex[unit] );
304 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] &= ~RADEON_LOD_BIAS_MASK;
305 rmesa->hw.tex[unit].cmd[TEX_PP_TXFILTER] |= (b & RADEON_LOD_BIAS_MASK);
315 void radeonTexUpdateParameters(struct gl_context *ctx, GLuint unit) argument
398 GLuint unit = ctx->Texture.CurrentUnit; local
[all...]
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DExecutorService.java25 boolean awaitTermination(long timeout, TimeUnit unit) argument
38 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
45 Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit)
37 invokeAll( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
44 invokeAny( Collection<? extends Callable<T>> tasks, long timeout, TimeUnit unit) argument
/external/valgrind/main/massif/
H A Dms_print40 # Time unit used in profile.
285 my $unit = "i";
287 if ($nI_scaled >= 1000) { $unit = "ki"; $nI_scaled /= 1024; }
288 if ($nI_scaled >= 1000) { $unit = "Mi"; $nI_scaled /= 1024; }
289 if ($nI_scaled >= 1000) { $unit = "Gi"; $nI_scaled /= 1024; }
290 if ($nI_scaled >= 1000) { $unit = "Ti"; $nI_scaled /= 1024; }
291 if ($nI_scaled >= 1000) { $unit = "Pi"; $nI_scaled /= 1024; }
292 if ($nI_scaled >= 1000) { $unit = "Ei"; $nI_scaled /= 1024; }
293 if ($nI_scaled >= 1000) { $unit = "Zi"; $nI_scaled /= 1024; }
294 if ($nI_scaled >= 1000) { $unit
[all...]
H A Dms_print.in40 # Time unit used in profile.
285 my $unit = "i";
287 if ($nI_scaled >= 1000) { $unit = "ki"; $nI_scaled /= 1024; }
288 if ($nI_scaled >= 1000) { $unit = "Mi"; $nI_scaled /= 1024; }
289 if ($nI_scaled >= 1000) { $unit = "Gi"; $nI_scaled /= 1024; }
290 if ($nI_scaled >= 1000) { $unit = "Ti"; $nI_scaled /= 1024; }
291 if ($nI_scaled >= 1000) { $unit = "Pi"; $nI_scaled /= 1024; }
292 if ($nI_scaled >= 1000) { $unit = "Ei"; $nI_scaled /= 1024; }
293 if ($nI_scaled >= 1000) { $unit = "Zi"; $nI_scaled /= 1024; }
294 if ($nI_scaled >= 1000) { $unit
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQueryExp.cpp78 static bool positiveLengthUnit(const int unit) argument
80 switch (unit) {
98 if (!(positiveLengthUnit(value->unit) || (value->unit == CSSPrimitiveValue::CSS_NUMBER && value->fValue == 0)) || value->fValue < 0)
118 if ((value->unit != CSSPrimitiveValue::CSS_DPPX && value->unit != CSSPrimitiveValue::CSS_DPI && value->unit != CSSPrimitiveValue::CSS_DPCM) || value->fValue <= 0)
144 if (value->unit != CSSPrimitiveValue::CSS_NUMBER || value->fValue < 0)
241 expValue.unit = CSSPrimitiveValue::CSS_VALUE_ID;
248 expValue.unit
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfast-dtoa.cc57 // * distance_too_high_w == (too_high - w).f() * unit
58 // * unsafe_interval == (too_high - too_low).f() * unit
59 // * rest = (too_high - buffer * 10^kappa).f() * unit
60 // * ten_kappa = 10^kappa * unit
61 // * unit = the common multiplier
71 uint64_t unit) {
72 uint64_t small_distance = distance_too_high_w - unit;
73 uint64_t big_distance = distance_too_high_w + unit;
78 // The real w (* unit) must lie somewhere inside the interval
85 // ^v 1 unit
65 RoundWeed(Vector<char> buffer, int length, uint64_t distance_too_high_w, uint64_t unsafe_interval, uint64_t rest, uint64_t ten_kappa, uint64_t unit) argument
185 RoundWeedCounted(Vector<char> buffer, int length, uint64_t rest, uint64_t ten_kappa, uint64_t unit, int* kappa) argument
[all...]
/external/chromium_org/v8/src/
H A Dfast-dtoa.cc35 // * distance_too_high_w == (too_high - w).f() * unit
36 // * unsafe_interval == (too_high - too_low).f() * unit
37 // * rest = (too_high - buffer * 10^kappa).f() * unit
38 // * ten_kappa = 10^kappa * unit
39 // * unit = the common multiplier
49 uint64_t unit) {
50 uint64_t small_distance = distance_too_high_w - unit;
51 uint64_t big_distance = distance_too_high_w + unit;
56 // The real w (* unit) must lie somewhere inside the interval
63 // ^v 1 unit
43 RoundWeed(Vector<char> buffer, int length, uint64_t distance_too_high_w, uint64_t unsafe_interval, uint64_t rest, uint64_t ten_kappa, uint64_t unit) argument
163 RoundWeedCounted(Vector<char> buffer, int length, uint64_t rest, uint64_t ten_kappa, uint64_t unit, int* kappa) argument
382 uint64_t unit = 1; local
[all...]
/external/guava/guava/src/com/google/common/base/
H A DStopwatch.java150 * in the desired time unit, with any fraction rounded down.
180 * appropriate unit and using the specified number of significant figures.
188 TimeUnit unit = chooseUnit(nanos);
189 double value = (double) nanos / NANOSECONDS.convert(1, unit);
193 value, abbreviate(unit));
209 private static String abbreviate(TimeUnit unit) { argument
210 switch (unit) {
/external/ppp/pppd/
H A Dlcp.c336 lcp_init(unit)
337 int unit;
339 fsm *f = &lcp_fsm[unit];
340 lcp_options *wo = &lcp_wantoptions[unit];
341 lcp_options *ao = &lcp_allowoptions[unit];
343 f->unit = unit;
376 lcp_open(unit)
377 int unit;
379 fsm *f = &lcp_fsm[unit];
[all...]

Completed in 4797 milliseconds

1234567891011>>